Skip to content

Commit

Permalink
update the muon Relval DQM to handle the old isolation filters
Browse files Browse the repository at this point in the history
  • Loading branch information
Hugues committed Sep 21, 2015
1 parent f9a769a commit d349134
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions HLTriggerOffline/Muon/src/HLTMuonValidator.cc
Original file line number Diff line number Diff line change
Expand Up @@ -131,13 +131,13 @@ HLTMuonValidator::stepLabels(const vector<string>& modules) {
else
steps.push_back("L2Iso");
}
else if ((modules[i].find("pfecalIsoRhoFiltered") != string::npos)) {
else if ((modules[i].find("pfecalIsoRhoFiltered") != string::npos)||(modules[i].find("pfecalOldIsoRhoFiltered") != string::npos)) {
if (modules[i].find("L3") != string::npos)
steps.push_back("L3EcalIso");
else if (modules[i].find("TkFiltered") != string::npos)
steps.push_back("TkEcalIso");
}
else if ((modules[i].find("pfhcalIsoRhoFiltered") != string::npos)) {
else if ((modules[i].find("pfhcalIsoRhoFiltered") != string::npos)||(modules[i].find("pfhcalOldIsoRhoFiltered") != string::npos)) {
if (modules[i].find("L3") != string::npos)
steps.push_back("L3HcalIso");
else if (modules[i].find("TkFiltered") != string::npos)
Expand Down

0 comments on commit d349134

Please sign in to comment.