CMS 3D CMS Logo

CalibratedDigis_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 from DB (and ttrig from DB)
5 
6 CalibratedDigis = cms.EDProducer("CalibratedDigis",
7  tTrigModeConfig = cms.PSet(
8  # The velocity of signal propagation along the wire (cm/ns)
9  vPropWire = cms.double(24.4),
10  # Switch on/off the TOF correction for particles
11  doTOFCorrection = cms.bool(True),
12  tofCorrType = cms.int32(0),
13  wirePropCorrType = cms.int32(0),
14  # Switch on/off the correction for the signal propagation along the wire
15  doWirePropCorrection = cms.bool(True),
16  # Switch on/off the TOF correction from pulses
17  doT0Correction = cms.bool(True),
18  debug = cms.untracked.bool(False),
19  tTrigLabel = cms.string(''),
20  t0Label = cms.string('')
21  ),
22  tTrigMode = cms.string('DTTTrigSyncFromDB'),
23  timeOffset = cms.int32(0),
24  flat_calib = cms.int32(0),
25  scenario = cms.untracked.int32(0),
26  dtDigiTag = cms.InputTag("muonDTDigis")
27  )
28 
29 
30 
31