CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
FWHLTTriggerTableView.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: Core
4 // Class : FWHLTTriggerTableView
5 //
6 // Implementation:
7 // [Notes on implementation]
8 //
9 // Original Author:
10 // Created: Tue Jan 25 16:02:03 CET 2011
11 //
12 #include <boost/regex.hpp>
13 
16 
24 
25 
27  : FWTriggerTableView(iParent, FWViewType::kTableHLT),
28  m_event(0)
29 {
30 
31  m_columns[0].title = "Filter Name";
32  m_columns.push_back(Column("Accept"));
33  m_columns.push_back(Column("Average Accept"));
34  dataChanged();
35 }
36 
37 
39 {
40  if ( event != m_event ) {
41  m_event = event;
43  }
45  edm::TriggerNames const* triggerNames(0);
46  try{
47  hTriggerResults.getByLabel(*event,"TriggerResults","",m_process.value().c_str());
48  triggerNames = &event->triggerNames(*hTriggerResults);
49  } catch (cms::Exception&) {
50  fwLog(fwlog::kWarning) << " no trigger results with process name HLT is available" << std::endl;
52  return;
53  }
54  boost::regex filter(m_regex.value());
55  for(unsigned int i=0; i<triggerNames->size(); ++i) {
56  if ( !boost::regex_search(triggerNames->triggerName(i),filter) ) continue;
57  m_columns.at(0).values.push_back(triggerNames->triggerName(i));
58  m_columns.at(1).values.push_back(Form("%d",hTriggerResults->accept(i)));
59  m_columns.at(2).values.push_back(Form("%6.1f%%",m_averageAccept[triggerNames->triggerName(i)]*100));
60  }
61 }
62 
63 void
65 {
66  edm::EventID currentEvent = m_event->id();
67  // better to keep the keys and just set to zero the values
68  for (acceptmap_t::iterator it = m_averageAccept.begin(), ed = m_averageAccept.end(); it != ed; ++it) {
69  it->second = 0;
70  }
71 
72  // loop over events
74  for (m_event->toBegin(); !m_event->atEnd(); ++(*m_event)) {
75  hTriggerResults.getByLabel(*m_event,"TriggerResults","","HLT");
76  edm::TriggerNames const* triggerNames(0);
77  try{
78  triggerNames = &m_event->triggerNames(*hTriggerResults);
79  } catch (cms::Exception&) {
80  fwLog(fwlog::kError) <<" exception caught while trying to get trigger info"<<std::endl;
81  break;
82  }
83 
84  for(unsigned int i=0; i<triggerNames->size(); ++i) {
85  if ( hTriggerResults->accept(i) ) {
86  m_averageAccept[triggerNames->triggerName(i)]++;
87  }
88  }
89  }
90  m_event->to(currentEvent);
91 
92  double denominator = 1.0/m_event->size();
93  for (acceptmap_t::iterator it = m_averageAccept.begin(), ed = m_averageAccept.end(); it != ed; ++it) {
94  it->second *= denominator;
95  }
96 }
int i
Definition: DBlmapReader.cc:9
virtual edm::TriggerNames const & triggerNames(edm::TriggerResults const &triggerResults) const
Definition: Event.cc:400
std::vector< Column > m_columns
FWStringParameter m_regex
bool accept() const
Has at least one path accepted the event?
FWHLTTriggerTableView(TEveWindowSlot *)
Strings::size_type size() const
Definition: TriggerNames.cc:39
Strings const & triggerNames() const
Definition: TriggerNames.cc:24
Long64_t size() const
Returns number of events in the file.
Definition: Event.cc:240
virtual void fillTable(fwlite::Event *event)
void getByLabel(const P &iP, const char *iModuleLabel, const char *iProductInstanceLabel=0, const char *iProcessLabel=0)
Definition: Handle.h:94
Event const & toBegin()
Go to the very first Event.
Definition: Event.cc:213
list denominator
Definition: cuy.py:484
bool to(Long64_t iIndex)
Go to the event at index iIndex.
Definition: Event.cc:183
How EventSelector::AcceptEvent() decides whether to accept an event for output otherwise it is excluding the probing of A single or multiple positive and the trigger will pass if any such matching triggers are PASS or EXCEPTION[A criterion thatmatches no triggers at all is detected and causes a throw.] A single negative with an expectation of appropriate bit checking in the decision and the trigger will pass if any such matching triggers are FAIL or EXCEPTION A wildcarded negative criterion that matches more than one trigger in the trigger but the state exists so we define the behavior If all triggers are the negative crieriion will lead to accepting the event(this again matches the behavior of"!*"before the partial wildcard feature was incorporated).The per-event"cost"of each negative criterion with multiple relevant triggers is about the same as!*was in the past
virtual bool atEnd() const
Definition: Event.cc:256
#define fwLog(_level_)
Definition: fwLog.h:50
std::string const & triggerName(unsigned int index) const
Definition: TriggerNames.cc:27
FWStringParameter m_process
edm::EventID id() const
Definition: EventBase.h:56
FWTriggerTableViewTableManager * m_tableManager