File indexing completed on 2025-01-18 10:12:20
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012 #ifndef ROOT_TPoints
0013 #define ROOT_TPoints
0014
0015
0016 #include "Rtypes.h"
0017
0018
0019 class TPoints {
0020
0021 private:
0022 Double_t fX;
0023 Double_t fY;
0024
0025 public:
0026 TPoints() : fX(0), fY(0) { }
0027 TPoints(Double_t xy) : fX(xy), fY(xy) { }
0028 TPoints(Double_t x, Double_t y) : fX(x), fY(y) { }
0029 virtual ~TPoints() { }
0030 Double_t GetX() const { return fX; }
0031 Double_t GetY() const { return fY; }
0032 void SetX(Double_t x) { fX = x; }
0033 void SetY(Double_t y) { fY = y; }
0034
0035 ClassDef(TPoints,0)
0036 };
0037
0038 #endif