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