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