Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:58:46

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 
0010 import HLTrigger.HLTfilters.hltHighLevel_cfi
0011 hcalphisymHLT =  HLTrigger.HLTfilters.hltHighLevel_cfi.hltHighLevel.clone(
0012 #    HLTPaths = ['HLT_HcalPhiSym'],
0013     eventSetupPathsKey='HcalCalIterativePhiSym',
0014     throw = False #dont throw except on unknown path name 
0015 )
0016 
0017 seqALCARECOHcalCalIterativePhiSym = cms.Sequence(hcalphisymHLT*IterativePhiSymProd)
0018