File indexing completed on 2023-03-17 10:43:49
0001 import FWCore.ParameterSet.Config as cms
0002
0003 import HLTrigger.HLTfilters.hltHighLevel_cfi
0004 ALCARECORandomFromRECOHLT = HLTrigger.HLTfilters.hltHighLevel_cfi.hltHighLevel.clone(
0005 HLTPaths = cms.vstring("*Random*"),
0006 eventSetupPathsKey='',
0007 TriggerResultsTag = cms.InputTag("TriggerResults","","HLT"),
0008 andOr = cms.bool(True),
0009 throw = cms.bool(False)
0010 )
0011
0012 from Calibration.LumiAlCaRecoProducers.alcaPCCProducer_cfi import alcaPCCProducer
0013 alcaPCCProducerRandomFromRECO = alcaPCCProducer.clone()
0014 alcaPCCProducerRandomFromRECO.pixelClusterLabel = cms.InputTag("siPixelClusters")
0015 alcaPCCProducerRandomFromRECO.trigstring = cms.untracked.string("alcaPCCRandomFromRECO")
0016
0017
0018
0019 seqALCARECOAlCaPCCRandomFromRECO = cms.Sequence(ALCARECORandomFromRECOHLT + alcaPCCProducerRandomFromRECO)