File indexing completed on 2024-04-06 12:19:46
0001 import FWCore.ParameterSet.Config as cms
0002
0003
0004
0005
0006 CalibratedDigis = cms.EDProducer("CalibratedDigis",
0007 tTrigModeConfig = cms.PSet(
0008
0009 vPropWire = cms.double(24.4),
0010
0011 doTOFCorrection = cms.bool(True),
0012 tofCorrType = cms.int32(0),
0013 wirePropCorrType = cms.int32(0),
0014
0015 doWirePropCorrection = cms.bool(True),
0016
0017 doT0Correction = cms.bool(True),
0018 debug = cms.untracked.bool(False),
0019 tTrigLabel = cms.string(''),
0020 t0Label = cms.string('')
0021 ),
0022 tTrigMode = cms.string('DTTTrigSyncFromDB'),
0023 timeOffset = cms.int32(0),
0024 flat_calib = cms.int32(0),
0025 scenario = cms.int32(0),
0026 dtDigiTag = cms.InputTag("muonDTDigis")
0027 )
0028
0029
0030
0031