CMS 3D CMS Logo

List of all members | Public Member Functions | Private Member Functions | Private Attributes
PFJetDQMAnalyzer Class Reference

#include <PFJetDQMAnalyzer.h>

Inheritance diagram for PFJetDQMAnalyzer:
DQMEDAnalyzer edm::stream::EDProducer< edm::GlobalCache< DQMEDAnalyzerGlobalCache >, edm::EndRunProducer, edm::EndLuminosityBlockProducer, edm::Accumulator >

Public Member Functions

 PFJetDQMAnalyzer (const edm::ParameterSet &parameterSet)
 
- Public Member Functions inherited from DQMEDAnalyzer
void accumulate (edm::Event const &event, edm::EventSetup const &setup) final
 
void beginLuminosityBlock (edm::LuminosityBlock const &lumi, edm::EventSetup const &setup) final
 
void beginRun (edm::Run const &run, edm::EventSetup const &setup) final
 
void beginStream (edm::StreamID id) final
 
virtual void dqmBeginRun (edm::Run const &, edm::EventSetup const &)
 
 DQMEDAnalyzer ()
 
void endLuminosityBlock (edm::LuminosityBlock const &lumi, edm::EventSetup const &setup) final
 
void endRun (edm::Run const &run, edm::EventSetup const &setup) final
 
virtual bool getCanSaveByLumi ()
 
- Public Member Functions inherited from edm::stream::EDProducer< edm::GlobalCache< DQMEDAnalyzerGlobalCache >, edm::EndRunProducer, edm::EndLuminosityBlockProducer, edm::Accumulator >
 EDProducer ()=default
 
 EDProducer (const EDProducer &)=delete
 
bool hasAbilityToProduceInBeginLumis () const final
 
bool hasAbilityToProduceInBeginProcessBlocks () const final
 
bool hasAbilityToProduceInBeginRuns () const final
 
bool hasAbilityToProduceInEndLumis () const final
 
bool hasAbilityToProduceInEndProcessBlocks () const final
 
bool hasAbilityToProduceInEndRuns () const final
 
const EDProduceroperator= (const EDProducer &)=delete
 

Private Member Functions

void analyze (edm::Event const &, edm::EventSetup const &) override
 
void bookHistograms (DQMStore::IBooker &, edm::Run const &, edm::EventSetup const &) override
 

Private Attributes

std::string benchmarkLabel_
 
std::string eventInfoFolder_
 
edm::InputTag inputLabel_
 
edm::InputTag matchLabel_
 
edm::EDGetTokenT< edm::View< reco::Jet > > myJet_
 
edm::EDGetTokenT< edm::View< reco::Jet > > myMatchedJet_
 
int nBadEvents_
 
PFJetMonitor pfJetMonitor_
 
edm::ParameterSet pSet_
 
std::string subsystemname_
 

Additional Inherited Members

- Public Types inherited from DQMEDAnalyzer
typedef dqm::reco::DQMStore DQMStore
 
typedef dqm::reco::MonitorElement MonitorElement
 
- Public Types inherited from edm::stream::EDProducer< edm::GlobalCache< DQMEDAnalyzerGlobalCache >, edm::EndRunProducer, edm::EndLuminosityBlockProducer, edm::Accumulator >
using CacheTypes = CacheContexts< T... >
 
using GlobalCache = typename CacheTypes::GlobalCache
 
using HasAbility = AbilityChecker< T... >
 
using InputProcessBlockCache = typename CacheTypes::InputProcessBlockCache
 
using LuminosityBlockCache = typename CacheTypes::LuminosityBlockCache
 
using LuminosityBlockContext = LuminosityBlockContextT< LuminosityBlockCache, RunCache, GlobalCache >
 
using LuminosityBlockSummaryCache = typename CacheTypes::LuminosityBlockSummaryCache
 
using RunCache = typename CacheTypes::RunCache
 
using RunContext = RunContextT< RunCache, GlobalCache >
 
using RunSummaryCache = typename CacheTypes::RunSummaryCache
 
- Static Public Member Functions inherited from DQMEDAnalyzer
static void globalEndJob (DQMEDAnalyzerGlobalCache const *)
 
