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 HO:
0005 #------------------------------------------------
0006 from Calibration.HcalAlCaRecoProducers.alcahomuon_cfi import *
0007 import HLTrigger.HLTfilters.hltHighLevel_cfi
0008 
0009 #
0010 #here we specify triggers for two different menues
0011 #this is possible since throw=False
0012 #
0013 
0014 ALCARECOHcalCalHOHLT = HLTrigger.HLTfilters.hltHighLevel_cfi.hltHighLevel.clone(
0015 #   HLTPaths = ['HLT_IsoMu3',   #for 8E29
0016 #               'HLT_IsoMu9'],  #for 1E30
0017    eventSetupPathsKey='HcalCalHO',
0018    throw = False #dont throw except on unknown path name
0019 ) 
0020 
0021 seqALCARECOHcalCalHO = cms.Sequence(ALCARECOHcalCalHOHLT*hoCalibProducer)
0022 
0023 
0024