Skip to content

Commit

Permalink
update the list of path monitored by the offline DQM + add the first …
Browse files Browse the repository at this point in the history
…L1 filter in the filter parsing
  • Loading branch information
Hugues committed May 15, 2015
1 parent 2d4e808 commit f5f0d1f
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 11 deletions.
23 changes: 13 additions & 10 deletions DQMOffline/Trigger/python/HLTMuonOfflineAnalyzer_cfi.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,29 +10,32 @@

## HLT paths passing any one of these regular expressions will be included
hltPathsToCheck = cms.vstring(
"HLT_Mu40_v",
"HLT_IsoMu24_IterTrk02_v",
"HLT_IsoTkMu24_IterTrk02_v",
"HLT_Mu45_eta2p1_v1",
"HLT_Mu50_v",
"HLT_IsoMu24_v",
"HLT_IsoTkMu24_v",
"HLT_Mu17_Mu8_DZ_v",
"HLT_Mu17_TkMu8_DZ_v",
"HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_v",
"HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_v",
"HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ_v",
"HLT_Mu17_TrkIsoVVL_TkMu8_TrkIsoVVL_DZ_v",
"HLT_IsoMu20_eta2p1_IterTrk02_v",
"HLT_IsoTkMu20_eta2p1_IterTrk02_v",
"HLT_IsoMu24_eta2p1_IterTrk02_v",
"HLT_IsoTkMu24_eta2p1_IterTrk02_v"
"HLT_IsoMu20_eta2p1_v",
"HLT_IsoTkMu20_eta2p1_v",
"HLT_IsoMu24_eta2p1_v",
"HLT_IsoTkMu24_eta2p1_v",
"HLT_Mu24_eta2p1_v",
"HLT_TkMu24_eta2p1_v",
"HLT_IsoMu27_IterTrk02_v",
"HLT_IsoTkMu27_IterTrk02_v",
"HLT_TkMu24_v",
"HLT_IsoMu27_v",
"HLT_IsoTkMu27_v",
"HLT_Mu27_v",
"HLT_TkMu27_v",
"HLT_IsoMu20_v1",
"HLT_Mu20_v1",
"HLT_IsoTkMu20_v1",
"HLT_TkMu20_v1",
"HLT_L1SingleMu16_v",
"HLT_L2Mu10_v",
"HLT_HIL1DoubleMuOpen", #for HI
"HLT_HIL2Mu3", #for HI
"HLT_HIL2Mu7", #for HI
Expand Down
2 changes: 1 addition & 1 deletion DQMOffline/Trigger/src/HLTMuonOfflineAnalyzer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ HLTMuonOfflineAnalyzer::moduleLabels(string path)
vector<string>::iterator iter = modules.begin();

while (iter != modules.end())
if (iter->find("Filtered") == string::npos)
if ((iter->find("Filtered") == string::npos)&&(iter->find("hltL1s") == string::npos))
iter = modules.erase(iter);
else
++iter;
Expand Down

0 comments on commit f5f0d1f

Please sign in to comment.