CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_1/src/CalibMuon/DTCalibration/python/dtCalibValidation_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 DTCalibValidation = cms.EDAnalyzer("DTCalibValidation",
00004     # Write the histos on file
00005     OutputMEsInRootFile = cms.bool(False),
00006     # Lable to retrieve 2D segments from the event
00007     segment2DLabel = cms.untracked.string('dt2DSegments'),
00008     OutputFileName = cms.string('residuals.root'),
00009     # Lable to retrieve 4D segments from the event
00010     segment4DLabel = cms.untracked.string('dt4DSegments'),
00011     debug = cms.untracked.bool(False),
00012     # Lable to retrieve RecHits from the event
00013     recHits1DLabel = cms.untracked.string('dt1DRecHits'),
00014     # Detailed analysis
00015     detailedAnalysis = cms.untracked.bool(False)
00016 )