CMS 3D CMS Logo

ALCARECOAlCaPCCRandom_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
4 ALCARECORandomHLT = HLTrigger.HLTfilters.hltHighLevel_cfi.hltHighLevel.clone(
5  HLTPaths = cms.vstring("AlCa_LumiPixelsCounts_Random_v*"),
6  eventSetupPathsKey='',
7  TriggerResultsTag = cms.InputTag("TriggerResults","","HLT"),
8  andOr = cms.bool(True), # choose logical OR between Triggerbits
9  throw = cms.bool(False) # tolerate triggers stated above, but not available
10 )
11 
12 
13 from Calibration.LumiAlCaRecoProducers.alcaPCCIntegrator_cfi import alcaPCCIntegrator
14 alcaPCCIntegratorRandom = alcaPCCIntegrator.clone()
15 alcaPCCIntegratorRandom.AlcaPCCIntegratorParameters.ProdInst = "alcaPCCRandom"
16 
17 
18 # Sequence #
19 seqALCARECOAlCaPCCRandom = cms.Sequence(ALCARECORandomHLT+alcaPCCIntegratorRandom)