#ifndef ROOT_Math_GSL_RootFinderDeriv
#define ROOT_Math_GSL_RootFinderDeriv
#ifndef ROOT_Math_GSLFunctionAdapter
#include "Math/GSLFunctionAdapter.h"
#endif
#ifndef ROOT_Math_IFunctionfwd
#include "Math/IFunctionfwd.h"
#endif
#ifndef ROOT_Math_IFunction
#include "Math/IFunction.h"
#endif
#ifndef ROOT_Math_IRootFinderMethod
#include "Math/IRootFinderMethod.h"
#endif
#include <iostream>
namespace ROOT {
namespace Math {
class GSLRootFdFSolver;
class GSLFunctionDerivWrapper;
class GSLRootFinderDeriv: public IRootFinderMethod {
public:
GSLRootFinderDeriv();
virtual ~GSLRootFinderDeriv();
private:
GSLRootFinderDeriv(const GSLRootFinderDeriv &);
GSLRootFinderDeriv & operator = (const GSLRootFinderDeriv &);
public:
#if defined(__MAKECINT__) || defined(G__DICTIONARY)
int SetFunction( const IGenFunction & , double , double ) {
std::cerr <<"GSLRootFinderDeriv - Error : Algorithm requirs derivatives" << std::endl;
return -1;
}
#endif
int SetFunction( const IGradFunction & f, double xstart) {
const void * p = &f;
return SetFunction( &GSLFunctionAdapter<IGradFunction>::F, &GSLFunctionAdapter<IGradFunction>::Df, &GSLFunctionAdapter<IGradFunction>::Fdf, const_cast<void *>(p), xstart );
}
typedef double ( * GSLFuncPointer ) ( double, void *);
typedef void ( * GSLFdFPointer ) ( double, void *, double *, double *);
int SetFunction( GSLFuncPointer f, GSLFuncPointer df, GSLFdFPointer fdf, void * p, double Root );
using IRootFinderMethod::SetFunction;
int Iterate();
double Root() const;
int Solve( int maxIter = 100, double absTol = 1E-3, double relTol = 1E-6);
int Iterations() const {
return fIter;
}
const char * Name() const;
protected:
void SetSolver ( GSLRootFdFSolver * s );
void FreeSolver();
private:
GSLFunctionDerivWrapper * fFunction;
GSLRootFdFSolver * fS;
mutable double fRoot;
mutable double fPrevRoot;
int fIter;
bool fValidPoint;
};
}
}
#endif /* ROOT_Math_GSL_RootFinderDeriv */
Last change: Wed Jun 25 08:29:35 2008
Last generated: 2008-06-25 08:29
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.