1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
import FWCore.ParameterSet.Config as cms
DTLinearDriftFromDBAlgo = cms.PSet(
recAlgo = cms.string('DTLinearDriftFromDBAlgo'),
recAlgoConfig = cms.PSet(
debug = cms.untracked.bool(False),
doVdriftCorr = cms.bool(True),
maxTime = cms.double(420.0),
minTime = cms.double(-3.0),
stepTwoFromDigi = cms.bool(False),
tTrigMode = cms.string('DTTTrigSyncFromDB'),
tTrigModeConfig = cms.PSet(
debug = cms.untracked.bool(False),
doT0Correction = cms.bool(True),
doTOFCorrection = cms.bool(True),
doWirePropCorrection = cms.bool(True),
tTrigLabel = cms.string(''),
tofCorrType = cms.int32(0),
vPropWire = cms.double(24.4),
wirePropCorrType = cms.int32(0)
),
useUncertDB = cms.bool(True)
)
)
|