CMS 3D CMS Logo

MuonHLTValidation_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 from DQMServices.Core.DQMEDHarvester import DQMEDHarvester
3 
4 ################# Muon HLT Quality Tests #########################
5 qTesterMuonHLT = cms.EDAnalyzer("QualityTester",
6  qtList = cms.untracked.FileInPath(
7  'DQMOffline/Trigger/data/MuonHLT_QualityTests.xml'
8  ),
9  getQualityTestsFromFile = cms.untracked.bool(True),
10  prescaleFactor = cms.untracked.int32(1),
11  testInEventloop = cms.untracked.bool(False),
12  verboseQT = cms.untracked.bool(True),
13  qtestOnEndLumi = cms.untracked.bool(False),
14  qtestOnEndRun = cms.untracked.bool(True),
15  qtestOnEndJob = cms.untracked.bool(True),
16  #reportThreshold = cms.untracked.string("black")
17 )
18 
19 muonHLTCertSummary = DQMEDHarvester("HLTMuonCertSummary",
20  verbose = cms.untracked.bool(False),
21 )
22 
23 muonHLTCertSeq = cms.Sequence(
24  qTesterMuonHLT *
25  muonHLTCertSummary
26 )