CMS 3D CMS Logo

AlCaRecoTriggerBitsRcdUpdate_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
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  alcarecoToReplace = cms.VPSet(
28  cms.PSet(oldKey = cms.string('TkAlZMuMu'),
29  newKey = cms.string('testKey1')
30  ),
31  cms.PSet(oldKey = cms.string('TkAlMinBias'),
32  newKey = cms.string('testKey2')
33  )
34  )
35  )