#ifndef ROOT_TGraphPainter
#define ROOT_TGraphPainter
#ifndef ROOT_Object
#include "TObject.h"
#endif
class TGraph2D;
class TGraphDelaunay;
class TList;
class TGraphPainter : public TObject {
protected:
   Double_t   *fX;            
   Double_t   *fY;            
   Double_t   *fZ;            
   Double_t   *fXN;           
   Double_t   *fYN;           
   Double_t    fXNmin;        
   Double_t    fXNmax;        
   Double_t    fYNmin;        
   Double_t    fYNmax;        
   Double_t    fXmin;         
   Double_t    fXmax;         
   Double_t    fYmin;         
   Double_t    fYmax;         
   Double_t    fZmin;         
   Double_t    fZmax;         
   Int_t       fNpoints;      
   Int_t       fNdt;          
   Int_t      *fPTried;       
   Int_t      *fNTried;       
   Int_t      *fMTried;       
   TGraphDelaunay *fDelaunay; 
   TGraph2D *fGraph2D;        
   void     FindTriangles();
   void     PaintLevels(Int_t *T, Double_t *x, Double_t *y, Int_t nblev=0, Double_t *glev=0);
   void     PaintPolyMarker0(Int_t n, Double_t *x, Double_t *y);
public:
   TGraphPainter();
   TGraphPainter(TGraphDelaunay *gd);
   virtual ~TGraphPainter();
   TList *GetContourList(Double_t contour);
   void   Paint(Option_t *option);
   void   PaintTriangles(Option_t *option);
   void   PaintPolyMarker(Option_t *option);
   void   PaintPolyLine(Option_t *option);
   void   PaintContour(Option_t *option);
   ClassDef(TGraphPainter,0)  
};
#endif
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.