CMS 3D CMS Logo

L1TEfficiencyHarvesting_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 l1tEfficiencyHarvesting = DQMEDHarvester(
5  "L1TEfficiencyHarvesting",
6  verbose=cms.untracked.bool(False),
7  plotCfgs=cms.untracked.VPSet(
8  cms.untracked.PSet(
9  numeratorDir=cms.untracked.string("L1T/Efficiency/Muons"),
10  plots=cms.untracked.vstring(
11  "EffvsPt16", "EffvsEta16", "EffvsPhi16",
12  "EffvsPt20", "EffvsEta20", "EffvsPhi20",
13  "EffvsPt25", "EffvsEta25", "EffvsPhi25",
14  )
15  )
16  )
17 
18 )
DQMEDHarvester
Definition: DQMEDHarvester.py:1