Class Reference for E1039 Core & Analysis Software
SQRun_v2.h
Go to the documentation of this file.
1 /*
2  * SQRun_v2.h
3  *
4  * Created on: Oct 29, 2017
5  * Author: yuhw
6  */
7 
8 #ifndef _H_SQRun_v2_H_
9 #define _H_SQRun_v2_H_
10 
11 #include <phool/PHObject.h>
12 
13 #include <map>
14 #include <iostream>
15 #include <limits>
16 #include <climits>
17 
18 #include "SQRun.h"
19 
20 class SQRun_v2: public SQRun {
21 
22 public:
23 
25 
26  virtual ~SQRun_v2();
27 
28  void Reset();
29 
30  virtual void identify(std::ostream& os = std::cout) const;
31 
32  virtual int get_run_id() const {return _run_id;}
33  virtual void set_run_id(const int a) {_run_id = a;}
34 
35  virtual int get_unix_time_begin() const { return _utime_b; }
36  virtual void set_unix_time_begin(const int a) { _utime_b = a; }
37 
38  virtual int get_unix_time_end() const { return _utime_e; }
39  virtual void set_unix_time_end(const int a) { _utime_e = a; }
40 
41  virtual int get_fpga_enabled(const int chan) const { return _fpga_enabled[chan]; }
42  virtual void set_fpga_enabled(const int chan, const int a) { _fpga_enabled[chan] = a; }
43 
44  virtual int get_nim_enabled(const int chan) const { return _nim_enabled[chan]; }
45  virtual void set_nim_enabled(const int chan, const int a) { _nim_enabled[chan] = a; }
46 
47  virtual int get_fpga_prescale(const int chan) const { return _fpga_prescale[chan]; }
48  virtual void set_fpga_prescale(const int chan, const int a) { _fpga_prescale[chan] = a; }
49 
50  virtual int get_nim_prescale(const int chan) const { return _nim_prescale[chan]; }
51  virtual void set_nim_prescale(const int chan, const int a) { _nim_prescale[chan] = a; }
52 
53  virtual int get_v1495_id(const int chan) const { return _v1495_id[chan]; }
54  virtual void set_v1495_id(const int chan, const int id) { _v1495_id[chan] = id; }
55 
56  virtual std::string get_run_desc() const { return _run_desc; }
57  virtual void set_run_desc(const std::string a) { _run_desc = a; }
58 
59  virtual int get_n_fee_event() const { return _n_fee_event; }
60  virtual void set_n_fee_event(const int a) { _n_fee_event = a; }
61 
62  virtual int get_n_fee_prescale() const { return _n_fee_prescale; }
63  virtual void set_n_fee_prescale(const int a) { _n_fee_prescale = a; }
64 
65  virtual int get_n_run_desc() const { return _n_run_desc; }
66  virtual void set_n_run_desc(const int a) { _n_run_desc = a; }
67 
68  virtual int get_n_spill() const { return _n_spill; }
69  virtual void set_n_spill(const int a) { _n_spill = a; }
70 
71  virtual int get_n_evt_all() const { return _n_evt_all; }
72  virtual void set_n_evt_all(const int a) { _n_evt_all = a; }
73 
74  virtual int get_n_evt_dec() const { return _n_evt_dec; }
75  virtual void set_n_evt_dec(const int a) { _n_evt_dec = a; }
76 
77  virtual int get_n_phys_evt() const { return _n_phys_evt; }
78  virtual void set_n_phys_evt(const int a) { _n_phys_evt = a; }
79 
80  virtual int get_n_phys_evt_bad() const { return _n_phys_evt_bad; }
81  virtual void set_n_phys_evt_bad(const int a) { _n_phys_evt_bad = a; }
82 
83  virtual int get_n_flush_evt() const { return _n_flush_evt; }
84  virtual void set_n_flush_evt(const int a) { _n_flush_evt = a; }
85 
86  virtual int get_n_flush_evt_bad() const { return _n_flush_evt_bad; }
87  virtual void set_n_flush_evt_bad(const int a) { _n_flush_evt_bad = a; }
88 
89  virtual int get_n_hit() const { return _n_hit; }
90  virtual void set_n_hit(const int a) { _n_hit = a; }
91 
92  virtual int get_n_t_hit() const { return _n_t_hit; }
93  virtual void set_n_t_hit(const int a) { _n_t_hit = a; }
94 
95  virtual int get_n_hit_bad() const { return _n_hit_bad; }
96  virtual void set_n_hit_bad(const int a) { _n_hit_bad = a; }
97 
98  virtual int get_n_t_hit_bad() const { return _n_t_hit_bad; }
99  virtual void set_n_t_hit_bad(const int a) { _n_t_hit_bad = a; }
100 
101  virtual int get_n_v1495() const { return _n_v1495; }
102  virtual void set_n_v1495(const int a) { _n_v1495 = a; }
103 
104  virtual int get_n_v1495_d1ad() const { return _n_v1495_d1ad; }
105  virtual void set_n_v1495_d1ad(const int a) { _n_v1495_d1ad = a; }
106 
107  virtual int get_n_v1495_d2ad() const { return _n_v1495_d2ad; }
108  virtual void set_n_v1495_d2ad(const int a) { _n_v1495_d2ad = a; }
109 
110  virtual int get_n_v1495_d3ad() const { return _n_v1495_d3ad; }
111  virtual void set_n_v1495_d3ad(const int a) { _n_v1495_d3ad = a; }
112 
113 protected:
114  int _run_id;
115 
116  int _utime_b; //< Unix time of run beginning
117  int _utime_e; //< Unix time of run end
118 
119  int _fpga_enabled [5];
120  int _nim_enabled [5];
123  int _v1495_id[5];
124 
125  std::string _run_desc;
126 
130  int _n_spill;
131  int _n_evt_all; //< N of all real (i.e. triggered) events
132  int _n_evt_dec; //< N of decoded real events
133  int _n_phys_evt; //< N of Coda standard-physics events
135  int _n_flush_evt; //< N of Coda flush events
137  int _n_hit; //< N of Taiwan-TDC hits
138  int _n_t_hit; //< N of v1495-TDC hits
139  int _n_hit_bad; //< N of bad hits
140  int _n_t_hit_bad; //< N of bad t-hits. Not implemented
141  int _n_v1495; //< N of all v1495 events
142  int _n_v1495_d1ad;//< N of d1ad v1495 events
143  int _n_v1495_d2ad;//< N of d2ad v1495 events
144  int _n_v1495_d3ad;//< N of d3ad v1495 events
145 
147 };
148 
149 #endif /* _H_SQRun_v2_H_ */
int _utime_e
Definition: SQRun_v2.h:117
virtual int get_n_t_hit_bad() const
Return the number of bad V1495-TDC (i.e. trigger) hits.
Definition: SQRun_v2.h:98
int _n_run_desc
Definition: SQRun_v2.h:129
virtual int get_run_id() const
Return the run ID.
Definition: SQRun_v2.h:32
virtual void set_run_id(const int a)
Definition: SQRun_v2.h:33
virtual int get_n_v1495_d3ad() const
Return the number of V1495 events having 'd3ad'.
Definition: SQRun_v2.h:110
virtual void set_n_phys_evt(const int a)
Definition: SQRun_v2.h:78
virtual void set_n_run_desc(const int a)
Definition: SQRun_v2.h:66
virtual int get_fpga_enabled(const int chan) const
Return 'true' if the given channel ('chan') of the FPGA trigger was enabled in this run.
Definition: SQRun_v2.h:41
virtual int get_n_flush_evt() const
Return the number of all FLUSH events.
Definition: SQRun_v2.h:83
virtual void set_n_v1495_d1ad(const int a)
Definition: SQRun_v2.h:105
int _n_flush_evt
Definition: SQRun_v2.h:135
virtual void set_n_hit_bad(const int a)
Definition: SQRun_v2.h:96
virtual void set_v1495_id(const int chan, const int id)
Definition: SQRun_v2.h:54
int _utime_b
Definition: SQRun_v2.h:116
int _fpga_prescale[5]
Definition: SQRun_v2.h:121
int _v1495_id[5]
Definition: SQRun_v2.h:123
virtual void set_n_evt_dec(const int a)
Definition: SQRun_v2.h:75
virtual ~SQRun_v2()
Definition: SQRun_v2.cxx:48
virtual int get_n_v1495_d1ad() const
Return the number of V1495 events having 'd1ad'.
Definition: SQRun_v2.h:104
int _n_hit_bad
Definition: SQRun_v2.h:139
int _fpga_enabled[5]
Definition: SQRun_v2.h:119
int _n_phys_evt
Definition: SQRun_v2.h:133
virtual void set_n_v1495_d3ad(const int a)
Definition: SQRun_v2.h:111
virtual int get_n_phys_evt() const
Return the number of all PHYSICS events.
Definition: SQRun_v2.h:77
virtual void set_n_flush_evt(const int a)
Definition: SQRun_v2.h:84
virtual void set_nim_enabled(const int chan, const int a)
Definition: SQRun_v2.h:45
virtual int get_n_v1495() const
Return the number of all V1495 events.
Definition: SQRun_v2.h:101
int _n_fee_prescale
Definition: SQRun_v2.h:128
virtual int get_n_fee_event() const
Return the number of FEE events.
Definition: SQRun_v2.h:59
int _n_spill
Definition: SQRun_v2.h:130
int _n_evt_all
Definition: SQRun_v2.h:131
virtual void set_n_flush_evt_bad(const int a)
Definition: SQRun_v2.h:87
virtual void set_unix_time_begin(const int a)
Definition: SQRun_v2.h:36
virtual int get_n_hit_bad() const
Return the number of bad Taiwan-TDC hits.
Definition: SQRun_v2.h:95
int _n_v1495_d1ad
Definition: SQRun_v2.h:142
void Reset()
Clear Event.
Definition: SQRun_v2.cxx:52
virtual int get_n_run_desc() const
Return the number of run-description events.
Definition: SQRun_v2.h:65
virtual int get_n_spill() const
Return the number of spill events.
Definition: SQRun_v2.h:68
int _n_evt_dec
Definition: SQRun_v2.h:132
virtual int get_n_fee_prescale() const
Return the number of FEE-prescale events.
Definition: SQRun_v2.h:62
virtual void set_n_phys_evt_bad(const int a)
Definition: SQRun_v2.h:81
ClassDef(SQRun_v2, 1)
virtual int get_n_hit() const
Return the number of all Taiwan-TDC hits.
Definition: SQRun_v2.h:89
virtual int get_n_t_hit() const
Return the number of all V1495-TDC (i.e. trigger) hits.
Definition: SQRun_v2.h:92
int _n_v1495_d2ad
Definition: SQRun_v2.h:143
virtual int get_n_flush_evt_bad() const
Return the number of bad FLUSH events.
Definition: SQRun_v2.h:86
virtual int get_unix_time_begin() const
Return the Unix time when this run began.
Definition: SQRun_v2.h:35
virtual void set_fpga_prescale(const int chan, const int a)
Definition: SQRun_v2.h:48
virtual void set_n_evt_all(const int a)
Definition: SQRun_v2.h:72
virtual int get_n_phys_evt_bad() const
Return the number of bad PHYSICS events.
Definition: SQRun_v2.h:80
virtual int get_v1495_id(const int chan) const
Return the ID of the chan-th V1495 boards.
Definition: SQRun_v2.h:53
int _n_t_hit
Definition: SQRun_v2.h:138
virtual int get_n_evt_dec() const
Return the number of decoded events. The online decoding usually skips a part of events in order to f...
Definition: SQRun_v2.h:74
virtual void identify(std::ostream &os=std::cout) const
Definition: SQRun_v2.cxx:56
virtual void set_n_fee_event(const int a)
Definition: SQRun_v2.h:60
virtual void set_nim_prescale(const int chan, const int a)
Definition: SQRun_v2.h:51
virtual void set_n_spill(const int a)
Definition: SQRun_v2.h:69
int _n_fee_event
Definition: SQRun_v2.h:127
virtual int get_fpga_prescale(const int chan) const
Return the prescale factor of the given channel ('chan') of the FPGA trigger in this run.
Definition: SQRun_v2.h:47
virtual void set_n_t_hit_bad(const int a)
Definition: SQRun_v2.h:99
int _n_phys_evt_bad
Definition: SQRun_v2.h:134
int _n_flush_evt_bad
Definition: SQRun_v2.h:136
virtual void set_n_hit(const int a)
Definition: SQRun_v2.h:90
virtual int get_n_v1495_d2ad() const
Return the number of V1495 events having 'd2ad'.
Definition: SQRun_v2.h:107
virtual int get_nim_prescale(const int chan) const
Return the prescale factor of the given channel ('chan') of the NIM trigger in this run.
Definition: SQRun_v2.h:50
virtual int get_n_evt_all() const
Return the number of all recorded events.
Definition: SQRun_v2.h:71
virtual void set_n_v1495(const int a)
Definition: SQRun_v2.h:102
std::string _run_desc
Definition: SQRun_v2.h:125
int _n_v1495_d3ad
Definition: SQRun_v2.h:144
virtual void set_run_desc(const std::string a)
Definition: SQRun_v2.h:57
virtual void set_n_t_hit(const int a)
Definition: SQRun_v2.h:93
virtual int get_nim_enabled(const int chan) const
Return 'true' if the given channel ('chan') of the NIM trigger was enabled in this run.
Definition: SQRun_v2.h:44
virtual void set_unix_time_end(const int a)
Definition: SQRun_v2.h:39
int _n_v1495
Definition: SQRun_v2.h:141
virtual void set_fpga_enabled(const int chan, const int a)
Definition: SQRun_v2.h:42
int _run_id
Definition: SQRun_v2.h:114
virtual void set_n_fee_prescale(const int a)
Definition: SQRun_v2.h:63
int _n_hit
Definition: SQRun_v2.h:137
virtual std::string get_run_desc() const
Return the run description of this run.
Definition: SQRun_v2.h:56
virtual void set_n_v1495_d2ad(const int a)
Definition: SQRun_v2.h:108
int _nim_prescale[3]
Definition: SQRun_v2.h:122
int _n_t_hit_bad
Definition: SQRun_v2.h:140
int _nim_enabled[5]
Definition: SQRun_v2.h:120
virtual int get_unix_time_end() const
Return the Unix time when this run ended.
Definition: SQRun_v2.h:38
An SQ interface class to hold the run-level info.
Definition: SQRun.h:18