Class Reference for E1039 Core & Analysis Software
SQRun_v1.cxx
Go to the documentation of this file.
1 /*
2  * SQRun_v1.C
3  *
4  * Created on: Oct 29, 2017
5  * Author: yuhw
6  */
7 
8 
9 
10 #include "SQRun_v1.h"
11 
12 using namespace std;
13 
15 
17  _run_id(INT_MAX),
18  _utime_b(INT_MAX),
19  _utime_e(INT_MAX),
20  _run_desc(""),
21  _n_fee_event(INT_MAX),
22  _n_fee_prescale(INT_MAX),
23  _n_run_desc(INT_MAX),
24  _n_spill(INT_MAX),
25  _n_evt_all(INT_MAX),
26  _n_evt_dec(INT_MAX),
27  _n_phys_evt(INT_MAX),
28  _n_phys_evt_bad(INT_MAX),
29  _n_flush_evt(INT_MAX),
30  _n_flush_evt_bad(INT_MAX),
31  _n_hit(INT_MAX),
32  _n_t_hit(INT_MAX),
33  _n_hit_bad(INT_MAX),
34  _n_t_hit_bad(INT_MAX),
35  _n_v1495(INT_MAX),
36  _n_v1495_d1ad(INT_MAX),
37  _n_v1495_d2ad(INT_MAX),
38  _n_v1495_d3ad(INT_MAX)
39 
40 {
41  memset(_fpga_enabled , 0, sizeof(_fpga_enabled ));
42  memset( _nim_enabled , 0, sizeof( _nim_enabled ));
43  memset(_fpga_prescale, 0, sizeof(_fpga_prescale));
44  memset( _nim_prescale, 0, sizeof( _nim_prescale));
45 }
46 
48  Reset();
49 }
50 
52  return;
53 }
54 
55 void SQRun_v1::identify(std::ostream& os) const {
56  cout << "---SQRun_v1::identify:--------------------------" << endl;
57  cout
58  << "runID: " << _run_id
59  //<< "spillID: " << _spill_count
60  <<endl;
61  cout <<endl;
62  return;
63 }
ClassImp(SQRun_v1) SQRun_v1
Definition: SQRun_v1.cxx:14
int _run_id
Definition: SQRun_v1.h:111
virtual ~SQRun_v1()
Definition: SQRun_v1.cxx:47
virtual void identify(std::ostream &os=std::cout) const
Definition: SQRun_v1.cxx:55
void Reset()
Clear Event.
Definition: SQRun_v1.cxx:51