ROOT
6.06/09
Reference Guide
|
#include "Math/Polynomial.h"
#include "Math/Functor.h"
#include "Math/RootFinder.h"
#include "Math/RootFinderAlgorithms.h"
#include <iostream>
Go to the source code of this file.
Classes | |
class | TStopwatch |
Stopwatch class. More... | |
Typedefs | |
typedef double(* | FP) (double, void *) |
Functions | |
double | myfunc (double x) |
double | myfunc_gsl (double x, void *) |
double | myfunc_deriv (double x) |
double | myfunc_deriv_gsl (double x, void *) |
void | myfunc_fdf (double x, void *, double *y, double *dy) |
template<class RF > | |
int | findRoot (RF *r) |
template<class RF > | |
int | printStats (RF *r, int returnCode, TStopwatch &timer) |
int | testGSLRootFinder () |
int | main () |
Variables | |
const int | iterTest = 10000 |
int | myfuncCalls = 0 |
const double | absTol = 1E-3 |
Definition at line 21 of file testGSLRootFinder.cxx.
int findRoot | ( | RF * | r | ) |
Definition at line 51 of file testGSLRootFinder.cxx.
Referenced by testGSLRootFinder().
int main | ( | ) |
Definition at line 175 of file testGSLRootFinder.cxx.
Definition at line 29 of file testGSLRootFinder.cxx.
Referenced by myfunc_gsl(), and testGSLRootFinder().
Definition at line 38 of file testGSLRootFinder.cxx.
Referenced by myfunc_deriv_gsl(), and testGSLRootFinder().
Definition at line 41 of file testGSLRootFinder.cxx.
Referenced by testGSLRootFinder().
Definition at line 45 of file testGSLRootFinder.cxx.
Referenced by testGSLRootFinder().
Definition at line 34 of file testGSLRootFinder.cxx.
Referenced by testGSLRootFinder().
int printStats | ( | RF * | r, |
int | returnCode, | ||
TStopwatch & | timer | ||
) |
Definition at line 60 of file testGSLRootFinder.cxx.
Referenced by testGSLRootFinder().
int testGSLRootFinder | ( | ) |
Definition at line 79 of file testGSLRootFinder.cxx.
Referenced by main().
const double absTol = 1E-3 |
Definition at line 26 of file testGSLRootFinder.cxx.
Referenced by ROOT::Math::IntegratorMultiDim::CreateIntegrator(), ROOT::Math::IntegratorOneDim::CreateIntegrator(), ROOT::Math::IntegratorMultiDim::IntegratorMultiDim(), ROOT::Math::IntegratorOneDim::IntegratorOneDim(), printStats(), ROOT::Math::AdaptiveIntegratorMultiDim::SetAbsTolerance(), ROOT::Math::GSLMCIntegrator::SetAbsTolerance(), ROOT::Math::GSLIntegrator::SetAbsTolerance(), and ROOT::Math::RootFinder::Solve().
const int iterTest = 10000 |
Definition at line 23 of file testGSLRootFinder.cxx.
Referenced by printStats(), and testGSLRootFinder().
int myfuncCalls = 0 |
Definition at line 24 of file testGSLRootFinder.cxx.
Referenced by myfunc(), printStats(), and testGSLRootFinder().