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 DTLinearDriftAlgo = cms.PSet(
0004     recAlgoConfig = cms.PSet(
0005         # The module to be used for ttrig synchronization and its parameter set
0006         tTrigMode = cms.string('DTTTrigSyncFromDB'),
0007         # Times outside this window (ns) are considered 
0008         # as coming from previous BXs
0009         minTime = cms.double(-3.0),
0010         # Drift velocity (cm/ns)                
0011         driftVelocity = cms.double(0.00543),
0012         # Cell resolution (cm)
0013         hitResolution = cms.double(0.02),
0014         debug = cms.untracked.bool(False),
0015         tTrigModeConfig = cms.PSet(
0016             # The velocity of signal propagation along the wire (cm/ns)
0017             vPropWire = cms.double(24.4),
0018             # Switch on/off the TOF correction for particles
0019             doTOFCorrection = cms.bool(True),
0020             tofCorrType = cms.int32(0),
0021             wirePropCorrType = cms.int32(0),
0022             # Switch on/off the correction for the signal propagation along the wire
0023             doWirePropCorrection = cms.bool(True),
0024             # Switch on/off the TOF correction from pulses
0025             doT0Correction = cms.bool(True),
0026             debug = cms.untracked.bool(False),
0027             tTrigLabel = cms.string(''),
0028             t0Label = cms.string('')
0029         ),
0030         maxTime = cms.double(415.0)
0031     ),
0032     recAlgo = cms.string('DTLinearDriftAlgo')
0033 )
0034