CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
DTLinearDriftAlgo_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 #constant vdrift (and ttrig from DB)
5 DTLinearDriftAlgo_CosmicData = cms.PSet(
6  recAlgoConfig = cms.PSet(
7  # The module to be used for ttrig synchronization and its set parameter
8  tTrigMode = cms.string('DTTTrigSyncFromDB'),
9  # # Drift velocity for MB1 W1 (unfluxed chamber during MTCC)
10  # double driftVelocityMB1W1 = 0.00570
11  # Times outside this window (ns) are considered as coming from previous BXs
12  minTime = cms.double(-3.0),
13  # Drift velocity (cm/ns)
14  driftVelocity = cms.double(0.00543),
15  # Cell resolution (cm)
16  hitResolution = cms.double(0.02),
17  debug = cms.untracked.bool(False),
18  tTrigModeConfig = cms.PSet(
19  # The velocity of signal propagation along the wire (cm/ns)
20  vPropWire = cms.double(24.4),
21  # Switch on/off the TOF correction for particles
22  doTOFCorrection = cms.bool(False),
23  tofCorrType = cms.int32(0),
24  wirePropCorrType = cms.int32(0),
25  # Switch on/off the correction for the signal propagation along the wire
26  doWirePropCorrection = cms.bool(False),
27  # Switch on/off the T0 correction from pulses
28  doT0Correction = cms.bool(True),
29  debug = cms.untracked.bool(False),
30  tTrigLabel = cms.string('cosmics')
31  ),
32  maxTime = cms.double(420.0)
33  ),
34  recAlgo = cms.string('DTLinearDriftAlgo')
35 )
36