Class Reference for E1039 Core & Analysis Software
SQTrack_v1.cxx
Go to the documentation of this file.
1 #include "SQTrack_v1.h"
2 using namespace std;
3 
5  : _id(0)
6  , _rec_id(-1)
7  , _charge(0)
8  , _n_hits(0)
9  , _pos_vtx(0,0,0)
10  , _pos_st1(0,0,0)
11  , _pos_st3(0,0,0)
12  , _mom_vtx(0,0,0,0)
13  , _mom_st1(0,0,0,0)
14  , _mom_st3(0,0,0,0)
15 {
16  ;
17 }
18 
20 {
21  ;
22 }
23 
24 void SQTrack_v1::identify(std::ostream& os) const
25 {
26  os << "---SQTrack_v1--------------------" << endl;
27  os << "track_id: " << get_track_id() << endl;
28  os << "rec_track_id: " << get_rec_track_id() << endl;
29  os << "num_hits: " << get_num_hits() << endl;
30  os << "vtx_pos: (" << _pos_vtx.X() << ", " << _pos_vtx.Y() << ", " << _pos_vtx.Z() << ")" << endl;
31  os << "vtx_mom: (" << _mom_vtx.Px() << ", " << _mom_vtx.Py() << ", " << _mom_vtx.Pz() << ")" << endl;
32  os << "st1_pos: (" << _pos_st1.X() << ", " << _pos_st1.Y() << ", " << _pos_st1.Z() << ")" << endl;
33  os << "st1_mom: (" << _mom_st1.Px() << ", " << _mom_st1.Py() << ", " << _mom_st1.Pz() << ")" << endl;
34  os << "st3_pos: (" << _pos_st3.X() << ", " << _pos_st3.Y() << ", " << _pos_st3.Z() << ")" << endl;
35  os << "st3_mom: (" << _mom_st3.Px() << ", " << _mom_st3.Py() << ", " << _mom_st3.Pz() << ")" << endl;
36 
37  return;
38 }
39 
41 {
42  ;
43 }
TLorentzVector _mom_st1
Definition: SQTrack_v1.h:68
TVector3 _pos_st3
Definition: SQTrack_v1.h:66
TVector3 _pos_st1
Definition: SQTrack_v1.h:65
virtual int get_num_hits() const
Return the number of hits associated to this track.
Definition: SQTrack_v1.h:24
TLorentzVector _mom_st3
Definition: SQTrack_v1.h:69
void identify(std::ostream &os=std::cout) const
Definition: SQTrack_v1.cxx:24
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 int get_track_id() const
Return the track ID, which is unique per event(?).
Definition: SQTrack_v1.h:15
TLorentzVector _mom_vtx
Definition: SQTrack_v1.h:67
virtual ~SQTrack_v1()
Definition: SQTrack_v1.cxx:19
TVector3 _pos_vtx
Definition: SQTrack_v1.h:64
void Reset()
Clear Event.
Definition: SQTrack_v1.cxx:40