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 from RecoMuon.TrackingTools.MuonSegmentMatcher_cff import *
0005 
0006 dtCalibValidation = DQMEDAnalyzer("DTCalibValidationFromMuons",
0007     MuonSegmentMatcher,
0008     OutputFileName = cms.string('residuals.root'),
0009     # Write the histos on file
0010     OutputMEsInRootFile = cms.bool(False),
0011     debug = cms.untracked.bool(False),
0012     # Detailed analysis
0013     detailedAnalysis = cms.untracked.bool(False),
0014     # Muon collection used for matching
0015     muonLabel = cms.untracked.string('muons'),
0016     # Lable to retrieve RecHits from the event
0017     recHits1DLabel = cms.untracked.string('dt1DRecHits'),
0018     # Lable to retrieve 2D segments from the event
0019     segment2DLabel = cms.untracked.string('dt2DSegments'),
0020     # Lable to retrieve 4D segments from the event
0021     segment4DLabel = cms.untracked.string('dt4DSegments')
0022 )
0023