File indexing completed on 2024-04-06 11:58:29
0001 import FWCore.ParameterSet.Config as cms
0002
0003 from CalibMuon.DTCalibration.dtSegmentSelection_cfi import dtSegmentSelection
0004
0005 dtVDriftMeanTimerCalibration = cms.EDAnalyzer("DTVDriftCalibration",
0006
0007 dtSegmentSelection,
0008 recHits4DLabel = cms.InputTag('dt4DSegments'),
0009 rootFileName = cms.untracked.string('DTTMaxHistos.root'),
0010 debug = cms.untracked.bool(False),
0011
0012
0013 calibChamber = cms.untracked.string('All'),
0014
0015 tMaxGranularity = cms.untracked.string('bySL'),
0016
0017 tTrigMode = cms.string('DTTTrigSyncFromDB'),
0018 tTrigModeConfig = cms.PSet(
0019
0020 vPropWire = cms.double(24.4),
0021
0022 doTOFCorrection = cms.bool(True),
0023 tofCorrType = cms.int32(0),
0024 wirePropCorrType = cms.int32(0),
0025
0026 doWirePropCorrection = cms.bool(True),
0027
0028 doT0Correction = cms.bool(True),
0029 debug = cms.untracked.bool(False),
0030 tTrigLabel = cms.string(''),
0031 t0Label = cms.string('')
0032 ),
0033
0034 findVDriftAndT0 = cms.untracked.bool(False),
0035
0036 calibFileConfig = cms.untracked.PSet(
0037 nFields = cms.untracked.int32(6),
0038 calibConstGranularity = cms.untracked.string('bySL'),
0039 calibConstFileName = cms.untracked.string('vDriftAndReso.txt')
0040 ),
0041
0042 vDriftFileName = cms.untracked.string('vDriftFromMtime.txt'),
0043
0044
0045 writeLegacyVDriftDB =cms.bool(True),
0046
0047 )