Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-09-26 05:06:23

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def EcalTrigPrimProducer(*args, **kwargs):
0004   mod = cms.EDProducer('EcalTrigPrimProducer',
0005     BarrelOnly = cms.bool(False),
0006     TcpOutput = cms.bool(False),
0007     Debug = cms.bool(False),
0008     Famos = cms.bool(False),
0009     Label = cms.string('simEcalUnsuppressedDigis'),
0010     InstanceEB = cms.string(''),
0011     InstanceEE = cms.string(''),
0012     binOfMaximum = cms.int32(-1),
0013     TPinfoPrintout = cms.bool(False),
0014     mightGet = cms.optional.untracked.vstring
0015   )
0016   for a in args:
0017     mod.update_(a)
0018   mod.update_(kwargs)
0019   return mod