CMS 3D CMS Logo

PFClient_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 pfClient = DQMEDHarvester("PFClient",
5  FolderNames = cms.vstring("PFJet/CompWithGenJet","PFJet/CompWithCaloJet"),
6  HistogramNames = cms.vstring( "delta_et_Over_et_VS_et_"),
7  CreateEfficiencyPlots = cms.bool(False),
8  HistogramNamesForEfficiencyPlots = cms.vstring( " " ),
9  HistogramNamesForProjectionPlots = cms.vstring( " " ),
10  CreateProfilePlots = cms.bool(False),
11  HistogramNamesForProfilePlots = cms.vstring( " " ),
12  )
13 
14 # need a different Client to store the slices
15 pfClientJetRes = DQMEDHarvester("PFClient_JetRes",
16  FolderNames = cms.vstring("PFJet/CompWithGenJet","PFJet/CompWithCaloJet"),
17  HistogramNames = cms.vstring( "delta_et_Over_et_VS_et_"),
18  CreateEfficiencyPlots = cms.bool(False),
19  HistogramNamesForEfficiencyPlots = cms.vstring( " " ),
20  CreateProfilePlots = cms.bool(False),
21  HistogramNamesForProfilePlots = cms.vstring( " " ),
22  #VariablePtBins = cms.vint32(0,1,2,5,10,20,50,100,200,400,1000)
23  VariablePtBins = cms.vint32(20,40,60,80,100,150,200,250,300,400,500,750)
24  )