Class Reference for E1039 Core & Analysis Software
E906SpillSelector.cxx
Go to the documentation of this file.
1 #include <fstream>
2 #include <sstream>
3 #include <TSystem.h>
4 #include <TH1D.h>
6 #include <phool/getClass.h>
8 #include "E906SpillSelector.h"
9 using namespace std;
10 
11 E906SpillSelector::E906SpillSelector(const std::string &name)
12  : SubsysReco(name)
13  , m_fn_list("$E1039_RESOURCE/spill/e906/R009/good_spill_fy2017.txt")
14  , m_fn_out("")
15  , m_h1_evt_cnt(0)
16  , m_evt(0)
17 {
18  ;
19 }
20 
22 {
23  if (m_h1_evt_cnt) delete m_h1_evt_cnt;
24 }
25 
27 {
28  char* path = gSystem->ExpandPathName(m_fn_list.c_str());
29  if (Verbosity() > 0) {
30  cout << Name() << ": Read '" << path << "'." << endl;
31  }
32  ifstream ifs(path);
33  int sp;
34  while (ifs >> sp) m_list_spill_ok.push_back(sp);
35  ifs.close();
36  if (Verbosity() > 0) {
37  cout << " N of good spills = " << m_list_spill_ok.size() << "." << endl;
38  }
39  if (m_list_spill_ok.size() == 0) {
40  cout << Name() << ": No good spill was found. Abort." << endl;
41  exit(1);
42  }
43  delete path;
45 }
46 
48 {
49  m_evt = findNode::getClass<SQEvent>(topNode, "SQEvent");
50  if (!m_evt) return Fun4AllReturnCodes::ABORTEVENT;
51 
52  if (m_fn_out != "") {
53  m_h1_evt_cnt = new TH1D("h1_evt_cnt", "", 2, 0.5, 2.5);
54  m_h1_evt_cnt->GetXaxis()->SetBinLabel(1, "All");
55  m_h1_evt_cnt->GetXaxis()->SetBinLabel(2, "Accepted");
56  }
57 
59 }
60 
62 {
63  m_h1_evt_cnt->Fill(1);
64  int spill_id = m_evt->get_spill_id();
65  if (find(m_list_spill_ok.begin(), m_list_spill_ok.end(), spill_id) == m_list_spill_ok.end()) return Fun4AllReturnCodes::ABORTEVENT;
66  m_h1_evt_cnt->Fill(2);
68 }
69 
71 {
72  if (m_h1_evt_cnt) {
73  ofstream ofs(m_fn_out.c_str());
74  for (int ib = 1; ib <= m_h1_evt_cnt->GetNbinsX(); ib++) {
75  ofs << m_h1_evt_cnt->GetXaxis()->GetBinLabel(ib) << "\t"
76  << m_h1_evt_cnt->GetBinContent(ib) << "\n";
77  }
78  ofs.close();
79  }
81 }
int Init(PHCompositeNode *topNode)
int End(PHCompositeNode *topNode)
Called at the end of all processing.
int InitRun(PHCompositeNode *topNode)
int process_event(PHCompositeNode *topNode)
E906SpillSelector(const std::string &name="E906SpillSelector")
virtual const std::string Name() const
Returns the name of this module.
Definition: Fun4AllBase.h:23
virtual int Verbosity() const
Gets the verbosity of this module.
Definition: Fun4AllBase.h:64
virtual int get_spill_id() const =0
Return the spill ID.