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 dtResidualCalibration = cms.EDAnalyzer("DTResidualCalibration",
0006
0007 dtSegmentSelection,
0008 histogramRange = cms.double(0.4),
0009 segment4DLabel = cms.InputTag('dt4DSegments'),
0010 rootBaseDir = cms.untracked.string('DTResiduals'),
0011 rootFileName = cms.untracked.string('residuals.root'),
0012 detailedAnalysis = cms.untracked.bool(False)
0013
0014 )