File indexing completed on 2024-04-06 12:09:45
0001 import FWCore.ParameterSet.Config as cms
0002 from DQMServices.Core.DQMEDHarvester import DQMEDHarvester
0003
0004 pfClient = DQMEDHarvester("PFClient",
0005 FolderNames = cms.vstring("PFJet/CompWithGenJet","PFJet/CompWithCaloJet"),
0006 HistogramNames = cms.vstring( "delta_et_Over_et_VS_et_"),
0007 CreateEfficiencyPlots = cms.bool(False),
0008 HistogramNamesForEfficiencyPlots = cms.vstring( " " ),
0009 HistogramNamesForProjectionPlots = cms.vstring( " " ),
0010 CreateProfilePlots = cms.bool(False),
0011 HistogramNamesForProfilePlots = cms.vstring( " " ),
0012 )
0013
0014
0015 pfClientJetRes = DQMEDHarvester("PFClient_JetRes",
0016 FolderNames = cms.vstring("PFJet/CompWithGenJet","PFJet/CompWithCaloJet"),
0017 HistogramNames = cms.vstring( "delta_et_Over_et_VS_et_"),
0018 CreateEfficiencyPlots = cms.bool(False),
0019 HistogramNamesForEfficiencyPlots = cms.vstring( " " ),
0020 CreateProfilePlots = cms.bool(False),
0021 HistogramNamesForProfilePlots = cms.vstring( " " ),
0022
0023 VariablePtBins = cms.vint32(20,40,60,80,100,150,200,250,300,400,500,750)
0024 )