CMS 3D CMS Logo

hltDt1DRecHits_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 hltDt1DRecHits = cms.EDProducer("DTRecHitProducer",
4  debug = cms.untracked.bool(False),
5  dtDigiLabel = cms.InputTag("simMuonDTDigis"),
6  recAlgo = cms.string('DTLinearDriftFromDBAlgo'),
7  recAlgoConfig = cms.PSet(
8  debug = cms.untracked.bool(False),
9  doVdriftCorr = cms.bool(True),
10  maxTime = cms.double(420.0),
11  minTime = cms.double(-3.0),
12  readLegacyTTrigDB = cms.bool(True),
13  readLegacyVDriftDB = cms.bool(True),
14  stepTwoFromDigi = cms.bool(False),
15  tTrigMode = cms.string('DTTTrigSyncFromDB'),
16  tTrigModeConfig = cms.PSet(
17  debug = cms.untracked.bool(False),
18  doT0Correction = cms.bool(True),
19  doTOFCorrection = cms.bool(True),
20  doWirePropCorrection = cms.bool(True),
21  tTrigLabel = cms.string(''),
22  t0Label = cms.string(''),
23  tofCorrType = cms.int32(0),
24  vPropWire = cms.double(24.4),
25  wirePropCorrType = cms.int32(0)
26  ),
27  useUncertDB = cms.bool(True)
28  )
29 )