CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
DTParametrizedDriftAlgo_cfi.py
Go to the documentation of this file.
2 
3 # The reconstruction algo and its parameter set
4 DTParametrizedDriftAlgo = cms.PSet(
5  recAlgoConfig = cms.PSet(
6  # The module to be used for ttrig synchronization and its parameter set
7  tTrigMode = cms.string('DTTTrigSyncFromDB'),
8  minTime = cms.double(-3.0),
9  interpolate = cms.bool(True),
10  debug = cms.untracked.bool(False),
11  tTrigModeConfig = cms.PSet(
12  # The velocity of signal propagation along the wire (cm/ns)
13  vPropWire = cms.double(24.4),
14  # Switch on/off the TOF correction for particles
15  doTOFCorrection = cms.bool(True),
16  tofCorrType = cms.int32(0),
17  wirePropCorrType = cms.int32(0),
18  # Switch on/off the correction for the signal propagation along the wire
19  doWirePropCorrection = cms.bool(True),
20  # Switch on/off the TOF correction from pulses
21  doT0Correction = cms.bool(True),
22  debug = cms.untracked.bool(False),
23  tTrigLabel = cms.string('')
24  ),
25  maxTime = cms.double(415.0)
26  ),
27  recAlgo = cms.string('DTParametrizedDriftAlgo')
28 )
29