Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
import FWCore.ParameterSet.Config as cms
from DQMServices.Core.DQMEDHarvester import DQMEDHarvester

hltTauOfflineCertification = DQMEDHarvester("HLTTauCertifier",
                                   targetDir = cms.string("HLT/EventInfo/reportSummaryContents"),
                                   targetME  = cms.string("HLT_Tau"),
                                   inputMEs = cms.vstring(
                                      "HLT/TAU/Inclusive/DoubleTau/TriggerBits",
                                   ),
                                   setBadRunOnWarnings = cms.bool(False),
                                   setBadRunOnErrors   = cms.bool(True)
)