Class Reference for E1039 Core & Analysis Software
SQDimuon_v1.h
Go to the documentation of this file.
1 #ifndef _SQ_DIMUON_V1__H_
2 #define _SQ_DIMUON_V1__H_
3 #include "SQDimuon.h"
4 
5 class SQDimuon_v1 : public SQDimuon {
6  public:
7  SQDimuon_v1();
8  virtual ~SQDimuon_v1();
9 
10  void identify(std::ostream& os = std::cout) const;
11  void Reset();
12  int isValid() const { return 1; }
13  SQDimuon* Clone() const { return new SQDimuon_v1(*this); }
14 
15  int get_dimuon_id() const { return _id; }
16  void set_dimuon_id(const int a) { _id = a; }
17 
18  virtual int get_rec_dimuon_id() const { return _rec_id; }
19  virtual void set_rec_dimuon_id(const int a) { _rec_id = a; }
20 
21  int get_pdg_id() const { return _pdg_id; }
22  void set_pdg_id(const int a) { _pdg_id = a; }
23 
24  int get_track_id_pos() const { return _track_id_pos; }
25  void set_track_id_pos(const int a) { _track_id_pos = a; }
26 
27  int get_track_id_neg() const { return _track_id_neg; }
28  void set_track_id_neg(const int a) { _track_id_neg = a; }
29 
30  TVector3 get_pos() const { return _pos; }
31  void set_pos(const TVector3 a) { _pos = a; }
32 
33  TLorentzVector get_mom() const { return _mom; }
34  void set_mom(const TLorentzVector a) { _mom = a; }
35 
36  TLorentzVector get_mom_pos() const { return _mom_pos; }
37  void set_mom_pos(const TLorentzVector a) { _mom_pos = a; }
38 
39  TLorentzVector get_mom_neg() const { return _mom_neg; }
40  void set_mom_neg(const TLorentzVector a) { _mom_neg = a; }
41 
42  virtual double get_mass() const { return _mom.M(); }
43  virtual double get_x1() const;
44  virtual double get_x2() const;
45  virtual double get_xf() const;
46 
47  virtual double get_chisq() const { return 0.; }
48 
49  protected:
50  int _id;
51  int _rec_id;
52  int _pdg_id;
55  TVector3 _pos;
56  TLorentzVector _mom;
57  TLorentzVector _mom_pos;
58  TLorentzVector _mom_neg;
59 
61 };
62 
63 //struct SQDimuonVector : public PHObject, public std::vector<SQDimuon> {
64 // SQDimuonVector() {;}
65 // virtual ~SQDimuonVector() {;}
66 //
67 // void identify(std::ostream& os = std::cout) const {;}
68 // void Reset() { *this = SQDimuonVector(); }
69 // int isValid() const { return 1; }
70 // SQDimuonVector* Clone() const { return new SQDimuonVector(*this); }
71 //
72 // ClassDef(SQDimuonVector, 1);
73 //};
74 
75 #endif // _SQ_DIMUON_V1__H_
int isValid() const
isValid returns non zero if object contains vailid data
Definition: SQDimuon_v1.h:12
void set_dimuon_id(const int a)
Definition: SQDimuon_v1.h:16
TLorentzVector _mom_pos
Definition: SQDimuon_v1.h:57
virtual double get_chisq() const
Definition: SQDimuon_v1.h:47
int _track_id_pos
Definition: SQDimuon_v1.h:53
TVector3 _pos
Definition: SQDimuon_v1.h:55
virtual double get_xf() const
Definition: SQDimuon_v1.cxx:57
virtual double get_x1() const
Definition: SQDimuon_v1.cxx:35
int get_track_id_pos() const
Return the track ID of the positive track.
Definition: SQDimuon_v1.h:24
void set_track_id_pos(const int a)
Definition: SQDimuon_v1.h:25
void set_mom_pos(const TLorentzVector a)
Definition: SQDimuon_v1.h:37
void set_mom_neg(const TLorentzVector a)
Definition: SQDimuon_v1.h:40
void set_track_id_neg(const int a)
Definition: SQDimuon_v1.h:28
ClassDef(SQDimuon_v1, 1)
TLorentzVector get_mom_pos() const
Return the momentum of the positive track at vertex.
Definition: SQDimuon_v1.h:36
TLorentzVector _mom
Definition: SQDimuon_v1.h:56
void Reset()
Clear Event.
Definition: SQDimuon_v1.cxx:30
TLorentzVector _mom_neg
Definition: SQDimuon_v1.h:58
SQDimuon * Clone() const
Definition: SQDimuon_v1.h:13
int get_dimuon_id() const
Return the dimuon ID, which is unique per event(?).
Definition: SQDimuon_v1.h:15
virtual double get_mass() const
Definition: SQDimuon_v1.h:42
virtual ~SQDimuon_v1()
Definition: SQDimuon_v1.cxx:20
void set_pdg_id(const int a)
Definition: SQDimuon_v1.h:22
virtual int get_rec_dimuon_id() const
Return the dimuon ID of associated reconstructed dimuon. Valid only if this object holds truth dimuon...
Definition: SQDimuon_v1.h:18
int get_track_id_neg() const
Return the track ID of the negative track.
Definition: SQDimuon_v1.h:27
int get_pdg_id() const
Return the GPD ID of parent particle. It is valid only for true dimuon.
Definition: SQDimuon_v1.h:21
virtual double get_x2() const
Definition: SQDimuon_v1.cxx:46
void set_pos(const TVector3 a)
Definition: SQDimuon_v1.h:31
TLorentzVector get_mom_neg() const
Return the momentum of the negative track at vertex.
Definition: SQDimuon_v1.h:39
virtual void set_rec_dimuon_id(const int a)
Definition: SQDimuon_v1.h:19
TVector3 get_pos() const
Return the dimuon position at vertex.
Definition: SQDimuon_v1.h:30
int _track_id_neg
Definition: SQDimuon_v1.h:54
void identify(std::ostream &os=std::cout) const
Definition: SQDimuon_v1.cxx:25
TLorentzVector get_mom() const
Return the dimuon momentum at vertex.
Definition: SQDimuon_v1.h:33
void set_mom(const TLorentzVector a)
Definition: SQDimuon_v1.h:34
An SQ interface class to hold one true or reconstructed dimuon.
Definition: SQDimuon.h:8