#ifndef INTPOINT_H #define INTPOINT_H #include "TObject.h" class Intpoint: public TObject { public: Intpoint(); Intpoint(double X, double Y, double Z); virtual ~Intpoint(); double Getx(); double Gety(); double Getz(); private: double x, y, z; ClassDef(Intpoint,1) }; #endif