CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_4_5_patch3/src/RecoLocalMuon/DTRecHit/python/DTLinearDriftFromDBAlgo_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 #constant vdrift from DB (and ttrig from DB)
00005 DTLinearDriftFromDBAlgo = cms.PSet(
00006     recAlgoConfig = cms.PSet(
00007         # Times outside this window (ns) are considered as coming from previous BXs
00008         minTime = cms.double(-3.0),
00009         debug = cms.untracked.bool(False),
00010         tTrigModeConfig = cms.PSet(
00011             # The velocity of signal propagation along the wire (cm/ns)
00012             vPropWire = cms.double(24.4),
00013             # Switch on/off the TOF correction for particles
00014             doTOFCorrection = cms.bool(True),
00015             tofCorrType = cms.int32(0),
00016             wirePropCorrType = cms.int32(0),
00017             # Switch on/off the correction for the signal propagation along the wire
00018             doWirePropCorrection = cms.bool(True),
00019             # Switch on/off the TOF correction from pulses
00020             doT0Correction = cms.bool(True),
00021             debug = cms.untracked.bool(False),
00022             tTrigLabel = cms.string('')
00023         ),
00024         maxTime = cms.double(420.0),
00025         # Forcing Step 2 to go back to digi time 
00026         stepTwoFromDigi = cms.bool(False),
00027         # The module to be used for ttrig synchronization and its set parameter
00028         tTrigMode = cms.string('DTTTrigSyncFromDB'),
00029         # perform a correction to vdrift in MB1s of external wheels
00030         doVdriftCorr = cms.bool(True)
00031     ),
00032     recAlgo = cms.string('DTLinearDriftFromDBAlgo')
00033 )
00034