Class Reference for E1039 Core & Analysis Software
FilterE906Nim3.cc
Go to the documentation of this file.
1 #include <fstream>
2 #include <algorithm>
3 #include <phool/getClass.h>
6 #include "FilterE906Nim3.h"
7 using namespace std;
8 
9 FilterE906Nim3::FilterE906Nim3(const std::string name)
10  : SubsysReco(name)
11  , m_list_name("list_spill_good.txt")
12  , m_n_evt_all (0)
13  , m_n_evt_spill(0)
14  , m_n_evt_nim3 (0)
15 {
16  ;
17 }
18 
20 {
21  cout << "FilterE906Nim3::Init(): Read the good spill list from '" << m_list_name << "'.\n";
22  ifstream ifs(m_list_name.c_str());
23  if (! ifs.is_open()) {
24  cout << "!!ERROR!! Cannot open the file. Abort." << endl;
25  exit(1);
26  }
27  int sp;
28  while (ifs >> sp) m_list_spill_ok.push_back(sp);
29  ifs.close();
30  if (m_list_spill_ok.size() == 0) {
31  cout << "!!ERROR!! No good spill was found. Abort." << endl;
32  exit(1);
33  }
35 }
36 
38 {
39  mi_evt = findNode::getClass<SQEvent>(topNode, "SQEvent");
40  if (!mi_evt) return Fun4AllReturnCodes::ABORTEVENT;
42 }
43 
45 {
46  m_n_evt_all++;
47  int spill_id = mi_evt->get_spill_id();
48  if (find(m_list_spill_ok.begin(), m_list_spill_ok.end(), spill_id) == m_list_spill_ok.end()) return Fun4AllReturnCodes::ABORTEVENT;
49  m_n_evt_spill++;
51  m_n_evt_nim3++;
53 }
54 
56 {
57  ofstream ofs("stat.txt");
58  ofs << m_n_evt_all << "\n" << m_n_evt_spill << "\n" << m_n_evt_nim3 << "\n";
59  ofs.close();
61 }
int Init(PHCompositeNode *topNode)
int End(PHCompositeNode *topNode)
Called at the end of all processing.
int process_event(PHCompositeNode *topNode)
int InitRun(PHCompositeNode *topNode)
FilterE906Nim3(const std::string name="FilterE906Nim3")
@ NIM3
Definition: SQEvent.h:24
virtual bool get_trigger(const SQEvent::TriggerMask i) const =0
Return the trigger bit (fired or not) of the selected trigger channel.
virtual int get_spill_id() const =0
Return the spill ID.