CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
MEtoMEComparitor_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 MEtoMEComparitor = cms.EDAnalyzer("MEtoMEComparitor",
4  MEtoEDMLabel = cms.string('MEtoEDMConverter'),
5 
6  lumiInstance = cms.string('MEtoEDMConverterLumi'),
7  runInstance = cms.string('MEtoEDMConverterRun'),
8 
9  autoProcess = cms.bool(True),
10  processRef = cms.string('HLT'),
11  processNew = cms.string('RERECO'),
12 
13  #under which an histogram goes to diff check
14  KSgoodness = cms.double(0.9),
15  #over which an histogram is marked as badKS, badDiff
16  Diffgoodness = cms.double(0.1),
17  #deepness of directory
18  dirDepth = cms.uint32(1),
19  #fraction in a directory under which a warning is send
20  OverAllgoodness = cms.double(0.9),
21 
22  )