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 DTNoDriftAlgo_CosmicData = cms.PSet(
0005     recAlgoConfig = cms.PSet(
0006         # DUMMY
0007         #
0008         # Fixed Drift distance (cm)                
0009         fixedDrift = cms.double(1.0),
0010         #
0011         # DUMMY
0012         # Dummy ttrig parameters required by DTRecHitBaseAlgo.cc
0013         tTrigMode = cms.string('DTTTrigSyncFromDB'),
0014         # Times outside this window (ns) are considered as coming from previous BXs
0015         minTime = cms.double(1000.0),
0016         # Cell resolution (cm)
0017         hitResolution = cms.double(1.0),
0018         debug = cms.untracked.bool(False),
0019         tTrigModeConfig = cms.PSet(
0020             # The velocity of signal propagation along the wire (cm/ns)
0021             vPropWire = cms.double(24.4),
0022             # Switch on/off the TOF correction for particles
0023             doTOFCorrection = cms.bool(False),
0024             tofCorrType = cms.int32(0),
0025             wirePropCorrType = cms.int32(0),
0026             # Switch on/off the correction for the signal propagation along the wire
0027             doWirePropCorrection = cms.bool(False),
0028             doT0Correction = cms.bool(False),
0029             debug = cms.untracked.bool(False),
0030             tTrigLabel = cms.string('cosmics'),
0031             t0Label = cms.string('')
0032         ),
0033         maxTime = cms.double(3500.0)
0034     ),
0035     recAlgo = cms.string('DTNoDriftAlgo')
0036 )
0037