File indexing completed on 2024-04-06 12:26:07
0001 import FWCore.ParameterSet.Config as cms
0002
0003
0004 DTParametrizedDriftAlgo = cms.PSet(
0005 recAlgoConfig = cms.PSet(
0006
0007 tTrigMode = cms.string('DTTTrigSyncFromDB'),
0008 minTime = cms.double(-3.0),
0009 interpolate = cms.bool(True),
0010 debug = cms.untracked.bool(False),
0011 tTrigModeConfig = cms.PSet(
0012
0013 vPropWire = cms.double(24.4),
0014
0015 doTOFCorrection = cms.bool(True),
0016 tofCorrType = cms.int32(0),
0017 wirePropCorrType = cms.int32(0),
0018
0019 doWirePropCorrection = cms.bool(True),
0020
0021 doT0Correction = cms.bool(True),
0022 debug = cms.untracked.bool(False),
0023 tTrigLabel = cms.string(''),
0024 t0Label = cms.string('')
0025 ),
0026 maxTime = cms.double(415.0)
0027 ),
0028 recAlgo = cms.string('DTParametrizedDriftAlgo')
0029 )
0030