|
Gaudi Framework, version v22r0 |
| Home | Generated: 9 Feb 2011 |
00001 // $Id: Interpolation.h,v 1.2 2005/11/25 10:27:03 mato Exp $ 00002 // ============================================================================ 00003 #ifndef GAUDIMATH_INTERPOLATION_H 00004 #define GAUDIMATH_INTERPOLATION_H 1 00005 // ============================================================================ 00006 // incldue files 00007 // ============================================================================ 00008 00009 namespace GaudiMath 00010 { 00011 namespace Interpolation 00012 { 00013 enum Type 00014 { 00015 Linear = 0 , // linear interpolation 00016 Polynomial , // polinomial interpolation 00017 Cspline , // Cubic spline with natural boundary conditions 00018 Cspline_Periodic , // Cubic spline with periodic boundary conditions 00019 Akima , // Akima spline with natural boundary conditions 00020 Akima_Periodic // Akima spline with periodic boundary conditions 00021 }; 00022 } // end of namespace Interpolation 00023 } //end of namespace GaudiMath 00024 00025 #endif // GAUDIMATH_INTERPOLATION_H 00026 // ============================================================================