CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
PFClient_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 pfClient = cms.EDAnalyzer("PFClient",
4  FolderNames = cms.vstring("PFJet/CompWithGenJet","PFJet/CompWithCaloJet"),
5  HistogramNames = cms.vstring( "delta_et_Over_et_VS_et_"),
6  CreateEfficiencyPlots = cms.bool(False),
7  HistogramNamesForEfficiencyPlots = cms.vstring( " " ),
8  HistogramNamesForProjectionPlots = cms.vstring( " " ),
9  CreateProfilePlots = cms.bool(False),
10  HistogramNamesForProfilePlots = cms.vstring( " " ),
11  )
12 
13 # need a different Client to store the slices
14 pfClient_JetRes = cms.EDAnalyzer("PFClient_JetRes",
15  FolderNames = cms.vstring("PFJet/CompWithGenJet","PFJet/CompWithCaloJet"),
16  HistogramNames = cms.vstring( "delta_et_Over_et_VS_et_"),
17  CreateEfficiencyPlots = cms.bool(False),
18  HistogramNamesForEfficiencyPlots = cms.vstring( " " ),
19  CreateProfilePlots = cms.bool(False),
20  HistogramNamesForProfilePlots = cms.vstring( " " ),
21  #VariablePtBins = cms.vint32(0,1,2,5,10,20,50,100,200,400,1000)
22  VariablePtBins = cms.vint32(20,40,60,80,100,150,200,250,300,400,500,750)
23  )