Skip to content

Commit 6b52498

Browse files
authored
Merge pull request #46742 from mmusich/mm_dev_throttle_HeavyHIAlCa
Use `TriggerResultsFilterFromDB` instead of `HLTHighLevel`, in order to allow prescaled HLT paths in `EcalESAlign` and `HcalCalIterativePhiSym`
2 parents 056febc + 383f9c4 commit 6b52498

File tree

2 files changed

+11
-8
lines changed

2 files changed

+11
-8
lines changed

Calibration/EcalAlCaRecoProducers/python/ALCARECOEcalESAlign_cff.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
import FWCore.ParameterSet.Config as cms
22

3-
import HLTrigger.HLTfilters.hltHighLevel_cfi
4-
ALCARECOEcalESAlignHLT = HLTrigger.HLTfilters.hltHighLevel_cfi.hltHighLevel.clone(
5-
andOr = True, # choose logical OR between Triggerbits
3+
import HLTrigger.HLTfilters.triggerResultsFilterFromDB_cfi
4+
ALCARECOEcalESAlignHLT = HLTrigger.HLTfilters.triggerResultsFilterFromDB_cfi.triggerResultsFilterFromDB.clone(
65
eventSetupPathsKey = 'EcalESAlign',
6+
usePathStatus = False,
7+
hltResults = 'TriggerResults::HLT',
8+
l1tResults = '', # leaving empty (not interested in L1T results)
79
throw = False # tolerate triggers stated above, but not available
810
)
911

Calibration/HcalAlCaRecoProducers/python/ALCARECOHcalCalIterativePhiSym_cff.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,13 @@
66

77
from Calibration.HcalAlCaRecoProducers.alcaiterphisym_cfi import *
88

9-
10-
import HLTrigger.HLTfilters.hltHighLevel_cfi
11-
hcalphisymHLT = HLTrigger.HLTfilters.hltHighLevel_cfi.hltHighLevel.clone(
12-
# HLTPaths = ['HLT_HcalPhiSym'],
9+
import HLTrigger.HLTfilters.triggerResultsFilterFromDB_cfi
10+
hcalphisymHLT = HLTrigger.HLTfilters.triggerResultsFilterFromDB_cfi.triggerResultsFilterFromDB.clone(
1311
eventSetupPathsKey='HcalCalIterativePhiSym',
14-
throw = False #dont throw except on unknown path name
12+
usePathStatus = False,
13+
hltResults = 'TriggerResults::HLT',
14+
l1tResults = '', # leaving empty (not interested in L1T results)
15+
throw = False #dont throw except on unknown path name
1516
)
1617

1718
seqALCARECOHcalCalIterativePhiSym = cms.Sequence(hcalphisymHLT*IterativePhiSymProd)

0 commit comments

Comments
 (0)