Jpp 20.0.0-rc.1
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 244 of file JPolynome3G.cc.

245{
246 using namespace std;
247 using namespace JPP;
248
249 {
250 typedef JGridPolint3Function1D_t JFunction1D_t;
252 JPolint3FunctionalGridMap>::maplist JMaplist_t;
253 typedef JMultiFunction<JFunction1D_t, JMaplist_t> JMultiFunction_t;
254
255 if (do_main<JMultiFunction_t>(argc, argv, "polint") != 0) return 1;
256 }
257
258 {
259 typedef JGridSplineFunction1D_t JFunction1D_t;
261 JSplineFunctionalGridMap>::maplist JMaplist_t;
262 typedef JMultiFunction<JFunction1D_t, JMaplist_t> JMultiFunction_t;
263
264 if (do_main<JMultiFunction_t>(argc, argv, "spline") != 0) return 1;
265 }
266}
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.