void graphApply()
{
   Double_t yaxis[npoints] = {10.,20.,30.};
 
   Double_t errorx[npoints] = {0.5,0.5,0.5};
 
 
 
   TF2 *ff = 
new TF2(
"ff",
"-1./y");
 
 
 
   
 
   
 
   
}
A 2-Dim function with parameters.
 
TGraph with asymmetric error bars.
 
virtual void Apply(TF1 *f)
Apply a function to all data points y = f(x,y)
 
A TGraphErrors is a TGraph with error bars.
 
virtual void Apply(TF1 *f)
apply function to all the data points y = f(x,y)
 
A TGraph is an object made of two arrays X and Y with npoints each.
 
virtual void Draw(Option_t *chopt="")
Draw this graph with its current attributes.
 
virtual void Apply(TF1 *f)
Apply function f to all the data points f may be a 1-D function TF1 or 2-d function TF2 The Y values ...
 
virtual TObject * DrawClone(Option_t *option="") const
Draw a clone of this object in the current selected pad for instance with: gROOT->SetSelectedPad(gPad...