Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-02-07 14:23:53

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def HLTPrescaleRecorder(*args, **kwargs):
0004   mod = cms.EDProducer('HLTPrescaleRecorder',
0005     src = cms.int32(0),
0006     run = cms.bool(True),
0007     lumi = cms.bool(True),
0008     event = cms.bool(True),
0009     condDB = cms.bool(True),
0010     psetName = cms.string(''),
0011     hltInputTag = cms.InputTag(''),
0012     hltDBTag = cms.string(''),
0013     mightGet = cms.optional.untracked.vstring
0014   )
0015   for a in args:
0016     mod.update_(a)
0017   mod.update_(kwargs)
0018   return mod