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