Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003
00004 AlCaRecoTriggerBitsRcdUpdate = cms.EDAnalyzer(
00005 "AlCaRecoTriggerBitsRcdUpdate",
00006
00007 firstRunIOV = cms.uint32(1),
00008 lastRunIOV = cms.int32(-1),
00009
00010
00011 startEmpty = cms.bool(True),
00012
00013
00014 listNamesRemove = cms.vstring(),
00015
00016
00017
00018 triggerListsAdd = cms.VPSet(
00019 cms.PSet(listName = cms.string('TkAlZMuMu'),
00020 hltPaths = cms.vstring('path_2')
00021 ),
00022 cms.PSet(listName = cms.string('TkAlMinBias'),
00023 hltPaths = cms.vstring('path_1', 'path_3')
00024 )
00025 )
00026
00027 )