static void globalEndLuminosityBlockProduce (edm::LuminosityBlock &lumi, edm::EventSetup const &setup, LuminosityBlockContext const *context)
 
static void globalEndRunProduce (edm::Run &run, edm::EventSetup const &setup, RunContext const *context)
 
static std::unique_ptr< DQMEDAnalyzerGlobalCacheinitializeGlobalCache (edm::ParameterSet const &)
 
- Protected Member Functions inherited from DQMEDAnalyzer
uint64_t meId () const
 
- Protected Attributes inherited from DQMEDAnalyzer
edm::EDPutTokenT< DQMTokenlumiToken_
 
edm::EDPutTokenT< DQMTokenrunToken_
 
unsigned int streamId_
 

Detailed Description

Definition at line 14 of file PFJetDQMAnalyzer.h.

Constructor & Destructor Documentation

◆ PFJetDQMAnalyzer()

PFJetDQMAnalyzer::PFJetDQMAnalyzer ( const edm::ParameterSet parameterSet)

Definition at line 21 of file PFJetDQMAnalyzer.cc.

References benchmarkLabel_, eventInfoFolder_, printsummarytable::folder, edm::ParameterSet::getParameter(), inputLabel_, matchLabel_, myJet_, myMatchedJet_, nBadEvents_, edm::parameterSet(), pfJetMonitor_, pSet_, PFJetMonitor::setParameters(), AlCaHLTBitMon_QueryRunRegistry::string, and subsystemname_.

23 {
25  inputLabel_ = pSet_.getParameter<edm::InputTag>("InputCollection");
26  matchLabel_ = pSet_.getParameter<edm::InputTag>("MatchCollection");
27  benchmarkLabel_ = pSet_.getParameter<std::string>("BenchmarkLabel");
28 
29  pfJetMonitor_.setParameters(parameterSet); // set parameters for booking histograms and validating jet
30 
31  myJet_ = consumes<edm::View<reco::Jet>>(inputLabel_);
32  myMatchedJet_ = consumes<edm::View<reco::Jet>>(matchLabel_);
33 
35 
36  subsystemname_ = "ParticleFlow";
38 
39  nBadEvents_ = 0;
40 }
T getParameter(std::string const &) const
Definition: ParameterSet.h:307
edm::InputTag inputLabel_
PFJetMonitor pfJetMonitor_
edm::EDGetTokenT< edm::View< reco::Jet > > myJet_
ParameterSet const & parameterSet(StableProvenance const &provenance, ProcessHistory const &history)
Definition: Provenance.cc:11
std::string benchmarkLabel_
edm::EDGetTokenT< edm::View< reco::Jet > > myMatchedJet_
edm::ParameterSet pSet_
void setParameters(const edm::ParameterSet &parameterSet)
set the parameters accessing them from ParameterSet
Definition: PFJetMonitor.cc:39
edm::InputTag matchLabel_
std::string eventInfoFolder_
std::string subsystemname_

Member Function Documentation

◆ analyze()

void PFJetDQMAnalyzer::analyze ( edm::Event const &  iEvent,
edm::EventSetup const &  iSetup 
)
overrideprivatevirtual

Reimplemented from DQMEDAnalyzer.

Definition at line 59 of file PFJetDQMAnalyzer.cc.

References PFJetMonitor::fill(), iEvent, edm::HandleBase::isValid(), jetfilter_cfi::jetCollection, myJet_, myMatchedJet_, pfJetMonitor_, and pSet_.

59  {
61  iEvent.getByToken(myJet_, jetCollection);
62 
63  edm::Handle<edm::View<reco::Jet>> matchedJetCollection;
64  iEvent.getByToken(myMatchedJet_, matchedJetCollection);
65 
66  float maxRes = 0.0;
67  float minRes = 99.99;
68  float jetpT = 0.0;
69  if (jetCollection.isValid() && matchedJetCollection.isValid()) {
71  *matchedJetCollection,
72  minRes,
73  maxRes,
74  jetpT,
75  pSet_); // match collections and fill pt eta phi and charge histos for
76  // candidate jet, fill delta_x_VS_y histos for matched couples,
77  // book and fill delta_frac_VS_frac histos for matched couples
78  }
79 }
void fill(const T &candidateCollection, const C &matchedCandCollection, float &minVal, float &maxVal, float &jetpT, const edm::ParameterSet &parameterSet)
fill histograms with all particle
Definition: PFJetMonitor.h:65
PFJetMonitor pfJetMonitor_
edm::EDGetTokenT< edm::View< reco::Jet > > myJet_
int iEvent
Definition: GenABIO.cc:224
edm::EDGetTokenT< edm::View< reco::Jet > > myMatchedJet_
edm::ParameterSet pSet_
bool isValid() const
Definition: HandleBase.h:70

