Back to home page

Project CMSSW displayed by LXR

 
 

    


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 dtVDriftSegmentCalibration = cms.EDAnalyzer("DTVDriftSegmentCalibration",
0006     # Segment selection
0007     dtSegmentSelection,
0008     recHits4DLabel = cms.InputTag('dt4DSegments'),
0009     rootFileName = cms.untracked.string('DTVDriftHistos.root'),
0010     # Choose the chamber you want to calibrate (default = "All"), specify the chosen chamber
0011     # in the format "wheel station sector" (i.e. "-1 3 10")
0012     calibChamber = cms.untracked.string('All')
0013 )