CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
HLTJetMETQualityTester_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 hltJetMetQualityTester = cms.EDAnalyzer("QualityTester",
4  qtList = cms.untracked.FileInPath(
5  'HLTriggerOffline/JetMET/data/QualityTests.xml'
6  ),
7  #reportThreshold = cms.untracked.string('black'),
8  prescaleFactor = cms.untracked.int32(1),
9  getQualityTestsFromFile = cms.untracked.bool(True),
10  qtestOnEndJob = cms.untracked.bool(False),
11  qtestOnEndRun = cms.untracked.bool(True),
12  qtestOnEndLumi = cms.untracked.bool(False),
13  testInEventloop = cms.untracked.bool(False),
14  verboseQT = cms.untracked.bool(False)
15 )