Skip to content

Commit

Permalink
Merge pull request #36560 from slehti/HLTTauDQM_UpdateDec2021
Browse files Browse the repository at this point in the history
HLTTauDQM: ignoring modules starting with '-' (modules inside cms.ign…
  • Loading branch information
cmsbuild committed Dec 24, 2021
2 parents 05bf287 + 9f15019 commit 748afa3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions DQMOffline/Trigger/src/HLTTauDQMPath.cc
Expand Up @@ -54,6 +54,8 @@ namespace {
continue;
if (type == "HLTTriggerTypeFilter" || type == "HLTBool")
continue;
if (iLabel->find('-') == 0) // ignore
continue;
if (type == "HLT2PhotonPFTau" || type == "HLT2ElectronPFTau" || type == "HLT2MuonPFTau" ||
type == "HLT2PhotonTau" || type == "HLT2ElectronTau" || type == "HLT2MuonTau")
leptonTauFilters.emplace_back(*iLabel);
Expand Down

0 comments on commit 748afa3

Please sign in to comment.