CMS 3D CMS Logo

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

#include <HLTTauDQMPathSummaryPlotter.h>

Inheritance diagram for HLTTauDQMPathSummaryPlotter:
HLTTauDQMPlotter

Public Member Functions

void analyze (const edm::TriggerResults &triggerResults, const trigger::TriggerEvent &triggerEvent, const HLTTauDQMOfflineObjects &refCollection)
 
void bookHistograms (DQMStore::IBooker &iBooker)
 
 HLTTauDQMPathSummaryPlotter (const edm::ParameterSet &pset, bool doRefAnalysis, const std::string &dqmBaseFolder, double hltMatchDr)
 
void setPathObjects (const std::vector< const HLTTauDQMPath * > &pathObjects)
 
 ~HLTTauDQMPathSummaryPlotter ()
 

Private Attributes

MonitorElementaccepted_events
 
MonitorElementall_events
 
const bool doRefAnalysis_
 
const double hltMatchDr_
 
std::vector< const HLTTauDQMPath * > pathObjects_
 
- Private Attributes inherited from HLTTauDQMPlotter
bool configValid_
 
std::string dqmFolder_
 
std::string dqmFullFolder_
 

Additional Inherited Members

- Private Member Functions inherited from HLTTauDQMPlotter
 HLTTauDQMPlotter (const edm::ParameterSet &pset, std::string dqmBaseFolder)
 
 HLTTauDQMPlotter (const std::string &dqmFolder, const std::string &dqmBaseFolder)
 
bool isValid () const
 
 ~HLTTauDQMPlotter ()
 
std::pair< bool, LVmatch (const LV &, const LVColl &, double)
 
const std::string & triggerTag () const
 

Detailed Description

Definition at line 17 of file HLTTauDQMPathSummaryPlotter.h.

Constructor & Destructor Documentation

HLTTauDQMPathSummaryPlotter::HLTTauDQMPathSummaryPlotter ( const edm::ParameterSet pset,
bool  doRefAnalysis,
const std::string &  dqmBaseFolder,
double  hltMatchDr 
)

Definition at line 4 of file HLTTauDQMPathSummaryPlotter.cc.

References ~HLTTauDQMPathSummaryPlotter().

4  :
5  HLTTauDQMPlotter(pset, dqmBaseFolder),
6  hltMatchDr_(hltMatchDr),
7  doRefAnalysis_(doRefAnalysis)
8 {}
HLTTauDQMPlotter(const edm::ParameterSet &pset, std::string dqmBaseFolder)
HLTTauDQMPathSummaryPlotter::~HLTTauDQMPathSummaryPlotter ( )
default

Member Function Documentation

void HLTTauDQMPathSummaryPlotter::analyze ( const edm::TriggerResults triggerResults,
const trigger::TriggerEvent triggerEvent,
const HLTTauDQMOfflineObjects refCollection 
)

Definition at line 29 of file HLTTauDQMPathSummaryPlotter.cc.

References accepted_events, all_events, HLTTauDQMOfflineObjects::clear(), doRefAnalysis_, MonitorElement::Fill(), HLTTauDQMPath::filtersSize(), HLTTauDQMPath::fired(), HLTTauDQMPath::getFilterObjects(), HLTTauDQMPath::goodOfflineEvent(), hltMatchDr_, mps_fire::i, HLTTauDQMPath::offlineMatching(), callgraph::path, and pathObjects_.

