Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003 from CalibMuon.DTCalibration.dtSegmentSelection_cfi import dtSegmentSelection
00004
00005 dtVDriftMeanTimerCalibration = cms.EDAnalyzer("DTVDriftCalibration",
00006
00007 dtSegmentSelection,
00008 recHits4DLabel = cms.InputTag('dt4DSegments'),
00009 rootFileName = cms.untracked.string('DTTMaxHistos.root'),
00010 debug = cms.untracked.bool(False),
00011
00012
00013 calibChamber = cms.untracked.string('All'),
00014
00015 tMaxGranularity = cms.untracked.string('bySL'),
00016
00017 tTrigMode = cms.string('DTTTrigSyncFromDB'),
00018 tTrigModeConfig = cms.PSet(
00019
00020 vPropWire = cms.double(24.4),
00021
00022 doTOFCorrection = cms.bool(False),
00023 tofCorrType = cms.int32(0),
00024 wirePropCorrType = cms.int32(0),
00025
00026 doWirePropCorrection = cms.bool(False),
00027
00028 doT0Correction = cms.bool(True),
00029 debug = cms.untracked.bool(False),
00030 tTrigLabel = cms.string('cosmics')
00031 ),
00032
00033 findVDriftAndT0 = cms.untracked.bool(False),
00034
00035 calibFileConfig = cms.untracked.PSet(
00036 nFields = cms.untracked.int32(6),
00037 calibConstGranularity = cms.untracked.string('bySL'),
00038 calibConstFileName = cms.untracked.string('vDriftAndReso.txt')
00039 ),
00040
00041 vDriftFileName = cms.untracked.string('vDriftFromMtime.txt')
00042 )