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

DQMExampleGenericClient = DQMEDHarvester("DQMGenericClient",
                                          subDirs = cms.untracked.vstring("Physics/TopTest"),
                                          efficiency = cms.vstring(
                                              "myEfficiencyEta 'Efficiency vs Eta' EleEta_leading_HLT_matched EleEta_leading",
                                              "myEfficiencyPhi 'Efficiency vs Phi' ElePhi_leading_HLT_matched ElePhi_leading"
                                              ),
                                          resolution = cms.vstring("")
    )