Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:09:39

0001 import FWCore.ParameterSet.Config as cms
0002 from DQMServices.Core.DQMEDHarvester import DQMEDHarvester
0003 
0004 muTrackResidualsTest = DQMEDHarvester("MuonTrackResidualsTest",
0005     sigmaTestName = cms.untracked.string('ResidualsSigmaInRange'),
0006     meanTestName = cms.untracked.string('ResidualsMeanInRange'),
0007     # number of luminosity block to analyse
0008     diagnosticPrescale = cms.untracked.int32(1),
0009     # quality test name
0010     resDistributionTestName = cms.untracked.string('ResidualsDistributionGaussianTest')
0011 )
0012 
0013 
0014