Jpp test-rotations-old
the software that should make you happy
Loading...
Searching...
No Matches
JPolynome3G.cc File Reference

Example program to test multi-dimensional integration. More...

#include <string>
#include <iostream>
#include <iomanip>
#include <cmath>
#include <map>
#include "JMath/JPolynome.hh"
#include "JTools/JMapList.hh"
#include "JTools/JFunction1D_t.hh"
#include "JTools/JFunctionalMap_t.hh"
#include "JTools/JMultiFunction.hh"
#include "JTools/JToolsToolkit.hh"
#include "JTools/JFunctionalMap.hh"
#include "Jeep/JPrint.hh"
#include "Jeep/JParser.hh"
#include "Jeep/JMessage.hh"

Go to the source code of this file.

Functions

int main (int argc, char **argv)
 

Detailed Description

Example program to test multi-dimensional integration.

Author
mdejong

Definition in file JPolynome3G.cc.

Function Documentation

◆ main()

int main ( int argc,
char ** argv )

Definition at line 245 of file JPolynome3G.cc.

246{
247 using namespace std;
248 using namespace JPP;
249
250 {
251 typedef JGridPolint3Function1D_t JFunction1D_t;
253 JPolint3FunctionalGridMap>::maplist JMaplist_t;
254 typedef JMultiFunction<JFunction1D_t, JMaplist_t> JMultiFunction_t;
255
256 if (do_main<JMultiFunction_t>(argc, argv, "polint") != 0) return 1;
257 }
258
259 {
260 typedef JGridSplineFunction1D_t JFunction1D_t;
262 JSplineFunctionalGridMap>::maplist JMaplist_t;
263 typedef JMultiFunction<JFunction1D_t, JMaplist_t> JMultiFunction_t;
264
265 if (do_main<JMultiFunction_t>(argc, argv, "spline") != 0) return 1;
266 }
267}
Multidimensional interpolation method.
This name space includes all other name spaces (except KM3NETDAQ, KM3NET and ANTARES).
Type definition of a 3rd degree polynomial interpolation based on a JGridCollection with result type ...
Type definition of a spline interpolation based on a JGridCollection with result type double.
Auxiliary class for recursive map list generation.
Definition JMapList.hh:109
Type definition of a 3rd degree polynomial interpolation based on a JGridMap implementation.
Type definition of a spline interpolation based on a JGridMap implementation.