CMS 3D CMS Logo

dtResidualCalibration_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 from CalibMuon.DTCalibration.dtSegmentSelection_cfi import dtSegmentSelection
4 
5 dtResidualCalibration = cms.EDAnalyzer("DTResidualCalibration",
6  # Segment selection
7  dtSegmentSelection,
8  histogramRange = cms.double(0.4),
9  segment4DLabel = cms.InputTag('dt4DSegments'),
10  rootBaseDir = cms.untracked.string('DTResiduals'),
11  rootFileName = cms.untracked.string('residuals.root'),
12  detailedAnalysis = cms.untracked.bool(False)
13  #detailedAnalysis = cms.untracked.bool(True)
14 )