Skip to content

Commit

Permalink
replace EDProducer with from cfipy and drop type spec and duplicated …
Browse files Browse the repository at this point in the history
…parameters
  • Loading branch information
jeongeun authored Sep 26, 2021
1 parent cccb155 commit de3a42a
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 de3a42a

Please sign in to comment.