File indexing completed on 2024-04-06 12:26:07
0001 import FWCore.ParameterSet.Config as cms
0002
0003
0004
0005 DTLinearDriftFromDBAlgo_CosmicData = cms.PSet(
0006 recAlgoConfig = cms.PSet(
0007
0008 minTime = cms.double(-3.0),
0009 debug = cms.untracked.bool(False),
0010 tTrigModeConfig = cms.PSet(
0011
0012 vPropWire = cms.double(24.4),
0013
0014 doTOFCorrection = cms.bool(False),
0015 tofCorrType = cms.int32(0),
0016 wirePropCorrType = cms.int32(0),
0017
0018 doWirePropCorrection = cms.bool(False),
0019
0020 doT0Correction = cms.bool(True),
0021 debug = cms.untracked.bool(False),
0022 tTrigLabel = cms.string('cosmics'),
0023 t0Label = cms.string('')
0024 ),
0025 maxTime = cms.double(420.0),
0026
0027 stepTwoFromDigi = cms.bool(False),
0028
0029 tTrigMode = cms.string('DTTTrigSyncFromDB'),
0030 doVdriftCorr = cms.bool(False),
0031 useUncertDB = cms.bool(False),
0032 readLegacyTTrigDB = cms.bool(True),
0033 readLegacyVDriftDB = cms.bool(True),
0034 ),
0035 recAlgo = cms.string('DTLinearDriftFromDBAlgo')
0036 )
0037