CMS 3D CMS Logo

/data/doxygen/doxygen-1.7.3/gen/CMSSW_4_2_8/src/RecoLocalMuon/DTRecHit/python/DTLinearDriftAlgo_cfi.py

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