CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_9_patch3/src/RecoLocalMuon/DTRecHit/python/DTParametrizedDriftAlgo_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 # The reconstruction algo and its parameter set
00004 DTParametrizedDriftAlgo = cms.PSet(
00005     recAlgoConfig = cms.PSet(
00006         # The module to be used for ttrig synchronization and its parameter set
00007         tTrigMode = cms.string('DTTTrigSyncFromDB'),
00008         minTime = cms.double(-3.0),
00009         interpolate = cms.bool(True),
00010         debug = cms.untracked.bool(False),
00011         tTrigModeConfig = cms.PSet(
00012             # The velocity of signal propagation along the wire (cm/ns)
00013             vPropWire = cms.double(24.4),
00014             # Switch on/off the TOF correction for particles
00015             doTOFCorrection = cms.bool(True),
00016             tofCorrType = cms.int32(0),
00017             wirePropCorrType = cms.int32(0),
00018             # Switch on/off the correction for the signal propagation along the wire
00019             doWirePropCorrection = cms.bool(True),
00020             # Switch on/off the TOF correction from pulses
00021             doT0Correction = cms.bool(True),
00022             debug = cms.untracked.bool(False),
00023             tTrigLabel = cms.string('')
00024         ),
00025         maxTime = cms.double(415.0)
00026     ),
00027     recAlgo = cms.string('DTParametrizedDriftAlgo')
00028 )
00029