#ifndef ROOT_TGraph2DErrors
#define ROOT_TGraph2DErrors
#ifndef ROOT_TGraph2D
#include "TGraph2D.h"
#endif
class TGraph2DErrors : public TGraph2D {
protected:
   Double_t *fEX; 
   Double_t *fEY; 
   Double_t *fEZ; 
public:
   TGraph2DErrors();
   TGraph2DErrors(Int_t n);
   TGraph2DErrors(Int_t n, Double_t *x, Double_t *y, Double_t *z,
                  Double_t *ex=0, Double_t *ey=0, Double_t *ez=0, Option_t *option="");
   virtual ~TGraph2DErrors();
   Double_t        GetErrorX(Int_t bin) const;
   Double_t        GetErrorY(Int_t bin) const;
   Double_t        GetErrorZ(Int_t bin) const;
   Double_t        *GetEX() const {return fEX;}
   Double_t        *GetEY() const {return fEY;}
   Double_t        *GetEZ() const {return fEZ;}
   virtual void    SetPoint(Int_t i, Double_t x, Double_t y, Double_t z);
   virtual void    SetPointError(Int_t i, Double_t ex, Double_t ey, Double_t ez);
   ClassDef(TGraph2DErrors,1)  
};
#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.