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 = ["AlCa_LumiPixelsCounts_Random_v*"],
6  eventSetupPathsKey='AlCaPCCRandom',
7  TriggerResultsTag = ("TriggerResults","","HLT"),
8  andOr = True, # choose logical OR between Triggerbits
9  throw = 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)