Class Reference for E1039 Core & Analysis Software
FilterByTrigger.cc
Go to the documentation of this file.
1 #include <fstream>
2 #include <sstream>
3 #include <TH1D.h>
5 #include <phool/getClass.h>
7 #include "FilterByTrigger.h"
8 using namespace std;
9 
11  : m_trig_bits(0)
12  , m_fn_out("")
13  , m_h1_evt_cnt(0)
14  , m_evt (0)
15 {
16  ;
17 }
18 
20 {
21  if (m_h1_evt_cnt) delete m_h1_evt_cnt;
22 }
23 
25 {
27 }
28 
30 {
31  m_evt = findNode::getClass<SQEvent>(topNode, "SQEvent");
32  if (!m_evt) return Fun4AllReturnCodes::ABORTEVENT;
33 
34  if (m_fn_out != "") {
35  m_h1_evt_cnt = new TH1D("h1_evt_cnt", "", 2, 0.5, 2.5);
36  m_h1_evt_cnt->GetXaxis()->SetBinLabel(1, "All");
37  m_h1_evt_cnt->GetXaxis()->SetBinLabel(2, "Accepted");
38  }
39 
41 }
42 
44 {
45  if (m_h1_evt_cnt) m_h1_evt_cnt->Fill(1);
46 
47  if ((m_evt->get_trigger() & m_trig_bits) == 0) return Fun4AllReturnCodes::ABORTEVENT;
48 
49  if (m_h1_evt_cnt) m_h1_evt_cnt->Fill(2);
51 }
52 
54 {
55  if (m_h1_evt_cnt) {
56  ofstream ofs(m_fn_out.c_str());
57  for (int ib = 1; ib <= m_h1_evt_cnt->GetNbinsX(); ib++) {
58  ofs << m_h1_evt_cnt->GetXaxis()->GetBinLabel(ib) << "\t"
59  << m_h1_evt_cnt->GetBinContent(ib) << "\n";
60  }
61  ofs.close();
62  }
64 }
65 
66 void FilterByTrigger::SetFpgaBits(const bool fpga1, const bool fpga2, const bool fpga3, const bool fpga4, const bool fpga5)
67 {
68  if (fpga1) m_trig_bits |= 0x1 << SQEvent::MATRIX1;
69  if (fpga2) m_trig_bits |= 0x1 << SQEvent::MATRIX2;
70  if (fpga3) m_trig_bits |= 0x1 << SQEvent::MATRIX3;
71  if (fpga4) m_trig_bits |= 0x1 << SQEvent::MATRIX4;
72  if (fpga5) m_trig_bits |= 0x1 << SQEvent::MATRIX5;
73 }
74 
75 void FilterByTrigger::SetNimBits(const bool nim1, const bool nim2, const bool nim3, const bool nim4, const bool nim5)
76 {
77  if (nim1) m_trig_bits |= 0x1 << SQEvent::NIM1;
78  if (nim2) m_trig_bits |= 0x1 << SQEvent::NIM2;
79  if (nim3) m_trig_bits |= 0x1 << SQEvent::NIM3;
80  if (nim4) m_trig_bits |= 0x1 << SQEvent::NIM4;
81  if (nim5) m_trig_bits |= 0x1 << SQEvent::NIM5;
82 }
int End(PHCompositeNode *topNode)
Called at the end of all processing.
void SetFpgaBits(const bool fpga1, const bool fpga2, const bool fpga3, const bool fpga4, const bool fpga5)
int InitRun(PHCompositeNode *topNode)
int process_event(PHCompositeNode *topNode)
void SetNimBits(const bool nim1, const bool nim2, const bool nim3, const bool nim4, const bool nim5)
int Init(PHCompositeNode *topNode)
virtual ~FilterByTrigger()
@ MATRIX2
Definition: SQEvent.h:28
@ NIM5
Definition: SQEvent.h:26
@ MATRIX1
Definition: SQEvent.h:27
@ NIM4
Definition: SQEvent.h:25
@ NIM2
Definition: SQEvent.h:23
@ NIM1
Definition: SQEvent.h:22
@ MATRIX3
Definition: SQEvent.h:29
@ NIM3
Definition: SQEvent.h:24
@ MATRIX4
Definition: SQEvent.h:30
@ MATRIX5
Definition: SQEvent.h:31
virtual bool get_trigger(const SQEvent::TriggerMask i) const =0
Return the trigger bit (fired or not) of the selected trigger channel.