CMS 3D CMS Logo

trackResidualsTest_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 from DQMServices.Core.DQMEDHarvester import DQMEDHarvester
3 
4 muTrackResidualsTest = DQMEDHarvester("MuonTrackResidualsTest",
5  sigmaTestName = cms.untracked.string('ResidualsSigmaInRange'),
6  meanTestName = cms.untracked.string('ResidualsMeanInRange'),
7  # number of luminosity block to analyse
8  diagnosticPrescale = cms.untracked.int32(1),
9  # quality test name
10  resDistributionTestName = cms.untracked.string('ResidualsDistributionGaussianTest')
11 )
12 
13 
14