File indexing completed on 2025-02-07 14:23:45
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def RPCAMCRawToDigi(*args, **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 a in args:
0018 mod.update_(a)
0019 mod.update_(kwargs)
0020 return mod