Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:07:02

0001 import FWCore.ParameterSet.Config as cms
0002 from DQMServices.Core.DQMEDHarvester import DQMEDHarvester
0003 
0004 resolutionTest = DQMEDHarvester("DTResolutionTest",
0005     runningStandalone = cms.untracked.bool(True),
0006     diagnosticPrescale = cms.untracked.int32(1),
0007     calibModule = cms.untracked.bool(True),
0008     #Names of the quality tests: they must match those specified in "qtList"
0009     resDistributionTestName = cms.untracked.string('ResidualsDistributionGaussianTest'),
0010     meanTestName = cms.untracked.string('ResidualsMeanInRange'),
0011     sigmaTestName = cms.untracked.string('ResidualsSigmaInRange'),
0012     #Input/Output files
0013     readFile = cms.untracked.bool(False),
0014     inputFile = cms.untracked.string('/afs/cern.ch/cms/CAF/CMSALCA/ALCA_MUONCALIB/DTCALIB/CRAFT/ttrig/DTkFactValidation_66722.root'),
0015     debug = cms.untracked.bool(False),
0016     OutputMEsInRootFile = cms.bool(True),
0017     OutputFileName = cms.string('provaDTkfactValidation2.root'),
0018     #Histo setting
0019     folderRoot = cms.untracked.string(''),
0020     histoTag2D = cms.untracked.string('hResDistVsDist_STEP3'),
0021     histoTag = cms.untracked.string('hResDist_STEP3'),
0022     STEP = cms.untracked.string('STEP3'),  
0023     meanMaxLimit =  cms.untracked.double(0.07),
0024     meanWrongHisto =  cms.untracked.bool(False),
0025     sigmaTest =  cms.untracked.bool(False),
0026     slopeTest =  cms.untracked.bool(False)
0027 )