File indexing completed on 2024-04-06 12:15:57
0001 import FWCore.ParameterSet.Config as cms
0002
0003 DTLinearDriftFromDBAlgo = cms.PSet(
0004 recAlgo = cms.string('DTLinearDriftFromDBAlgo'),
0005 recAlgoConfig = cms.PSet(
0006 debug = cms.untracked.bool(False),
0007 doVdriftCorr = cms.bool(True),
0008 maxTime = cms.double(420.0),
0009 minTime = cms.double(-3.0),
0010 stepTwoFromDigi = cms.bool(False),
0011 tTrigMode = cms.string('DTTTrigSyncFromDB'),
0012 tTrigModeConfig = cms.PSet(
0013 debug = cms.untracked.bool(False),
0014 doT0Correction = cms.bool(True),
0015 doTOFCorrection = cms.bool(True),
0016 doWirePropCorrection = cms.bool(True),
0017 tTrigLabel = cms.string(''),
0018 tofCorrType = cms.int32(0),
0019 vPropWire = cms.double(24.4),
0020 wirePropCorrType = cms.int32(0)
0021 ),
0022 useUncertDB = cms.bool(True)
0023 )
0024 )