CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
dtResolutionTest_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 resolutionTest = cms.EDAnalyzer("DTResolutionTest",
4  runningStandalone = cms.untracked.bool(True),
5  diagnosticPrescale = cms.untracked.int32(1),
6  calibModule = cms.untracked.bool(True),
7  #Names of the quality tests: they must match those specified in "qtList"
8  resDistributionTestName = cms.untracked.string('ResidualsDistributionGaussianTest'),
9  meanTestName = cms.untracked.string('ResidualsMeanInRange'),
10  sigmaTestName = cms.untracked.string('ResidualsSigmaInRange'),
11  #Input/Output files
12  readFile = cms.untracked.bool(False),
13  inputFile = cms.untracked.string('/afs/cern.ch/cms/CAF/CMSALCA/ALCA_MUONCALIB/DTCALIB/CRAFT/ttrig/DTkFactValidation_66722.root'),
14  debug = cms.untracked.bool(False),
15  OutputMEsInRootFile = cms.bool(True),
16  OutputFileName = cms.string('provaDTkfactValidation2.root'),
17  #Histo setting
18  folderRoot = cms.untracked.string(''),
19  histoTag2D = cms.untracked.string('hResDistVsDist_STEP3'),
20  histoTag = cms.untracked.string('hResDist_STEP3'),
21  STEP = cms.untracked.string('STEP3'),
22  meanMaxLimit = cms.untracked.double(0.07),
23  meanWrongHisto = cms.untracked.bool(False),
24  sigmaTest = cms.untracked.bool(False),
25  slopeTest = cms.untracked.bool(False)
26 )