CMS 3D CMS Logo

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(1),
00016             # The ttrig from the time box fit is defined as mean + kFactor * sigma
00017             kFactor = cms.double(-1.0),
00018             wirePropCorrType = cms.int32(1),
00019             # Switch on/off the correction for the signal propagation along the wire
00020             doWirePropCorrection = cms.bool(True),
00021             # Switch on/off the TOF correction from pulses
00022             doT0Correction = cms.bool(True),
00023             debug = cms.untracked.bool(False)
00024         ),
00025         maxTime = cms.double(420.0),
00026         # The module to be used for ttrig synchronization and its set parameter
00027         tTrigMode = cms.string('DTTTrigSyncFromDB')
00028     ),
00029     recAlgo = cms.string('DTLinearDriftFromDBAlgo')
00030 )
00031 

Generated on Tue Jun 9 17:43:53 2009 for CMSSW by  doxygen 1.5.4