CMS 3D CMS Logo

dtDQMOfflineClients_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
6 segmentTest.normalizeHistoPlots = True
7 segmentTest.runOnline = False
8 #segmentTest.detailedAnalysis = True
14 blockedROChannelTest.offlineMode = True;
16 
17 
18 from DQMServices.Core.DQMQualityTester import DQMQualityTester
19 dtQualityTests = DQMQualityTester(
20  #reportThreshold = cms.untracked.string('red'),
21  prescaleFactor = cms.untracked.int32(1),
22  qtList = cms.untracked.FileInPath('DQM/DTMonitorClient/test/QualityTests.xml'),
23  getQualityTestsFromFile = cms.untracked.bool(True)
24  )
25 
26 
27 dtClients = cms.Sequence(segmentTest+
28  dtResolutionAnalysisTest+
29  dtChamberEfficiencyClient+
30  dtTnPEfficiencyClient+
31  triggerEffTest+
32  blockedROChannelTest+
33  dtRunConditionVarClient+
34  dtOfflineSummaryClients+
35  ALCARECODTCalibSynchDQMClient)
36 
37