Class Reference for E1039 Core & Analysis Software
SQHardEvent_v1.cxx
Go to the documentation of this file.
1 #include <climits>
2 #include "SQHardEvent_v1.h"
3 using namespace std;
4 
6 
8  : _coda_event_id (INT_MAX)
9  , _vme_time (INT_MAX)
10  , _flag_v1495 (SHRT_MAX)
11  , _n_board_qie (SHRT_MAX)
12  , _n_board_v1495 (SHRT_MAX)
13  , _n_board_taiwan(SHRT_MAX)
14  , _n_board_trig_b(SHRT_MAX)
15  , _n_board_trig_c(SHRT_MAX)
16 {
17  memset(_raw_matrix , 0, sizeof(_raw_matrix));
18  memset(_after_inh_matrix, 0, sizeof(_after_inh_matrix));
19 }
20 
22 {
23  Reset();
24 }
25 
27 {
28  _coda_event_id = INT_MAX;
29  _vme_time = INT_MAX;
30  _flag_v1495 = SHRT_MAX;
31  _n_board_qie = SHRT_MAX;
32  _n_board_v1495 = SHRT_MAX;
33  _n_board_taiwan = SHRT_MAX;
34  _n_board_trig_b = SHRT_MAX;
35  _n_board_trig_c = SHRT_MAX;
36  memset(_raw_matrix , 0, sizeof(_raw_matrix));
37  memset(_after_inh_matrix, 0, sizeof(_after_inh_matrix));
38 }
39 
40 int SQHardEvent_v1::get_raw_matrix(const unsigned short i) const
41 {
42  if (i < 5) return _raw_matrix[i];
43  return INT_MAX;
44 }
45 
46 void SQHardEvent_v1::set_raw_matrix(const unsigned short i, const bool a)
47 {
48  if (i < 5) _raw_matrix[i] = a;
49  else cout << "SQHardEvent_v1::set_raw_matrix: i>=5" << endl;
50 }
51 
52 int SQHardEvent_v1::get_after_inh_matrix(const unsigned short i) const
53 {
54  if (i < 5) return _after_inh_matrix[i];
55  return INT_MAX;
56 }
57 
58 void SQHardEvent_v1::set_after_inh_matrix(const unsigned short i, const bool a)
59 {
60  if (i < 5) _after_inh_matrix[i] = a;
61  else cout << "SQHardEvent_v1::set_after_inh_matrix: i>=5" << endl;
62 }
63 
64 void SQHardEvent_v1::identify(std::ostream& os) const
65 {
66  os << "---SQHardEvent_v1::identify:--------------------------\n"
67  << "codaEventID: " << _coda_event_id << "\n"
68  << "raw_matrix: ";
69  for (int i = 0; i < 5; ++i) os << " " << _raw_matrix[i];
70  os << "\n"
71  << "after_inh_matrix: ";
72  for (int i = 0; i < 5; ++i) os << " " << _after_inh_matrix[i];
73  os << endl;
74 }
ClassImp(SQHardEvent_v1) SQHardEvent_v1
virtual void set_after_inh_matrix(const unsigned short i, const bool a)
virtual ~SQHardEvent_v1()
virtual int get_raw_matrix(const unsigned short i) const
Return the raw count of the selected trigger channel.
virtual void Reset()
Clear Event.
virtual int get_after_inh_matrix(const unsigned short i) const
Return the after-inhibited count of the selected trigger channel.
virtual void set_raw_matrix(const unsigned short i, const bool a)
virtual void identify(std::ostream &os=std::cout) const