CMS 3D CMS Logo

muonRecoTest_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 muRecoTest = DQMEDHarvester("MuonRecoTest",
5  phiMin = cms.double(-3.2),
6  # number of luminosity block to analyse
7  diagnosticPrescale = cms.untracked.int32(1),
8  etaMin = cms.double(-3.0),
9  efficiencyTestName = cms.untracked.string('EfficiencyInRange'),
10  # histo binning
11  etaBin = cms.int32(100),
12  phiBin = cms.int32(100),
13  etaMax = cms.double(3.0),
14  phiMax = cms.double(3.2)
15  )
16 
17 
18 
DQMEDHarvester
Definition: DQMEDHarvester.py:1