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