Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 2 additions & 11 deletions Framework/Core/src/AnalysisTask.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -34,18 +34,9 @@ std::string type_to_task_name(std::string_view const& camelCase)
std::string_view pattern;
std::string_view replacement;
} abbreviations[] = {
{"-h-m-p-i-d", "-hmpid"},
{"-e-m-c-a-l", "-emcal"},
{"-e-m-c", "-emc"},
{"-i-t-s", "-its"},
{"-t-p-c", "-tpc"},
{"-q-c-d", "-qcd"},
{"-t-o-f", "-tof"},
{"-t-r-d", "-trd"},
{"-f-v0", "-fv0"},
{"-q-a", "-qa"},
{"-b-c", "-bc"},
{"-q-c", "-qc"}};
{"-e-m-c", "-emc"}
};

std::string consolidated;
consolidated.reserve(result.size());
Expand Down
Loading