Skip to content

Commit

Permalink
Merge pull request #35419 from jeongeun/patch-6
Browse files Browse the repository at this point in the history
Migrate module config in EventFilter{RPCRawToDigi} to use default cfipython
  • Loading branch information
cmsbuild committed Oct 2, 2021
2 parents 1c8c462 + de3a42a commit d169d37
Showing 1 changed file with 4 additions and 10 deletions.
14 changes: 4 additions & 10 deletions EventFilter/RPCRawToDigi/python/RPCCPPFRawToDigi_cfi.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,7 @@
import FWCore.ParameterSet.Config as cms
import EventFilter.RPCRawToDigi.RPCAMCRawToDigi_cfi as _mod

rpcCPPFRawToDigi = cms.EDProducer('RPCAMCRawToDigi',
inputTag = cms.InputTag('rawDataCollector'),
calculateCRC = cms.bool(True),
fillCounters = cms.bool(True),
RPCAMCUnpacker = cms.string('RPCCPPFUnpacker'),
RPCAMCUnpackerSettings = cms.PSet(
fillAMCCounters = cms.bool(True),
bxMin = cms.int32(-2),
bxMax = cms.int32(2)
)
rpcCPPFRawToDigi = _mod.RPCAMCRawToDigi.clone(
RPCAMCUnpacker = 'RPCCPPFUnpacker',
RPCAMCUnpackerSettings = dict()
)

0 comments on commit d169d37

Please sign in to comment.