CMS 3D CMS Logo

dtCalibValidation_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
4 dtCalibValidation = DQMEDAnalyzer('DTCalibValidation',
5  # Write the histos on file
6  OutputMEsInRootFile = cms.bool(False),
7  # Lable to retrieve 2D segments from the event
8  segment2DLabel = cms.untracked.string('dt2DSegments'),
9  OutputFileName = cms.string('residuals.root'),
10  # Lable to retrieve 4D segments from the event
11  segment4DLabel = cms.untracked.string('dt4DSegments'),
12  debug = cms.untracked.bool(False),
13  # Lable to retrieve RecHits from the event
14  recHits1DLabel = cms.untracked.string('dt1DRecHits'),
15  # Detailed analysis
16  detailedAnalysis = cms.untracked.bool(False)
17 )