#ifndef ROOT_TGraphAsymmErrors
#define ROOT_TGraphAsymmErrors
#ifndef ROOT_TGraph
#include "TGraph.h"
#endif
class TGraphAsymmErrors : public TGraph {
protected:
   Double_t    *fEXlow;        
   Double_t    *fEXhigh;       
   Double_t    *fEYlow;        
   Double_t    *fEYhigh;       
   Double_t        Beta_ab(double a, double b, int k, int N) const;
   Double_t        Ibetai(double a, double b, double x) const;
   Double_t        Betai(double a, double b, double x) const;
   Double_t        Brent(double ax, double bx, double cx, double tol, double *xmin) const;
   virtual void    Efficiency(int k, int N, double conflevel, 
                              double& mode, double& low, double& high) const;
   Double_t        Interval(double low) const;
   Double_t        SearchLower(double high, int k, int N, double c) const;
   Double_t        SearchUpper(double low, int k, int N, double c) const;
   virtual void    SwapPoints(Int_t pos1, Int_t pos2);
   virtual Double_t** Allocate(Int_t size);
   virtual void       CopyAndRelease(Double_t **newarrays,
                                     Int_t ibegin, Int_t iend, Int_t obegin);
   virtual Bool_t     CopyPoints(Double_t **arrays, Int_t ibegin, Int_t iend,
                                 Int_t obegin);
   Bool_t             CtorAllocate();
   virtual void       FillZero(Int_t begin, Int_t end,
                               Bool_t from_ctor = kTRUE);
public:
   TGraphAsymmErrors();
   TGraphAsymmErrors(Int_t n);
   TGraphAsymmErrors(Int_t n, const Float_t *x, const Float_t *y, const Float_t *exl=0, const Float_t *exh=0, const Float_t *eyl=0, const Float_t *eyh=0);
   TGraphAsymmErrors(Int_t n, const Double_t *x, const Double_t *y, const Double_t *exl=0, const Double_t *exh=0, const Double_t *eyl=0, const Double_t *eyh=0);
   TGraphAsymmErrors(const TVectorF &vx, const TVectorF &vy, const TVectorF &vexl, const TVectorF &vexh, const TVectorF &veyl, const TVectorF &veyh);
   TGraphAsymmErrors(const TVectorD &vx, const TVectorD &vy, const TVectorD &vexl, const TVectorD &vexh, const TVectorD &veyl, const TVectorD &veyh);
   TGraphAsymmErrors(const TGraphAsymmErrors &gr);
   TGraphAsymmErrors& operator=(const TGraphAsymmErrors &gr);
   TGraphAsymmErrors(const TH1 *h);
   TGraphAsymmErrors(const TH1 *pass, const TH1 *total, Option_t *option="");
   virtual ~TGraphAsymmErrors();
   virtual void    Apply(TF1 *f);
   virtual void    BayesDivide(const TH1 *pass, const TH1 *total, Option_t *option="");
   virtual void    ComputeRange(Double_t &xmin, Double_t &ymin, Double_t &xmax, Double_t &ymax) const;
   Double_t        GetErrorX(Int_t bin)   const;
   Double_t        GetErrorY(Int_t bin)   const;
   Double_t        GetErrorXlow(Int_t i)  const;
   Double_t        GetErrorXhigh(Int_t i) const;
   Double_t        GetErrorYlow(Int_t i)  const;
   Double_t        GetErrorYhigh(Int_t i) const;
   Double_t       *GetEXlow()  const {return fEXlow;}
   Double_t       *GetEXhigh() const {return fEXhigh;}
   Double_t       *GetEYlow()  const {return fEYlow;}
   Double_t       *GetEYhigh() const {return fEYhigh;}
   virtual void    Paint(Option_t *chopt="");
   virtual void    Print(Option_t *chopt="") const;
   virtual void    SavePrimitive(ostream &out, Option_t *option = "");
   virtual void    SetPointError(Double_t exl, Double_t exh, Double_t eyl, Double_t eyh); 
   virtual void    SetPointError(Int_t i, Double_t exl, Double_t exh, Double_t eyl, Double_t eyh);
   virtual void    SetPointEXlow(Int_t i, Double_t exl);
   virtual void    SetPointEXhigh(Int_t i, Double_t exh);
   virtual void    SetPointEYlow(Int_t i, Double_t eyl);
   virtual void    SetPointEYhigh(Int_t i, Double_t eyh);
   ClassDef(TGraphAsymmErrors,3)  
};
inline Double_t** TGraphAsymmErrors::Allocate(Int_t size) {
   return AllocateArrays(6, size);
}
#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.