Class Reference for E1039 Core & Analysis Software
SQSpill_v2.cxx
Go to the documentation of this file.
1 /*
2  * SQSpill_v2.C
3  *
4  * Created on: Oct 29, 2017
5  * Author: yuhw
6  */
7 #include "SQSpill_v2.h"
8 #include "SQStringMap_v1.h"
9 #include <limits>
10 #include <cmath>
11 using namespace std;
12 
14 
16  _run_id(std::numeric_limits<int>::max()),
17  _spill_id(std::numeric_limits<int>::max()),
18  _target_pos(std::numeric_limits<short>::max()),
19  _bos_coda_id (std::numeric_limits<int>::max()),
20  _bos_vme_time(std::numeric_limits<int>::max()),
21  _eos_coda_id (std::numeric_limits<int>::max()),
22  _eos_vme_time(std::numeric_limits<int>::max()),
23  _bos_scaler_list(new SQStringMap_v1()),
24  _eos_scaler_list(new SQStringMap_v1()),
25  _slow_cont_list(new SQStringMap_v1())
26 {}
27 
29 {
30  delete _bos_scaler_list;
31  delete _eos_scaler_list;
32  delete _slow_cont_list;
33 }
34 
35 void SQSpill_v2::identify(ostream& os) const {
36  os << "---SQSpill_v2--------------------" << endl;
37  os << " runID: " << get_run_id() << endl;
38  os << " spillID: " << get_spill_id() << endl;
39  os << " liveProton: " << get_target_pos() << endl;
40  os << "---------------------------------" << endl;
41 
42  return;
43 }
44 
45 int SQSpill_v2::isValid() const {
46  if (_run_id == std::numeric_limits<int>::max()) return 0;
47  if (_spill_id == std::numeric_limits<int>::max()) return 0;
48  if (_target_pos == std::numeric_limits<short>::max()) return 0;
49  return 1;
50 }
51 
52 
ClassImp(SQSpill_v2)
void identify(std::ostream &os=std::cout) const
Definition: SQSpill_v2.cxx:35
virtual ~SQSpill_v2()
Definition: SQSpill_v2.cxx:28
int isValid() const
isValid returns non zero if object contains vailid data
Definition: SQSpill_v2.cxx:45
virtual int get_run_id() const
Return the run ID when this spill was taken.
Definition: SQSpill_v2.h:25
virtual int get_spill_id() const
Return the spill ID.
Definition: SQSpill_v2.h:28
virtual short get_target_pos() const
Return the target position in this spill.
Definition: SQSpill_v2.h:31