StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StUeJet.h
1 #ifndef ST_UE_JET
2 #define ST_UE_JET
3 
4 class StUeJet : public TObject{
5  public:
6  StUeJet(){
7  mPt = 0.;
8  mEta = 999;
9  mPhi = 0.;
10  mE = 0.;
11  mArea = -1.;
12  }
13 
14  float pt() const { return mPt; }
15  float eta() const { return mEta; }
16  float phi() const { return mPhi; }
17  float e() const { return mE; }
18  float area() const { return mArea; }
19 
20  void setPt(float pt) { mPt = pt; }
21  void setEta(float eta) { mEta = eta; }
22  void setPhi(float phi) { mPhi = phi; }
23  void setE(float e) { mE = e; }
24  void setArea(float area) { mArea = area; }
25 // virtual int jetId() const = 0;
26 // virtual void setJetId(int id) = 0;
27  private:
28  float mPt;
29  float mEta;
30  float mPhi;
31  float mE;
32  float mArea;
33 
34  ClassDef(StUeJet, 1);
35 };
36 #endif
Definition: StUeJet.h:4