CMS 3D CMS Logo

dtVDriftSegmentCalibration_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 dtVDriftSegmentCalibration = cms.EDAnalyzer("DTVDriftSegmentCalibration",
6  # Segment selection
7  dtSegmentSelection,
8  recHits4DLabel = cms.InputTag('dt4DSegments'),
9  rootFileName = cms.untracked.string('DTVDriftHistos.root'),
10  # Choose the chamber you want to calibrate (default = "All"), specify the chosen chamber
11  # in the format "wheel station sector" (i.e. "-1 3 10")
12  calibChamber = cms.untracked.string('All')
13 )