CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
AlCaRecoTriggerBitsRcdUpdate_cfi.py
Go to the documentation of this file.
2 
3 # module updating/writing to DB
4 AlCaRecoTriggerBitsRcdUpdate = cms.EDAnalyzer(
5  "AlCaRecoTriggerBitsRcdUpdate",
6 
7  firstRunIOV = cms.uint32(1),
8  lastRunIOV = cms.int32(-1), # -1 means infinity (must be -1 if appending to existing tag)
9 
10  # Start with empty list, not looking into DB:
11  startEmpty = cms.bool(True),
12  # If (startEmpty==False) take AlCaRecoTriggerBitsRcd from EventSetup and remove the
13  # following keys entries:
14  listNamesRemove = cms.vstring(),
15 
16  # New triggerLists to add
17  # (for updating them first remove with 'listNamesRemove'):
18  triggerListsAdd = cms.VPSet(
19  cms.PSet(listName = cms.string('TkAlZMuMu'),
20  hltPaths = cms.vstring('path_2')
21  ),
22  cms.PSet(listName = cms.string('TkAlMinBias'),
23  hltPaths = cms.vstring('path_1', 'path_3')
24  )
25  )
26 
27  )