Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-12-02 23:44:15

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 #------------------------------------------------
0004 #AlCaReco filtering for HCAL Iterative Phi Symmetry:
0005 #------------------------------------------------
0006 
0007 from Calibration.HcalAlCaRecoProducers.alcaiterphisym_cfi import *
0008 
0009 import HLTrigger.HLTfilters.triggerResultsFilterFromDB_cfi
0010 hcalphisymHLT = HLTrigger.HLTfilters.triggerResultsFilterFromDB_cfi.triggerResultsFilterFromDB.clone(
0011     eventSetupPathsKey='HcalCalIterativePhiSym',
0012     usePathStatus = False,
0013     hltResults = 'TriggerResults::HLT',
0014     l1tResults = '', # leaving empty (not interested in L1T results)
0015     throw = False #dont throw except on unknown path name
0016 )
0017 
0018 seqALCARECOHcalCalIterativePhiSym = cms.Sequence(hcalphisymHLT*IterativePhiSymProd)
0019