◆ bookHistograms()

void PFJetDQMAnalyzer::bookHistograms ( DQMStore::IBooker ibooker,
edm::Run const &  ,
edm::EventSetup const &   
)
overrideprivatevirtual

Implements DQMEDAnalyzer.

Definition at line 45 of file PFJetDQMAnalyzer.cc.

References eventInfoFolder_, pfJetMonitor_, pSet_, dqm::implementation::NavigatorBase::setCurrentFolder(), and PFJetMonitor::setup().

47  {
49 
50  edm::LogInfo("PFJetDQMAnalyzer") << " PFJetDQMAnalyzer::bookHistograms "
51  << "Histogram Folder path set to " << eventInfoFolder_;
52 
53  pfJetMonitor_.setup(ibooker, pSet_);
54 }
virtual void setCurrentFolder(std::string const &fullpath)
Definition: DQMStore.cc:36
PFJetMonitor pfJetMonitor_
void setup(DQMStore::IBooker &b)
book histograms
edm::ParameterSet pSet_
Log< level::Info, false > LogInfo
std::string eventInfoFolder_

Member Data Documentation

◆ benchmarkLabel_

std::string PFJetDQMAnalyzer::benchmarkLabel_
private

Definition at line 27 of file PFJetDQMAnalyzer.h.

Referenced by PFJetDQMAnalyzer().

◆ eventInfoFolder_

std::string PFJetDQMAnalyzer::eventInfoFolder_
private

Definition at line 32 of file PFJetDQMAnalyzer.h.

Referenced by bookHistograms(), and PFJetDQMAnalyzer().

◆ inputLabel_

edm::InputTag PFJetDQMAnalyzer::inputLabel_
private

Definition at line 26 of file PFJetDQMAnalyzer.h.

Referenced by PFJetDQMAnalyzer().

◆ matchLabel_

edm::InputTag PFJetDQMAnalyzer::matchLabel_
private

Definition at line 25 of file PFJetDQMAnalyzer.h.

Referenced by PFJetDQMAnalyzer().

◆ myJet_

edm::EDGetTokenT<edm::View<reco::Jet> > PFJetDQMAnalyzer::myJet_
private

Definition at line 23 of file PFJetDQMAnalyzer.h.

Referenced by analyze(), and PFJetDQMAnalyzer().

◆ myMatchedJet_

edm::EDGetTokenT<edm::View<reco::Jet> > PFJetDQMAnalyzer::myMatchedJet_
private

Definition at line 24 of file PFJetDQMAnalyzer.h.

Referenced by analyze(), and PFJetDQMAnalyzer().

◆ nBadEvents_

int PFJetDQMAnalyzer::nBadEvents_
private

Definition at line 35 of file PFJetDQMAnalyzer.h.

Referenced by PFJetDQMAnalyzer().

◆ pfJetMonitor_

PFJetMonitor PFJetDQMAnalyzer::pfJetMonitor_
private

Definition at line 29 of file PFJetDQMAnalyzer.h.

Referenced by analyze(), bookHistograms(), and PFJetDQMAnalyzer().

◆ pSet_

edm::ParameterSet PFJetDQMAnalyzer::pSet_
private

Definition at line 31 of file PFJetDQMAnalyzer.h.

Referenced by analyze(), bookHistograms(), and PFJetDQMAnalyzer().

◆ subsystemname_

std::string PFJetDQMAnalyzer::subsystemname_
private

Definition at line 33 of file PFJetDQMAnalyzer.h.

Referenced by PFJetDQMAnalyzer().