Salome HOME
compilation on Linux
[modules/hydro.git] / src / HYDROData / HYDROData_LinearInterpolator.cxx
index fedb3f12b8b9066f03c68817876060a042fa9167..9a8a7a9313a7c2084ab0a99ea196315441ef531c 100644 (file)
@@ -21,7 +21,8 @@
 //
 
 #include "HYDROData_LinearInterpolator.h"
-
+#include <cstdlib>
+#include <cmath>
 
 HYDROData_LinearInterpolator::HYDROData_LinearInterpolator()
 {
@@ -31,9 +32,9 @@ HYDROData_LinearInterpolator::~HYDROData_LinearInterpolator()
 {
 }
 
-std::string HYDROData_LinearInterpolator::GetDescription() const
+TCollection_AsciiString HYDROData_LinearInterpolator::GetDescription() const
 {
-  std::string aDescription( "Simple linear interpolator" );
+  TCollection_AsciiString aDescription( "Simple linear interpolator" );
 
   return aDescription;
 }
@@ -44,8 +45,8 @@ void HYDROData_LinearInterpolator::Calculate()
   ClearResults();
 
   // Check input data
-  std::vector<double> aProfile1 = GetFirstProfile();
-  std::vector<double> aProfile2 = GetSecondProfile();
+  std::vector<double> aProfile1 = GetFirstProfileCoords();
+  std::vector<double> aProfile2 = GetSecondProfileCoords();
   int aNbProfilesToCompute = GetNbProfilesToCompute();
 
   int aSize1 = aProfile1.size();