Class Reference for E1039 Core & Analysis Software
SQHit_v1.cxx
Go to the documentation of this file.
1 /*
2  * SQHit_v1.C
3  *
4  * Created on: Oct 29, 2017
5  * Author: yuhw@nmsu.edu
6  */
7 #include "SQHit_v1.h"
8 
9 #include <limits>
10 #include <cmath>
11 
12 using namespace std;
13 
15 
17  : _hit_id(std::numeric_limits<int>::max()),
18  _detector_id(std::numeric_limits<short>::max()),
19  _element_id(std::numeric_limits<short>::max()),
20  _level(std::numeric_limits<short>::max()),
21  _tdc_time(NAN),
22  _drift_distance(NAN),
23  _pos(NAN),
24  _flag(0)
25 {}
26 
27 void SQHit_v1::identify(ostream& os) const {
28  os << "---SQHit_v1--------------------" << endl;
29  os << " hitID: " << get_hit_id() << endl;
30  os << " detectorID: " << get_detector_id() << " elementID: "<< get_element_id() << " level: "<< get_level() << endl;
31  os
32  << " tdcTime: " << get_tdc_time()
33  << " driftDistance: " << get_drift_distance()
34  << " pos: " << get_pos()
35  << endl;
36  os
37  << " inTime: " << is_in_time()
38  << " masked: " << is_hodo_mask()
39  << " is_trigger_mask: " << is_trigger_mask()
40  << endl;
41  os << "---------------------------------" << endl;
42 
43  return;
44 }
45 
46 int SQHit_v1::isValid() const {
47  if (_hit_id == std::numeric_limits<int>::max()) return 0;
48  if (_detector_id == std::numeric_limits<short>::max()) return 0;
49  if (_element_id == std::numeric_limits<short>::max()) return 0;
50  if (_level == std::numeric_limits<short>::max()) return 0;
51  if (isnan(_tdc_time)) return 0;
52  if (isnan(_drift_distance)) return 0;
53  //if (isnan(_pos)) return 0;
54  return 1;
55 }
56 
57 
ClassImp(SQHit_v1)
void identify(std::ostream &os=std::cout) const
Definition: SQHit_v1.cxx:27
virtual short get_level() const
Return the trigger level of this hit. Meaningful only if this hit is of V1495 TDC.
Definition: SQHit_v1.h:42
virtual bool is_hodo_mask() const
Return 'true' if this hit is accepted (or masked out?) by the hodoscope masking. Meaningful only if t...
Definition: SQHit_v1.h:57
virtual float get_pos() const
Return the absolute position of this hit. Probably the value is not properly set at present.
Definition: SQHit_v1.h:51
virtual short get_detector_id() const
Return the detector ID of this hit.
Definition: SQHit_v1.h:36
virtual float get_tdc_time() const
Return the TDC time (nsec) of this hit.
Definition: SQHit_v1.h:45
SQHit_v1()
Definition: SQHit_v1.cxx:16
virtual float get_drift_distance() const
Return the drift distance of this hit. Probably the value is not properly set at present....
Definition: SQHit_v1.h:48
virtual bool is_in_time() const
Return 'true' if this hit is in the time window.
Definition: SQHit_v1.h:54
virtual short get_element_id() const
Return the element ID of this hit.
Definition: SQHit_v1.h:39
virtual int get_hit_id() const
Return the ID of this hit.
Definition: SQHit_v1.h:33
virtual bool is_trigger_mask() const
Return 'true' if this hit is accepted (or masked out?) by the trigger-road masking....
Definition: SQHit_v1.h:60
int isValid() const
isValid returns non zero if object contains vailid data
Definition: SQHit_v1.cxx:46