CMS 3D CMS Logo

dtResolutionTest_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 resolutionTest = DQMEDHarvester("DTResolutionTest",
5  runningStandalone = cms.untracked.bool(True),
6  diagnosticPrescale = cms.untracked.int32(1),
7  calibModule = cms.untracked.bool(True),
8  #Names of the quality tests: they must match those specified in "qtList"
9  resDistributionTestName = cms.untracked.string('ResidualsDistributionGaussianTest'),
10  meanTestName = cms.untracked.string('ResidualsMeanInRange'),
11  sigmaTestName = cms.untracked.string('ResidualsSigmaInRange'),
12  #Input/Output files
13  readFile = cms.untracked.bool(False),
14  inputFile = cms.untracked.string('/afs/cern.ch/cms/CAF/CMSALCA/ALCA_MUONCALIB/DTCALIB/CRAFT/ttrig/DTkFactValidation_66722.root'),
15  debug = cms.untracked.bool(False),
16  OutputMEsInRootFile = cms.bool(True),
17  OutputFileName = cms.string('provaDTkfactValidation2.root'),
18  #Histo setting
19  folderRoot = cms.untracked.string(''),
20  histoTag2D = cms.untracked.string('hResDistVsDist_STEP3'),
21  histoTag = cms.untracked.string('hResDist_STEP3'),
22  STEP = cms.untracked.string('STEP3'),
23  meanMaxLimit = cms.untracked.double(0.07),
24  meanWrongHisto = cms.untracked.bool(False),
25  sigmaTest = cms.untracked.bool(False),
26  slopeTest = cms.untracked.bool(False)
27 )