1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
import FWCore.ParameterSet.Config as cms
FedChannelDigis = cms.EDProducer("SiStripRawToDigiModule",
ProductLabel = cms.InputTag('rawDataCollector'),
CreateDigis = cms.untracked.bool(True),
AppendedBytes = cms.int32(0),
UseDaqRegister = cms.bool(True),
UseFedKey = cms.bool(True),
UnpackBadChannels = cms.bool(False),
MarkModulesOnMissingFeds = cms.bool(True),
TriggerFedId = cms.int32(-1),
#FedEventDumpFreq = cms.untracked.int32(0),
#FedBufferDumpFreq = cms.untracked.int32(0),
#Quiet = cms.untracked.bool(False),
LegacyUnpacker = cms.bool(False),
DoAPVEmulatorCheck = cms.bool(False),
UnpackCommonModeValues = cms.bool(False),
DoAllCorruptBufferChecks = cms.bool(False),
ErrorThreshold = cms.uint32(7174)
)
|