CMS 3D CMS Logo

dtCalibValidationFromMuons_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
5 
6 dtCalibValidation = DQMEDAnalyzer("DTCalibValidationFromMuons",
7  MuonSegmentMatcher,
8  OutputFileName = cms.string('residuals.root'),
9  # Write the histos on file
10  OutputMEsInRootFile = cms.bool(False),
11  debug = cms.untracked.bool(False),
12  # Detailed analysis
13  detailedAnalysis = cms.untracked.bool(False),
14  # Muon collection used for matching
15  muonLabel = cms.untracked.string('muons'),
16  # Lable to retrieve RecHits from the event
17  recHits1DLabel = cms.untracked.string('dt1DRecHits'),
18  # Lable to retrieve 2D segments from the event
19  segment2DLabel = cms.untracked.string('dt2DSegments'),
20  # Lable to retrieve 4D segments from the event
21  segment4DLabel = cms.untracked.string('dt4DSegments')
22 )
23