CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
L1TEfficiencyHarvesting_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 l1tEfficiencyHarvesting = cms.EDAnalyzer("L1TEfficiency_Harvesting",
4 
5  verbose = cms.untracked.bool(False),
6  plotCfgs = cms.untracked.VPSet(
7  cms.untracked.PSet( dqmBaseDir = cms.untracked.string("L1T/Efficiency/Muons"),
8  plots = cms.untracked.vstring("EffvsPt16","EffvsEta16","EffvsPhi16",\
9  "EffvsPt20","EffvsEta20","EffvsPhi20",\
10  "EffvsPt25","EffvsEta25","EffvsPhi25")
11  )
12  )
13 
14 )