Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-02-20 03:45:02

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def AlCaRecoTriggerBitsRcdUpdate(*args, **kwargs):
0004   mod = cms.EDAnalyzer('AlCaRecoTriggerBitsRcdUpdate',
0005     firstRunIOV = cms.uint32(1),
0006     lastRunIOV = cms.int32(-1),
0007     startEmpty = cms.bool(True),
0008     listNamesRemove = cms.vstring(),
0009     triggerListsAdd = cms.VPSet(
0010       template = cms.PSetTemplate(
0011         listName = cms.required.string,
0012         hltPaths = cms.required.vstring
0013       )
0014     ),
0015     alcarecoToReplace = cms.VPSet(
0016       template = cms.PSetTemplate(
0017         oldKey = cms.required.string,
0018         newKey = cms.required.string
0019       )
0020     ),
0021     pathsToAdd = cms.VPSet(
0022       template = cms.PSetTemplate(
0023         listName = cms.required.string,
0024         hltPaths = cms.required.vstring
0025       )
0026     ),
0027     pathsToRemove = cms.VPSet(
0028       template = cms.PSetTemplate(
0029         listName = cms.required.string,
0030         hltPaths = cms.required.vstring
0031       )
0032     ),
0033     mightGet = cms.optional.untracked.vstring
0034   )
0035   for a in args:
0036     mod.update_(a)
0037   mod.update_(kwargs)
0038   return mod