CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
MuonHLTValidation_cfi.py
Go to the documentation of this file.
2 
3 ################# Muon HLT Quality Tests #########################
4 qTesterMuonHLT = cms.EDAnalyzer("QualityTester",
5  qtList = cms.untracked.FileInPath(
6  'DQMOffline/Trigger/data/MuonHLT_QualityTests.xml'
7  ),
8  getQualityTestsFromFile = cms.untracked.bool(True),
9  prescaleFactor = cms.untracked.int32(1),
10  testInEventloop = cms.untracked.bool(False),
11  verboseQT = cms.untracked.bool(True),
12  qtestOnEndLumi = cms.untracked.bool(False),
13  qtestOnEndRun = cms.untracked.bool(True),
14  qtestOnEndJob = cms.untracked.bool(True),
15  #reportThreshold = cms.untracked.string("black")
16 )
17 
18 muonHLTCertSummary = cms.EDAnalyzer("HLTMuonCertSummary",
19  verbose = cms.untracked.bool(False),
20 )
21 
22 muonHLTCertSeq = cms.Sequence(
23  qTesterMuonHLT *
24  muonHLTCertSummary
25 )