1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
import FWCore.ParameterSet.Config as cms
import HLTrigger.HLTfilters.hltHighLevel_cfi
ALCARECOZeroBiasFromRECOHLT = HLTrigger.HLTfilters.hltHighLevel_cfi.hltHighLevel.clone(
HLTPaths = cms.vstring("*ZeroBias*"),
eventSetupPathsKey='',
TriggerResultsTag = cms.InputTag("TriggerResults","","HLT"),
andOr = cms.bool(True), # choose logical OR between Triggerbits
throw = cms.bool(False) # tolerate triggers stated above, but not available
)
from Calibration.LumiAlCaRecoProducers.alcaPCCProducer_cfi import alcaPCCProducer
alcaPCCProducerZBFromRECO = alcaPCCProducer.clone()
alcaPCCProducerZBFromRECO.pixelClusterLabel = cms.InputTag("siPixelClusters")
alcaPCCProducerZBFromRECO.trigstring = cms.untracked.string("alcaPCCZeroBiasFromRECO")
# Sequence #
seqALCARECOAlCaPCCZeroBiasFromRECO = cms.Sequence(ALCARECOZeroBiasFromRECOHLT + alcaPCCProducerZBFromRECO)
|