#ifndef ROOT_TF12
#define ROOT_TF12
#ifndef ROOT_TF2
#include "TF2.h"
#endif
#ifndef ROOT_Riosfwd
#include "Riosfwd.h"
#endif
class TF12 : public TF1 {
protected:
Double_t fXY;
Int_t fCase;
TF2 *fF2;
public:
TF12();
TF12(const char *name, TF2 *f2, Double_t xy, Option_t *option="x");
TF12(const TF12 &f12);
virtual ~TF12();
virtual void Copy(TObject &f12) const;
virtual TF1 *DrawCopy(Option_t *option="") const;
virtual Double_t Eval(Double_t x, Double_t y=0, Double_t z=0, Double_t t=0) const;
virtual Double_t EvalPar(const Double_t *x, const Double_t *params=0);
virtual Double_t GetXY() const {return fXY;}
virtual void SavePrimitive(ostream &out, Option_t *option = "");
virtual void SetXY(Double_t xy);
ClassDef(TF12,1)
};
#endif
ROOT page - Class index - Class Hierarchy - Top of the page
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.