Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:00:24

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def RPCAMCRawToDigi(**kwargs):
0004   mod = cms.EDProducer('RPCAMCRawToDigi',
0005     inputTag = cms.InputTag('rawDataCollector'),
0006     calculateCRC = cms.bool(True),
0007     fillCounters = cms.bool(True),
0008     RPCAMCUnpacker = cms.string('RPCAMCUnpacker'),
0009     RPCAMCUnpackerSettings = cms.PSet(
0010       fillAMCCounters = cms.bool(True),
0011       bxMin = cms.int32(-2),
0012       bxMax = cms.int32(2),
0013       cppfDaqDelay = cms.int32(0)
0014     ),
0015     mightGet = cms.optional.untracked.vstring
0016   )
0017   for k,v in kwargs.items():
0018     setattr(mod, k, v)
0019   return mod