Jpp  debug
the software that should make you happy
Functions
JPolynome3H.cc File Reference

Example program to test multi-dimensional interpolation with derivatives. More...

#include <string>
#include <iostream>
#include <iomanip>
#include "TRandom3.h"
#include "JMath/JPolynome.hh"
#include "JTools/JMapList.hh"
#include "JTools/JFunction1D_t.hh"
#include "JTools/JFunctionalMap_t.hh"
#include "JTools/JMultiFunction.hh"
#include "JTools/JQuantile.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 interpolation with derivatives.

Author
mdejong

Definition in file JPolynome3H.cc.

Function Documentation

◆ main()

int main ( int  argc,
char **  argv 
)

Definition at line 231 of file JPolynome3H.cc.

232 {
233  using namespace std;
234  using namespace JPP;
235 
236  {
237  typedef JGridPolint3Function1H_t JFunction1D_t;
239  JPolint3FunctionalGridMapH>::maplist JMaplist_t;
240  typedef JMultiFunction<JFunction1D_t, JMaplist_t> JMultiFunction_t;
241 
242  if (do_main<JMultiFunction_t>(argc, argv, "Polint") != 0) return 1;
243  }
244 
245  {
246  typedef JGridSplineFunction1H_t JFunction1D_t;
248  JSplineFunctionalGridMapH>::maplist JMaplist_t;
249  typedef JMultiFunction<JFunction1D_t, JMaplist_t> JMultiFunction_t;
250 
251  if (do_main<JMultiFunction_t>(argc, argv, "Spline") != 0) return 1;
252  }
253 }
Multidimensional interpolation method.
This name space includes all other name spaces (except KM3NETDAQ, KM3NET and ANTARES).
Definition: JSTDTypes.hh:14
Type definition of a 3rd degree polynomial interpolation with result type JResultDerivative.
Type definition of a spline interpolation based on a JGridCollection with JResultDerivative result ty...
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.