File indexing completed on 2024-04-06 12:11:03
0001 import FWCore.ParameterSet.Config as cms
0002
0003 FedChannelDigis = cms.EDProducer("SiStripRawToDigiModule",
0004 ProductLabel = cms.InputTag('rawDataCollector'),
0005 CreateDigis = cms.untracked.bool(True),
0006 AppendedBytes = cms.int32(0),
0007 UseDaqRegister = cms.bool(True),
0008 UseFedKey = cms.bool(True),
0009 UnpackBadChannels = cms.bool(False),
0010 MarkModulesOnMissingFeds = cms.bool(True),
0011 TriggerFedId = cms.int32(-1),
0012
0013
0014
0015 LegacyUnpacker = cms.bool(False),
0016 DoAPVEmulatorCheck = cms.bool(False),
0017 UnpackCommonModeValues = cms.bool(False),
0018 DoAllCorruptBufferChecks = cms.bool(False),
0019 ErrorThreshold = cms.uint32(7174)
0020 )
0021