22inline double f5(
const double x0,
28 static const double a = 1.0;
29 static const double b = 1.0;
30 static const double c = 1.0;
33 x0 * (a + x0 * (b + c*x0)) *
34 x1 * (a + x1 * (b + c*x1)) *
35 x2 * (a + x2 * (b + c*x2)) *
36 x3 * (a + x3 * (b + c*x3)) *
37 x4 * (a + x4 * (b + c*x4));
46int main(
int argc,
char **argv)
57 JParser<> zap(
"Example program to test multi-dimensional interpolation with multi-dimensional function objects.");
65 catch(
const exception &error) {
66 FATAL(error.what() << endl);
70 const double xmin = -1.0;
71 const double xmax = +1.0;
89 for (
double x0 = xmin; x0 <= xmax + 0.5*dx; x0 += dx) {
90 for (
double x1 = xmin; x1 <= xmax + 0.5*dx; x1 += dx) {
91 for (
double x2 = xmin; x2 <= xmax + 0.5*dx; x2 += dx) {
92 for (
double x3 = xmin; x3 <= xmax + 0.5*dx; x3 += dx) {
93 for (
double x4 = xmin; x4 <= xmax + 0.5*dx; x4 += dx) {
94 g5[x0][x1][x2][x3][x4] =
f5(x0, x1, x2, x3, x4);
102 g5.setExceptionHandler(
new JFunction1D_t::JDefaultResult(
JMATH::zero));
105 if (numberOfEvents > 0) {
111 for (
int i = 0; i != numberOfEvents; ++i) {
113 const double x0 = gRandom->Uniform(xmin, xmax);
114 const double x1 = gRandom->Uniform(xmin, xmax);
115 const double x2 = gRandom->Uniform(xmin, xmax);
116 const double x3 = gRandom->Uniform(xmin, xmax);
117 const double x4 = gRandom->Uniform(xmin, xmax);
119 const double v =
f5(x0,x1,x2,x3,x4);
123 const double w = g5(x0,x1,x2,x3,x4);
132 timer.
print(cout, 1.0 / numberOfEvents);
Various implementations of functional maps.
General purpose messaging.
Utility class to parse command line options.
#define make_field(A,...)
macro to convert parameter to JParserTemplateElement object
int main(int argc, char **argv)
double f5(const double x0, const double x1, const double x2, const double x3, const double x4)
5D function.
int numberOfBins
number of bins for average CDF integral of optical module
Auxiliary class for CPU timing and usage.
void print(std::ostream &out, const JScale_t scale=milli_t) const
Print timer data.
Utility class to parse command line options.
static const JZero zero
Function object to assign zero value.
This name space includes all other name spaces (except KM3NETDAQ, KM3NET and ANTARES).