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 DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
0004 dtCalibValidation = DQMEDAnalyzer('DTCalibValidation',
0005     # Write the histos on file
0006     OutputMEsInRootFile = cms.bool(False),
0007     # Lable to retrieve 2D segments from the event
0008     segment2DLabel = cms.untracked.string('dt2DSegments'),
0009     OutputFileName = cms.string('residuals.root'),
0010     # Lable to retrieve 4D segments from the event
0011     segment4DLabel = cms.untracked.string('dt4DSegments'),
0012     debug = cms.untracked.bool(False),
0013     # Lable to retrieve RecHits from the event
0014     recHits1DLabel = cms.untracked.string('dt1DRecHits'),
0015     # Detailed analysis
0016     detailedAnalysis = cms.untracked.bool(False)
0017 )