#ifndef COSY_Led #define COSY_Led #ifndef ROOT_TObject #include #endif class Ring; class Led : public TObject { private: Double_t fX; Double_t fY; Double_t fPhi; Double_t fDx; Double_t fDy; Double_t fDphi; Double_t fMag; public: Led(Double_t x=0, Double_t y=0, Double_t dx=0, Double_t dy=0, Double_t mag=0) : fX(x), fY(y), fPhi(0), fDx(dx), fDy(dy), fDphi(-1), fMag(mag) { } Int_t Compare(const TObject *obj) const { const Led *const l = (Led*)obj; if (fPhifPhi) return -1; if (fPhi>l->fPhi) return 1; return 0; } void SetX(Double_t x) { fX=x; } void SetY(Double_t y) { fY=y; } Double_t GetX() const { return fX; } Double_t GetY() const { return fY; } Double_t GetDx() const { return fDx; } Double_t GetDy() const { return fDy; } Double_t GetPhi() const { return fPhi; } Double_t GetDphi() const { return fDphi; } Double_t GetMag() const { return fMag; } void AddOffset(Double_t dx, Double_t dy) { fX+=dx; fY+=dy; } Bool_t IsSortable() const { return kTRUE; } void CalcPhi(const Ring &ring); void Print(Option_t *o=NULL) const; ClassDef(Led, 1) }; #endif