Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-08-27 22:59:33

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def EcalTrigPrimProducer(**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 k,v in kwargs.items():
0017     setattr(mod, k, v)
0018   return mod