00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00012
00013 #ifndef __TMARBODY
00014 #define __TMARBODY
00015
00016
00017 #define IDELE 1
00018 #define IDMU 2
00019 #define IDJET 3
00020 #define IDNP 4
00021 #define IDPHO 5
00022 #define IDHFS 6
00023 #define IDTRK 7
00024 #define IDTAU 8
00025
00026
00027 #define IDGELE 11
00028 #define IDGMU 12
00029 #define IDGJET 13
00030 #define IDGNP 14
00031 #define IDGPHO 15
00032 #define IDGTAU 16
00033
00034
00035 #define INDEXNP -2
00036
00037
00038
00039 #include <TObject.h>
00040 #include <TMath.h>
00041 #include <TLorentzVector.h>
00042
00043 using namespace std;
00044
00045
00046 class TMarBody : public TObject
00047 {
00049
00051 public :
00052
00053
00054 TMarBody();
00055 TMarBody(TMarBody *body);
00056 TMarBody(Int_t ID,Int_t indexID,Int_t index=-1);
00057 TMarBody(const Int_t& ID,const Int_t& indexID,const Float_t& E,const Float_t& Pt,const Float_t& Eta,const Float_t& Phi,const Int_t& index=-1);
00058
00059 ~TMarBody();
00060
00061
00062
00063
00064 Int_t GetType(void) const;
00065
00066
00067 Int_t GetIndex(void) const;
00068
00069
00070 Int_t GetIndexID(void) const;
00071
00072
00073 Bool_t GetEPtEtaPhi(Float_t &E,Float_t &Pt,Float_t &Eta,Float_t &Phi) const;
00074 Float_t GetE() const;
00075 Float_t GetPt() const;
00076 Float_t GetEta() const;
00077 Float_t GetTheta() const;
00078 Float_t GetPhi() const;
00079 Float_t GetP() const;
00080 Float_t GetPx() const;
00081 Float_t GetPy() const;
00082 Float_t GetPz() const;
00083
00084 TLorentzVector GetFourVector();
00085
00086 void SetE(const Float_t& E){fE=E;};
00087 void SetPt(const Float_t& Pt){fPt=Pt;};
00088 void SetEta(const Float_t& Eta){fEta=Eta;};
00089 void SetPhi(const Float_t& Phi){fPhi=Phi;};
00090
00091
00092
00093 Bool_t IsSel(void);
00094
00095
00096 void SetEPtEtaPhi(Float_t E,Float_t Pt,Float_t Eta,Float_t Phi);
00097
00098
00099 void SetSel(Bool_t selection);
00100
00101
00102 virtual Int_t Compare(const TObject* body);
00103 Bool_t IsEqual(const TMarBody* body);
00104 virtual Bool_t IsSortable()const;
00105 bool operator<(const TMarBody& other);
00106
00107 Float_t EtaPhiDist(TMarBody *body);
00108
00109
00110 private:
00111
00112 Int_t fIndex;
00113 Int_t fIndexID;
00114 Int_t fID;
00115 Float_t fE;
00116 Float_t fPt;
00117 Float_t fEta;
00118 Float_t fPhi;
00119 Bool_t fSelected;
00120
00121 ClassDef(TMarBody,1)
00122
00123 };
00124
00125 #endif
00126