All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
Interpolation.h
Go to the documentation of this file.
1 #ifndef GAUDIMATH_INTERPOLATION_H
2 #define GAUDIMATH_INTERPOLATION_H 1
3 // ============================================================================
4 // incldue files
5 // ============================================================================
6 
7 namespace GaudiMath
8 {
9  namespace Interpolation
10  {
11  enum Type
12  {
13  Linear = 0 , // linear interpolation
14  Polynomial , // polinomial interpolation
15  Cspline , // Cubic spline with natural boundary conditions
16  Cspline_Periodic , // Cubic spline with periodic boundary conditions
17  Akima , // Akima spline with natural boundary conditions
18  Akima_Periodic // Akima spline with periodic boundary conditions
19  };
20  } // end of namespace Interpolation
21 } //end of namespace GaudiMath
22 
23 #endif // GAUDIMATH_INTERPOLATION_H
24 // ============================================================================
GaudiMath.h GaudiMath/GaudiMath.h.
Definition: Adapters.h:13