Class Reference for E1039 Core & Analysis Software
SQCalMCHit_v1.h
Go to the documentation of this file.
1 #ifndef _H_SQCalMCHit_v1_H_
2 #define _H_SQCalMCHit_v1_H_
3 
4 
5 #include <phool/PHObject.h>
6 #include <iostream>
7 #include <map>
8 
9 #include "SQCalHit_v1.h"
10 
11 class SQCalMCHit_v1 : public SQCalHit_v1 {
12 
13 public:
14 
15  SQCalMCHit_v1();
16  virtual ~SQCalMCHit_v1() {}
17 
18  // PHObject virtual overloads
19  void identify(std::ostream& os = std::cout) const;
20  void Reset() {*this = SQCalMCHit_v1();}
21  int isValid() const;
22  SQHit* Clone() const {return (new SQCalMCHit_v1(*this));}
23 
24  virtual int get_track_id() const {return _track_id;}
25  virtual void set_track_id(const int a) {_track_id = a;}
26 
27  virtual int get_shower_id() const {return _shower_id;}
28  virtual void set_shower_id(const int a) {_shower_id = a;}
29 
30  virtual PHG4HitDefs::keytype get_g4hit_id() const {return _g4hit_id;}
31  virtual void set_g4hit_id(const PHG4HitDefs::keytype a) {_g4hit_id = a;}
32 
33  virtual float get_truth_x() const {return _truth_x;}
34  virtual void set_truth_x(const float a) {_truth_x = a;}
35 
36  virtual float get_truth_y() const {return _truth_y;}
37  virtual void set_truth_y(const float a) {_truth_y = a;}
38 
39  virtual float get_truth_z() const {return _truth_z;}
40  virtual void set_truth_z(const float a) {_truth_z = a;}
41 
42  virtual float get_truth_px() const {return _truth_px;}
43  virtual void set_truth_px(const float a) {_truth_px = a;}
44 
45  virtual float get_truth_py() const {return _truth_py;}
46  virtual void set_truth_py(const float a) {_truth_py = a;}
47 
48  virtual float get_truth_pz() const {return _truth_pz;}
49  virtual void set_truth_pz(const float a) {_truth_pz = a;}
50 
51 private:
52 
53  int _track_id;
54  int _shower_id;
55  PHG4HitDefs::keytype _g4hit_id;
56 
57  float _truth_x;
58  float _truth_y;
59  float _truth_z;
60 
61  float _truth_px;
62  float _truth_py;
63  float _truth_pz;
64 
65  ClassDef(SQCalMCHit_v1, 1);
66 };
67 
68 
69 #endif /* _H_SQCalMCHit_v1_H_ */
void identify(std::ostream &os=std::cout) const
virtual float get_truth_x() const
Return the true x-position of this hit. Meaningful only if this hit is of MC.
Definition: SQCalMCHit_v1.h:33
virtual float get_truth_z() const
Return the true z-position of this hit. Meaningful only if this hit is of MC.
Definition: SQCalMCHit_v1.h:39
virtual void set_truth_y(const float a)
Definition: SQCalMCHit_v1.h:37
virtual float get_truth_py() const
Return the true y-momentum of this hit. Meaningful only if this hit is of MC.
Definition: SQCalMCHit_v1.h:45
virtual int get_track_id() const
Return the track ID associated with this hit. Probably the value is not properly set at present.
Definition: SQCalMCHit_v1.h:24
virtual float get_truth_pz() const
Return the true z-momentum of this hit. Meaningful only if this hit is of MC.
Definition: SQCalMCHit_v1.h:48
virtual void set_truth_pz(const float a)
Definition: SQCalMCHit_v1.h:49
virtual void set_truth_px(const float a)
Definition: SQCalMCHit_v1.h:43
SQHit * Clone() const
Definition: SQCalMCHit_v1.h:22
virtual void set_truth_py(const float a)
Definition: SQCalMCHit_v1.h:46
virtual void set_truth_z(const float a)
Definition: SQCalMCHit_v1.h:40
virtual float get_truth_y() const
Return the true y-position of this hit. Meaningful only if this hit is of MC.
Definition: SQCalMCHit_v1.h:36
void Reset()
Clear Event.
Definition: SQCalMCHit_v1.h:20
virtual ~SQCalMCHit_v1()
Definition: SQCalMCHit_v1.h:16
virtual void set_track_id(const int a)
Definition: SQCalMCHit_v1.h:25
virtual void set_shower_id(const int a)
Definition: SQCalMCHit_v1.h:28
virtual void set_g4hit_id(const PHG4HitDefs::keytype a)
Definition: SQCalMCHit_v1.h:31
int isValid() const
isValid returns non zero if object contains vailid data
virtual PHG4HitDefs::keytype get_g4hit_id() const
Return the Geant-hit ID associated with this hit.
Definition: SQCalMCHit_v1.h:30
virtual void set_truth_x(const float a)
Definition: SQCalMCHit_v1.h:34
virtual int get_shower_id() const
Definition: SQCalMCHit_v1.h:27
virtual float get_truth_px() const
Return the true x-momentum of this hit. Meaningful only if this hit is of MC.
Definition: SQCalMCHit_v1.h:42
An SQ interface class to hold one detector hit.
Definition: SQHit.h:20
unsigned int keytype
Definition: PHG4HitDefs.h:8