29  {
30  if(doRefAnalysis_) {
31  std::vector<HLTTauDQMPath::Object> triggerObjs;
32  std::vector<HLTTauDQMPath::Object> matchedTriggerObjs;
33  HLTTauDQMOfflineObjects matchedOfflineObjs;
34 
35  for(size_t i=0; i<pathObjects_.size(); ++i) {
36  const HLTTauDQMPath *path = pathObjects_[i];
37  const int lastFilter = path->filtersSize()-1;
38 
39  if(path->goodOfflineEvent(lastFilter, refCollection)) {
40  all_events->Fill(i+0.5);
41  }
42  if(path->fired(triggerResults)) {
43  triggerObjs.clear();
44  matchedTriggerObjs.clear();
45  matchedOfflineObjs.clear();
46  path->getFilterObjects(triggerEvent, lastFilter, triggerObjs);
47  if(path->offlineMatching(lastFilter, triggerObjs, refCollection, hltMatchDr_, matchedTriggerObjs, matchedOfflineObjs)) {
48  accepted_events->Fill(i+0.5);
49  }
50  }
51  }
52  }
53  else {
54  for(size_t i=0; i<pathObjects_.size(); ++i) {
55  const HLTTauDQMPath *path = pathObjects_[i];
56  all_events->Fill(i+0.5);
57  if(path->fired(triggerResults)) {
58  accepted_events->Fill(i+0.5);
59  }
60  }
61  }
62 }
bool goodOfflineEvent(size_t i, const HLTTauDQMOfflineObjects &offlineObjects) const
void Fill(long long x)
void getFilterObjects(const trigger::TriggerEvent &triggerEvent, size_t i, std::vector< Object > &retval) const
std::vector< const HLTTauDQMPath * > pathObjects_
size_t filtersSize() const
Definition: HLTTauDQMPath.h:52
bool offlineMatching(size_t i, const std::vector< Object > &triggerObjects, const HLTTauDQMOfflineObjects &offlineObjects, double dR, std::vector< Object > &matchedTriggerObjects, HLTTauDQMOfflineObjects &matchedOfflineObjects) const
bool fired(const edm::TriggerResults &triggerResults) const
void HLTTauDQMPathSummaryPlotter::bookHistograms ( DQMStore::IBooker iBooker)

Definition at line 12 of file HLTTauDQMPathSummaryPlotter.cc.

References accepted_events, all_events, DQMStore::IBooker::book1D(), mps_fire::i, HLTTauDQMPlotter::isValid(), pathObjects_, MonitorElement::setBinLabel(), DQMStore::IBooker::setCurrentFolder(), and HLTTauDQMPlotter::triggerTag().

12  {
13  if(!isValid() || pathObjects_.empty())
14  return;
15 
16  //Create the histograms
17  iBooker.setCurrentFolder(triggerTag()+"/helpers");
18 
19  all_events = iBooker.book1D("RefEvents", "All events", pathObjects_.size(), 0, pathObjects_.size());
20  accepted_events = iBooker.book1D("PathTriggerBits","Accepted Events per Path;;entries", pathObjects_.size(), 0, pathObjects_.size());
21  for(size_t i=0; i<pathObjects_.size(); ++i) {
22  all_events->setBinLabel(i+1, pathObjects_[i]->getPathName());
23  accepted_events->setBinLabel(i+1, pathObjects_[i]->getPathName());
24  }
25 
26  iBooker.setCurrentFolder(triggerTag());
27 }
bool isValid() const
void setBinLabel(int bin, const std::string &label, int axis=1)
set bin label for x, y or z axis (axis=1, 2, 3 respectively)
const std::string & triggerTag() const
void setCurrentFolder(std::string const &fullpath)
Definition: DQMStore.cc:268
std::vector< const HLTTauDQMPath * > pathObjects_
MonitorElement * book1D(Args &&...args)
Definition: DQMStore.h:106
void HLTTauDQMPathSummaryPlotter::setPathObjects ( const std::vector< const HLTTauDQMPath * > &  pathObjects)
inline

Definition at line 25 of file HLTTauDQMPathSummaryPlotter.h.

References analyze(), bookHistograms(), and edm::triggerResults().

25  {
26  pathObjects_ = pathObjects;
27  }
std::vector< const HLTTauDQMPath * > pathObjects_

Member Data Documentation

MonitorElement* HLTTauDQMPathSummaryPlotter::accepted_events
private

Definition at line 38 of file HLTTauDQMPathSummaryPlotter.h.

Referenced by analyze(), and bookHistograms().

MonitorElement* HLTTauDQMPathSummaryPlotter::all_events
private

Definition at line 37 of file HLTTauDQMPathSummaryPlotter.h.

Referenced by analyze(), and bookHistograms().

const bool HLTTauDQMPathSummaryPlotter::doRefAnalysis_
private

Definition at line 33 of file HLTTauDQMPathSummaryPlotter.h.

Referenced by analyze().

const double HLTTauDQMPathSummaryPlotter::hltMatchDr_
private

Definition at line 32 of file HLTTauDQMPathSummaryPlotter.h.

Referenced by analyze().

std::vector<const HLTTauDQMPath *> HLTTauDQMPathSummaryPlotter::pathObjects_
private

Definition at line 35 of file HLTTauDQMPathSummaryPlotter.h.

Referenced by analyze(), and bookHistograms().