Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-02-07 14:24:00

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def GlobalVariablesTableProducer(*args, **kwargs):
0004   mod = cms.EDProducer('GlobalVariablesTableProducer',
0005     name = cms.string(''),
0006     extension = cms.bool(False),
0007     variables = cms.PSet(
0008       allowAnyLabel_ = cms.required.PSetTemplate(
0009         type = cms.string('int'),
0010         src = cms.required.InputTag,
0011         doc = cms.required.string,
0012         precision = cms.int32(-1)
0013       )
0014     ),
0015     mightGet = cms.optional.untracked.vstring
0016   )
0017   for a in args:
0018     mod.update_(a)
0019   mod.update_(kwargs)
0020   return mod