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