00001 import FWCore.ParameterSet.Config as cms
00002
00003
00004
00005 DTLinearDriftFromDBAlgo = cms.PSet(
00006 recAlgoConfig = cms.PSet(
00007
00008 minTime = cms.double(-3.0),
00009 debug = cms.untracked.bool(False),
00010 tTrigModeConfig = cms.PSet(
00011
00012 vPropWire = cms.double(24.4),
00013
00014 doTOFCorrection = cms.bool(True),
00015 tofCorrType = cms.int32(1),
00016
00017 kFactor = cms.double(-1.0),
00018 wirePropCorrType = cms.int32(1),
00019
00020 doWirePropCorrection = cms.bool(True),
00021
00022 doT0Correction = cms.bool(True),
00023 debug = cms.untracked.bool(False)
00024 ),
00025 maxTime = cms.double(420.0),
00026
00027 tTrigMode = cms.string('DTTTrigSyncFromDB')
00028 ),
00029 recAlgo = cms.string('DTLinearDriftFromDBAlgo')
00030 )
00031