26 TPoints() : fX(0), fY(0) { }
27 TPoints(Double_t xy) : fX(xy), fY(xy) { }
28 TPoints(Double_t x, Double_t y) : fX(x), fY(y) { }
29 virtual ~TPoints() { }
30 Double_t GetX()
const {
return fX; }
31 Double_t GetY()
const {
return fY; }
32 void SetX(Double_t x) { fX = x; }
33 void SetY(Double_t y) { fY = y; }