CMS 3D CMS Logo

HLTTauCertifier_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 hltTauOfflineCertification = DQMEDHarvester("HLTTauCertifier",
5  targetDir = cms.string("HLT/EventInfo/reportSummaryContents"),
6  targetME = cms.string("HLT_Tau"),
7  inputMEs = cms.vstring(
8  "HLT/TAU/Inclusive/DoubleTau/TriggerBits",
9  ),
10  setBadRunOnWarnings = cms.bool(False),
11  setBadRunOnErrors = cms.bool(True)
12 )
13 
14 
15