CMS 3D CMS Logo

DTNoDriftAlgo_CosmicData_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # The reconstruction algo and its parameter set
4 DTNoDriftAlgo_CosmicData = cms.PSet(
5  recAlgoConfig = cms.PSet(
6  # DUMMY
7  #
8  # Fixed Drift distance (cm)
9  fixedDrift = cms.double(1.0),
10  #
11  # DUMMY
12  # Dummy ttrig parameters required by DTRecHitBaseAlgo.cc
13  tTrigMode = cms.string('DTTTrigSyncFromDB'),
14  # Times outside this window (ns) are considered as coming from previous BXs
15  minTime = cms.double(1000.0),
16  # Cell resolution (cm)
17  hitResolution = cms.double(1.0),
18  debug = cms.untracked.bool(False),
19  tTrigModeConfig = cms.PSet(
20  # The velocity of signal propagation along the wire (cm/ns)
21  vPropWire = cms.double(24.4),
22  # Switch on/off the TOF correction for particles
23  doTOFCorrection = cms.bool(False),
24  tofCorrType = cms.int32(0),
25  wirePropCorrType = cms.int32(0),
26  # Switch on/off the correction for the signal propagation along the wire
27  doWirePropCorrection = cms.bool(False),
28  doT0Correction = cms.bool(False),
29  debug = cms.untracked.bool(False),
30  tTrigLabel = cms.string('cosmics'),
31  t0Label = cms.string('')
32  ),
33  maxTime = cms.double(3500.0)
34  ),
35  recAlgo = cms.string('DTNoDriftAlgo')
36 )
37