#ifndef ROOT_TPoints
#define ROOT_TPoints
#ifndef ROOT_Gtypes
#include "Gtypes.h"
#endif
class TPoints {
private:
Double_t fX;
Double_t fY;
public:
TPoints() : fX(0), fY(0) { }
TPoints(Double_t xy) : fX(xy), fY(xy) { }
TPoints(Double_t x, Double_t y) : fX(x), fY(y) { }
virtual ~TPoints() { }
Double_t GetX() const { return fX; }
Double_t GetY() const { return fY; }
void SetX(Double_t x) { fX = x; }
void SetY(Double_t y) { fY = y; }
ClassDef(TPoints,0)
};
#endif
ROOT page - Class index - Class Hierarchy - Top of the page
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.