CMS 3D CMS Logo

DTLinearDriftAlgo_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 DTLinearDriftAlgo = cms.PSet(
4  recAlgoConfig = cms.PSet(
5  # The module to be used for ttrig synchronization and its parameter set
6  tTrigMode = cms.string('DTTTrigSyncFromDB'),
7  # Times outside this window (ns) are considered
8  # as coming from previous BXs
9  minTime = cms.double(-3.0),
10  # Drift velocity (cm/ns)
11  driftVelocity = cms.double(0.00543),
12  # Cell resolution (cm)
13  hitResolution = cms.double(0.02),
14  debug = cms.untracked.bool(False),
15  tTrigModeConfig = cms.PSet(
16  # The velocity of signal propagation along the wire (cm/ns)
17  vPropWire = cms.double(24.4),
18  # Switch on/off the TOF correction for particles
19  doTOFCorrection = cms.bool(True),
20  tofCorrType = cms.int32(0),
21  wirePropCorrType = cms.int32(0),
22  # Switch on/off the correction for the signal propagation along the wire
23  doWirePropCorrection = cms.bool(True),
24  # Switch on/off the TOF correction from pulses
25  doT0Correction = cms.bool(True),
26  debug = cms.untracked.bool(False),
27  tTrigLabel = cms.string('')
28  ),
29  maxTime = cms.double(415.0)
30  ),
31  recAlgo = cms.string('DTLinearDriftAlgo')
32 )
33