Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Backport in 74X : Update muon HLT DQM for new muon isolation #11409

Merged
merged 3 commits into from Oct 9, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
14 changes: 10 additions & 4 deletions DQMOffline/Trigger/python/HLTMuonOfflineAnalyzer_cfi.py
Expand Up @@ -30,10 +30,16 @@
"HLT_IsoTkMu27_v",
"HLT_Mu27_v",
"HLT_TkMu27_v",
"HLT_IsoMu20_v1",
"HLT_Mu20_v1",
"HLT_IsoTkMu20_v1",
"HLT_TkMu20_v1",
"HLT_IsoMu20_v",
"HLT_Mu20_v",
"HLT_TkMu20_v",
"HLT_IsoTkMu20_v",
"HLT_IsoMu22_v",
"HLT_IsoTkMu22_v",
"HLT_IsoMu18_v",
"HLT_IsoTkMu18_v",
"HLT_OldIsoMu18_v",
"HLT_OldIsoTkMu18_v",
"HLT_L1SingleMu16_v",
"HLT_L2Mu10_v",
"HLT_HIL1DoubleMu0", #for pp low pile up
Expand Down
2 changes: 1 addition & 1 deletion HLTriggerOffline/Muon/python/hltMuonValidator_cfi.py
Expand Up @@ -4,7 +4,7 @@

hltProcessName = cms.string("HLT"),
hltPathsToCheck = cms.vstring(
"HLT_(L[12])?(Double)?(Iso)?(Tk)?Mu[0-9]*(Open)?(_NoVertex)?(_eta2p1)?(_IterTrk02)?(_v[0-9]*)?$",
"HLT_(L[12])?(OldIso)?(Iso)?(Tk)?Mu[0-9]*(Open)?(_NoVertex)?(_eta2p1)?(_v[0-9]*)?$",
"HLT_Mu17_NoFilters?(_v[0-9]*)?$",
"HLT_Dimuon0_Jpsi_v10",
"HLT_Dimuon13_Jpsi_Barrel_v5",
Expand Down
4 changes: 2 additions & 2 deletions HLTriggerOffline/Muon/src/HLTMuonValidator.cc
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