CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_2_7_hltpatch2/src/CondTools/HLT/python/AlCaRecoTriggerBitsRcdUpdate_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 # module updating/writing to DB
00004 AlCaRecoTriggerBitsRcdUpdate = cms.EDAnalyzer(
00005     "AlCaRecoTriggerBitsRcdUpdate",
00006     
00007     firstRunIOV = cms.uint32(1),
00008     lastRunIOV = cms.int32(-1), # -1 means infinity (must be -1 if appending to existing tag)
00009 
00010     # Start with empty list, not looking into DB:
00011     startEmpty = cms.bool(True),
00012     # If (startEmpty==False) take AlCaRecoTriggerBitsRcd from EventSetup and remove the
00013     # following keys entries:
00014     listNamesRemove = cms.vstring(),
00015    
00016     # New triggerLists to add
00017     # (for updating them first remove with 'listNamesRemove'):
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     )