Class Reference for E1039 Core & Analysis Software
SQTrack.h
Go to the documentation of this file.
1 #ifndef _SQ_TRACK__H_
2 #define _SQ_TRACK__H_
3 #include <iostream>
4 #include <phool/PHObject.h>
5 #include <TLorentzVector.h>
6 
8 class SQTrack: public PHObject {
9  public:
10  virtual ~SQTrack() {}
11 
12  virtual void identify(std::ostream& os = std::cout) const = 0;
13  virtual void Reset() = 0;
14  virtual int isValid() const = 0;
15  virtual SQTrack* Clone() const = 0;
16 
17  virtual int get_track_id() const = 0;
18  virtual void set_track_id(const int a) = 0;
19 
20  virtual int get_rec_track_id() const = 0;
21  virtual void set_rec_track_id(const int a) = 0;
22 
23  virtual int get_charge() const = 0;
24  virtual void set_charge(const int a) = 0;
25 
26  virtual int get_num_hits() const = 0;
27  virtual void set_num_hits(const int a) = 0;
28 
29  virtual TVector3 get_pos_vtx() const = 0;
30  virtual void set_pos_vtx(const TVector3 a) = 0;
31 
32  virtual TVector3 get_pos_st1() const = 0;
33  virtual void set_pos_st1(const TVector3 a) = 0;
34 
35  virtual TVector3 get_pos_st3() const = 0;
36  virtual void set_pos_st3(const TVector3 a) = 0;
37 
38  virtual TLorentzVector get_mom_vtx() const = 0;
39  virtual void set_mom_vtx(const TLorentzVector a) = 0;
40 
41  virtual TLorentzVector get_mom_st1() const = 0;
42  virtual void set_mom_st1(const TLorentzVector a) = 0;
43 
44  virtual TLorentzVector get_mom_st3() const = 0;
45  virtual void set_mom_st3(const TLorentzVector a) = 0;
46 
47  virtual double get_chisq() const = 0;
48  virtual double get_chisq_target() const = 0;
49  virtual double get_chisq_dump() const = 0;
50  virtual double get_chsiq_upstream() const = 0;
51 
52  virtual TVector3 get_pos_target() const = 0;
53  virtual TVector3 get_pos_dump() const = 0;
54 
55  virtual TLorentzVector get_mom_target() const = 0;
56  virtual TLorentzVector get_mom_dump() const = 0;
57 
58  virtual int get_hit_id(const int i) const = 0;
59 
60  protected:
61  SQTrack() {}
62 
64 };
65 
66 #endif // _SQ_TRACK__H_
An SQ interface class to hold one true or reconstructed track.
Definition: SQTrack.h:8
virtual int get_track_id() const =0
Return the track ID, which is unique per event(?).
virtual ~SQTrack()
Definition: SQTrack.h:10
virtual void set_track_id(const int a)=0
virtual double get_chsiq_upstream() const =0
virtual int get_hit_id(const int i) const =0
virtual TVector3 get_pos_vtx() const =0
Return the track position at vertex.
virtual void set_pos_vtx(const TVector3 a)=0
virtual int get_charge() const =0
Return the charge, i.e. +1 or -1.
virtual int get_rec_track_id() const =0
Return the track ID of associated reconstructed track. Valid only if this object holds truth track in...
virtual int get_num_hits() const =0
Return the number of hits associated to this track.
virtual void Reset()=0
Clear Event.
virtual double get_chisq_dump() const =0
virtual TVector3 get_pos_target() const =0
ClassDef(SQTrack, 1)
virtual TLorentzVector get_mom_dump() const =0
virtual void set_num_hits(const int a)=0
virtual void set_mom_vtx(const TLorentzVector a)=0
virtual TLorentzVector get_mom_vtx() const =0
Return the track momentum at vertex.
virtual TLorentzVector get_mom_target() const =0
virtual TVector3 get_pos_dump() const =0
virtual void set_pos_st1(const TVector3 a)=0
virtual double get_chisq_target() const =0
virtual int isValid() const =0
isValid returns non zero if object contains vailid data
virtual void set_pos_st3(const TVector3 a)=0
SQTrack()
Definition: SQTrack.h:61
virtual double get_chisq() const =0
virtual void set_charge(const int a)=0
virtual SQTrack * Clone() const =0
virtual void set_mom_st1(const TLorentzVector a)=0
virtual void identify(std::ostream &os=std::cout) const =0
virtual void set_rec_track_id(const int a)=0
virtual TLorentzVector get_mom_st1() const =0
Return the track momentum at Station 1.
virtual TVector3 get_pos_st3() const =0
Return the track position at Station 3.
virtual TVector3 get_pos_st1() const =0
Return the track position at Station 1.
virtual void set_mom_st3(const TLorentzVector a)=0
virtual TLorentzVector get_mom_st3() const =0
Return the track momentum at Station 3.