Class Reference for E1039 Core & Analysis Software
SQHit.h
Go to the documentation of this file.
1 /*
2  * SQHit.h
3  *
4  * Created on: Oct 29, 2017
5  * Author: yuhw
6  */
7 
8 #ifndef _H_SQHit_H_
9 #define _H_SQHit_H_
10 
11 #include <phool/PHObject.h>
12 #include "g4main/PHG4HitDefs.h"
13 
14 #include <iostream>
15 #include <limits>
16 #include <string>
17 #include <map>
18 
20 class SQHit : public PHObject {
21 
22 public:
23  typedef std::map<short, float> CellMap;
24 
25  SQHit() {}
26  virtual ~SQHit() {}
27 
28  // PHObject virtual overloads
29 
30  virtual void identify(std::ostream& os = std::cout) const {
31  os << "---SQHit base class------------" << std::endl;
32  }
33  virtual void Reset() {};
34  virtual int isValid() const {return 0;}
35  virtual SQHit* Clone() const {return NULL;}
36 
37  // digitized hit info
38 
39  virtual int get_hit_id() const {return std::numeric_limits<int>::max();}
40  virtual void set_hit_id(const int a) {}
41 
42  virtual short get_detector_id() const {return std::numeric_limits<short>::max();}
43  virtual void set_detector_id(const short a) {}
44 
45  virtual short get_element_id() const {return std::numeric_limits<short>::max();}
46  virtual void set_element_id(const short a) {}
47 
48  virtual short get_tower_id() const {return std::numeric_limits<short>::max();}
49  virtual void set_tower_id(const short a) {}
50 
51  virtual short get_level() const {return std::numeric_limits<short>::max();}
52  virtual void set_level(const short a) {}
53 
54  virtual float get_tdc_time() const {return std::numeric_limits<float>::max();}
55  virtual void set_tdc_time(const float a) {}
56 
57  virtual float get_drift_distance() const {return std::numeric_limits<float>::max();}
58  virtual void set_drift_distance(const float a) {}
59 
60  virtual float get_pos() const {return std::numeric_limits<float>::max();}
61  virtual void set_pos(const float a) {}
62 
63  virtual float get_edep() const {return std::numeric_limits<float>::max();}
64  virtual void set_edep(const float a) {}
65 
66  virtual int get_track_id() const {return std::numeric_limits<int>::max();}
67  virtual void set_track_id(const int a) {}
68 
69  virtual PHG4HitDefs::keytype get_g4hit_id() const {return std::numeric_limits<PHG4HitDefs::keytype>::max();}
70  virtual void set_g4hit_id(const PHG4HitDefs::keytype a) {}
71 
72  virtual float get_truth_x() const {return std::numeric_limits<float>::max();}
73  virtual void set_truth_x(const float a) {}
74 
75  virtual float get_truth_y() const {return std::numeric_limits<float>::max();}
76  virtual void set_truth_y(const float a) {}
77 
78  virtual float get_truth_z() const {return std::numeric_limits<float>::max();}
79  virtual void set_truth_z(const float a) {}
80 
81  virtual float get_truth_px() const {return std::numeric_limits<float>::max();}
82  virtual void set_truth_px(const float a) {}
83 
84  virtual float get_truth_py() const {return std::numeric_limits<float>::max();}
85  virtual void set_truth_py(const float a) {}
86 
87  virtual float get_truth_pz() const {return std::numeric_limits<float>::max();}
88  virtual void set_truth_pz(const float a) {}
89 
90  virtual bool is_in_time() const {return false;}
91  virtual void set_in_time(const bool a) {}
92 
93  virtual bool is_hodo_mask() const {return false;}
94  virtual void set_hodo_mask(const bool a) {}
95 
96  virtual bool is_trigger_mask() const {return false;}
97  virtual void set_trigger_mask(const bool a) {}
98 
99  virtual unsigned int get_n_cells() const { return std::numeric_limits<int>::max(); }
100  virtual CellMap get_cells() const { CellMap none; return none; }
101  virtual float get_cell(unsigned int i) const { return std::numeric_limits<float>::max(); }
102  virtual void add_cell(unsigned int i, float a) {}
103 
105  {
106  InTime = 1<<0,
107  HodoMask = 1<<1,
108  TriggerMask = 1<<2
109  };
110 
111 //protected:
112 // SQHit() {}
113 
114 private:
115 
116  ClassDef(SQHit, 1);
117 };
118 
119 
120 
121 
122 #endif /* _H_SQHit_H_ */
#define NULL
Definition: Pdb.h:9
An SQ interface class to hold one detector hit.
Definition: SQHit.h:20
virtual void set_truth_x(const float a)
Definition: SQHit.h:73
virtual bool is_trigger_mask() const
Return 'true' if this hit is accepted (or masked out?) by the trigger-road masking....
Definition: SQHit.h:96
virtual float get_truth_z() const
Return the true z-position of this hit. Meaningful only if this hit is of MC.
Definition: SQHit.h:78
virtual float get_drift_distance() const
Return the drift distance of this hit. Probably the value is not properly set at present....
Definition: SQHit.h:57
virtual float get_edep() const
Not valid in E1039. To be deleted.
Definition: SQHit.h:63
virtual ~SQHit()
Definition: SQHit.h:26
virtual void identify(std::ostream &os=std::cout) const
Definition: SQHit.h:30
virtual short get_level() const
Return the trigger level of this hit. Meaningful only if this hit is of V1495 TDC.
Definition: SQHit.h:51
virtual void set_truth_z(const float a)
Definition: SQHit.h:79
virtual void set_element_id(const short a)
Definition: SQHit.h:46
virtual float get_truth_pz() const
Return the true z-momentum of this hit. Meaningful only if this hit is of MC.
Definition: SQHit.h:87
virtual short get_tower_id() const
Not valid in E1039. To be deleted.
Definition: SQHit.h:48
virtual void add_cell(unsigned int i, float a)
Definition: SQHit.h:102
virtual void set_level(const short a)
Definition: SQHit.h:52
virtual void set_hit_id(const int a)
Definition: SQHit.h:40
virtual void set_truth_y(const float a)
Definition: SQHit.h:76
virtual float get_truth_y() const
Return the true y-position of this hit. Meaningful only if this hit is of MC.
Definition: SQHit.h:75
virtual bool is_in_time() const
Return 'true' if this hit is in the time window.
Definition: SQHit.h:90
virtual void set_pos(const float a)
Definition: SQHit.h:61
virtual float get_truth_px() const
Return the true x-momentum of this hit. Meaningful only if this hit is of MC.
Definition: SQHit.h:81
virtual float get_pos() const
Return the absolute position of this hit. Probably the value is not properly set at present.
Definition: SQHit.h:60
virtual PHG4HitDefs::keytype get_g4hit_id() const
Return the Geant-hit ID associated with this hit.
Definition: SQHit.h:69
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.h:93
virtual void set_truth_px(const float a)
Definition: SQHit.h:82
virtual void set_detector_id(const short a)
Definition: SQHit.h:43
virtual CellMap get_cells() const
Return the list of all cells included in this hit.
Definition: SQHit.h:100
SQHit()
Definition: SQHit.h:25
virtual void set_trigger_mask(const bool a)
Definition: SQHit.h:97
virtual void set_tdc_time(const float a)
Definition: SQHit.h:55
virtual void set_track_id(const int a)
Definition: SQHit.h:67
virtual void set_truth_py(const float a)
Definition: SQHit.h:85
virtual void set_edep(const float a)
Definition: SQHit.h:64
virtual void set_tower_id(const short a)
Definition: SQHit.h:49
virtual short get_element_id() const
Return the element ID of this hit.
Definition: SQHit.h:45
virtual void set_hodo_mask(const bool a)
Definition: SQHit.h:94
virtual int get_hit_id() const
Return the ID of this hit.
Definition: SQHit.h:39
virtual float get_tdc_time() const
Return the TDC time (nsec) of this hit.
Definition: SQHit.h:54
virtual float get_cell(unsigned int i) const
Return the 'edep' value of the i-th cell.
Definition: SQHit.h:101
virtual void set_drift_distance(const float a)
Definition: SQHit.h:58
std::map< short, float > CellMap
key -> plateID, float -> edep
Definition: SQHit.h:23
HitQuality
Definition: SQHit.h:105
@ HodoMask
Definition: SQHit.h:107
@ InTime
Definition: SQHit.h:106
@ TriggerMask
Definition: SQHit.h:108
virtual void set_g4hit_id(const PHG4HitDefs::keytype a)
Definition: SQHit.h:70
virtual float get_truth_py() const
Return the true y-momentum of this hit. Meaningful only if this hit is of MC.
Definition: SQHit.h:84
virtual float get_truth_x() const
Return the true x-position of this hit. Meaningful only if this hit is of MC.
Definition: SQHit.h:72
virtual int isValid() const
isValid returns non zero if object contains vailid data
Definition: SQHit.h:34
virtual unsigned int get_n_cells() const
Return the number of cells included in this hit.
Definition: SQHit.h:99
virtual short get_detector_id() const
Return the detector ID of this hit.
Definition: SQHit.h:42
virtual void Reset()
Clear Event.
Definition: SQHit.h:33
virtual SQHit * Clone() const
Definition: SQHit.h:35
virtual int get_track_id() const
Return the track ID associated with this hit. Probably the value is not properly set at present.
Definition: SQHit.h:66
virtual void set_truth_pz(const float a)
Definition: SQHit.h:88
virtual void set_in_time(const bool a)
Definition: SQHit.h:91
unsigned int keytype
Definition: PHG4HitDefs.h:8