Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:26:07

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 # The reconstruction algo and its parameter set
0004 DTParametrizedDriftAlgo = cms.PSet(
0005     recAlgoConfig = cms.PSet(
0006         # The module to be used for ttrig synchronization and its parameter set
0007         tTrigMode = cms.string('DTTTrigSyncFromDB'),
0008         minTime = cms.double(-3.0),
0009         interpolate = cms.bool(True),
0010         debug = cms.untracked.bool(False),
0011         tTrigModeConfig = cms.PSet(
0012             # The velocity of signal propagation along the wire (cm/ns)
0013             vPropWire = cms.double(24.4),
0014             # Switch on/off the TOF correction for particles
0015             doTOFCorrection = cms.bool(True),
0016             tofCorrType = cms.int32(0),
0017             wirePropCorrType = cms.int32(0),
0018             # Switch on/off the correction for the signal propagation along the wire
0019             doWirePropCorrection = cms.bool(True),
0020             # Switch on/off the TOF correction from pulses
0021             doT0Correction = cms.bool(True),
0022             debug = cms.untracked.bool(False),
0023             tTrigLabel = cms.string(''),
0024             t0Label = cms.string('')
0025         ),
0026         maxTime = cms.double(415.0)
0027     ),
0028     recAlgo = cms.string('DTParametrizedDriftAlgo')
0029 )
0030