#ifndef ROOT_TGraph2DPainter
#define ROOT_TGraph2DPainter
#ifndef ROOT_Object
#include "TObject.h"
#endif
class TGraph2D;
class TGraphDelaunay;
class TList;
class TGraph2DPainter : 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:
TGraph2DPainter();
TGraph2DPainter(TGraphDelaunay *gd);
virtual ~TGraph2DPainter();
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(TGraph2DPainter,0)
};
#endif
Last change: Wed Jun 25 08:46:06 2008
Last generated: 2008-06-25 08:46
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.