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