|
Gaudi Framework, version v21r8 |
| Home | Generated: 17 Mar 2010 |
Definition at line 18 of file Adapters.h.
Definition at line 29 of file GaudiMath.h.
Definition at line 37 of file GaudiMath.h.
Definition at line 31 of file GaudiMath.h.
| typedef Genfun::AbsFunction GaudiMath::Function |
Definition at line 26 of file GaudiMath.h.
Definition at line 20 of file Adapters.h.
Definition at line 22 of file Adapters.h.
Definition at line 29 of file Adapters.h.
Definition at line 27 of file Adapters.h.
| typedef Genfun::GaudiMathImplementation::GSLFunctionWithModeAndError GaudiMath::GSLFunctionWithModeAndError |
Definition at line 31 of file Adapters.h.
Definition at line 35 of file GaudiMath.h.
Definition at line 33 of file GaudiMath.h.
Definition at line 24 of file Adapters.h.
Definition at line 40 of file GaudiMath.h.
Definition at line 42 of file GaudiMath.h.
Definition at line 44 of file GaudiMath.h.
Definition at line 46 of file GaudiMath.h.
Definition at line 48 of file GaudiMath.h.
| GSLFunctionWithModeAndError GaudiMath::adapter | ( | GSLFunctionWithModeAndError::Function | function, | |
| const gsl_mode_t & | mode | |||
| ) |
Definition at line 63 of file Adapters.cpp.
00065 { return GSLFunctionWithModeAndError ( function , mode ) ; }
| GSLFunctionWithError GaudiMath::adapter | ( | GSLFunctionWithError::Function | function | ) |
| GSLFunctionWithMode GaudiMath::adapter | ( | GSLFunctionWithMode::Function | function, | |
| const gsl_mode_t & | mode | |||
| ) |
Definition at line 54 of file Adapters.cpp.
00056 { return GSLFunctionWithMode ( function , mode ) ; }
| SimpleFunction GaudiMath::adapter | ( | const size_t | dim, | |
| SimpleFunction::Function3 | function | |||
| ) |
| SimpleFunction GaudiMath::adapter | ( | const size_t | dim, | |
| SimpleFunction::Function2 | function | |||
| ) |
| SimpleFunction GaudiMath::adapter | ( | SimpleFunction::Function1 | function | ) |
| Function3D GaudiMath::adapter | ( | Function3D::Function | function | ) |
| Function2D GaudiMath::adapter | ( | Function2D::Function | function | ) |
| AIDAFunction GaudiMath::adapter | ( | const AIDA::IFunction & | function | ) |
| double GaudiMath::Integral | ( | const Genfun::AbsFunction & | function, | |
| const GaudiMath::Integration::Inf | a = GaudiMath::Integration::Infinity, |
|||
| const GaudiMath::Integration::Inf | b = GaudiMath::Integration::Infinity, |
|||
| const double | epsabs = 1e-9, |
|||
| const double | epsrel = 1.e-6, |
|||
| const size_t | size = 1000 | |||
| ) |
Definition at line 130 of file Integral.cpp.
00136 { 00137 if ( 1 != function.dimensionality() ) 00138 { throw GaudiException 00139 ("GaudiMath::Integral: illegal function dimension" , 00140 "*GaudiMath*" , StatusCode::FAILURE ); } 00141 00142 const Genfun::AbsFunction& one = 00143 Genfun::GaudiMathImplementation::Constant ( 1.0 , 1 ) ; 00144 00145 const Genfun::AbsFunction& cross = 00146 Genfun::FunctionDirectProduct (&one , &function ) ; 00147 00148 // FIXME: (MCl) the static_cast below are needed to avoid warnings and to 00149 // match the signature in NumericalDefiniteIntegral.h (around line 288). 00150 const Genfun::AbsFunction& result = 00151 Genfun::GaudiMathImplementation::NumericalDefiniteIntegral 00152 ( cross , 1 , static_cast<float>(epsabs) , static_cast<float>(epsrel) , size ) ; 00153 00154 return result( Genfun::Argument(1) ) ; 00155 }
| double GaudiMath::Integral | ( | const Genfun::AbsFunction & | function, | |
| const GaudiMath::Integration::Inf | a, | |||
| const double | b, | |||
| const double | epsabs = 1e-9, |
|||
| const double | epsrel = 1.e-6, |
|||
| const size_t | size = 1000 | |||
| ) |
Definition at line 102 of file Integral.cpp.
00108 { 00109 if ( 1 != function.dimensionality() ) 00110 { throw GaudiException 00111 ("GaudiMath::Integral: illegal function dimension" , 00112 "*GaudiMath*" , StatusCode::FAILURE ); } 00113 00114 const Genfun::AbsFunction& one = 00115 Genfun::GaudiMathImplementation::Constant ( 1.0 , 1 ) ; 00116 00117 const Genfun::AbsFunction& cross = 00118 Genfun::FunctionDirectProduct (&one , &function ) ; 00119 00120 const Genfun::AbsFunction& result = 00121 Genfun::GaudiMathImplementation::NumericalDefiniteIntegral 00122 ( cross , 1 , a , b , epsabs , epsrel , size ) ; 00123 00124 return result( Genfun::Argument(1) ) ; 00125 }
| double GaudiMath::Integral | ( | const Genfun::AbsFunction & | function, | |
| const double | a, | |||
| const GaudiMath::Integration::Inf | b = GaudiMath::Integration::Infinity, |
|||
| const double | epsabs = 1e-9, |
|||
| const double | epsrel = 1.e-6, |
|||
| const size_t | size = 1000 | |||
| ) |
Definition at line 76 of file Integral.cpp.
00082 { 00083 if ( 1 != function.dimensionality() ) 00084 { throw GaudiException 00085 ("GaudiMath::Integral: illegal function dimension" , 00086 "*GaudiMath*" , StatusCode::FAILURE ); } 00087 00088 const Genfun::AbsFunction& one = 00089 Genfun::GaudiMathImplementation::Constant ( 1.0 , 1 ) ; 00090 00091 const Genfun::AbsFunction& cross = 00092 Genfun::FunctionDirectProduct (&one , &function ) ; 00093 00094 const Genfun::AbsFunction& result = 00095 Genfun::GaudiMathImplementation::NumericalDefiniteIntegral 00096 ( cross , 1 , a , b , epsabs , epsrel , size ) ; 00097 00098 return result( Genfun::Argument(1) ) ; 00099 }
| double GaudiMath::Integral | ( | const Genfun::AbsFunction & | function, | |
| const double | a, | |||
| const double | b, | |||
| const std::vector< double > & | points, | |||
| const double | epsabs = 1e-9, |
|||
| const double | epsrel = 1.e-6, |
|||
| const size_t | size = 1000 | |||
| ) |
Definition at line 48 of file Integral.cpp.
00055 { 00056 00057 if ( 1 != function.dimensionality() ) 00058 { throw GaudiException 00059 ("GaudiMath::Integral: illegal function dimension" , 00060 "*GaudiMath*" , StatusCode::FAILURE ); } 00061 00062 const Genfun::AbsFunction& one = 00063 Genfun::GaudiMathImplementation::Constant ( 1.0 , 1 ) ; 00064 00065 const Genfun::AbsFunction& cross = 00066 Genfun::FunctionDirectProduct (&one , &function ) ; 00067 00068 const Genfun::AbsFunction& result = 00069 Genfun::GaudiMathImplementation::NumericalDefiniteIntegral 00070 ( cross , 1 , a , b, points , epsabs , epsrel , size ) ; 00071 00072 return result( Genfun::Argument(1) ) ; 00073 }
| double GaudiMath::Integral | ( | const Genfun::AbsFunction & | function, | |
| const double | a, | |||
| const double | b, | |||
| const GaudiMath::Integration::Type | type = GaudiMath::Integration::Adaptive, |
|||
| const GaudiMath::Integration::KronrodRule | rule = GaudiMath::Integration::Default, |
|||
| const double | epsabs = 1.e-10, |
|||
| const double | epsrel = 1.e-7, |
|||
| const size_t | size = 1000 | |||
| ) |
Definition at line 20 of file Integral.cpp.
00028 { 00029 if ( 1 != function.dimensionality() ) 00030 { throw GaudiException 00031 ("GaudiMath::Integral: illegal function dimension" , 00032 "*GaudiMath*" , StatusCode::FAILURE ); } 00033 00034 const Genfun::AbsFunction& one = 00035 Genfun::GaudiMathImplementation::Constant ( 1.0 , 1 ) ; 00036 00037 const Genfun::AbsFunction& cross = 00038 Genfun::FunctionDirectProduct (&one , &function ) ; 00039 00040 const Genfun::AbsFunction& result = 00041 Genfun::GaudiMathImplementation::NumericalDefiniteIntegral 00042 ( cross , 1 , a , b, type , rule , epsabs , epsrel , size ) ; 00043 00044 return result( Genfun::Argument(1) ) ; 00045 }