X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDRO_tests%2Ftest_HYDROData_LandCoverMap.cxx;h=074748771701e180e2e8c2073368cd935d4d9486;hb=e8acef6ae70d40f40ff538499ad29d5fa42882a2;hp=df9deb4c9b47e1eecf2ca2e51db9d7090bb4d447;hpb=90fc4a0d2584d00a796223c5381bdd20790d5479;p=modules%2Fhydro.git diff --git a/src/HYDRO_tests/test_HYDROData_LandCoverMap.cxx b/src/HYDRO_tests/test_HYDROData_LandCoverMap.cxx index df9deb4c..07474877 100644 --- a/src/HYDRO_tests/test_HYDROData_LandCoverMap.cxx +++ b/src/HYDRO_tests/test_HYDROData_LandCoverMap.cxx @@ -44,11 +44,12 @@ #include #include #include +#include #define _DEVDEBUG_ #include "HYDRO_trace.hxx" -const QString REF_DATA_PATH = qgetenv( "HYDRO_ROOT_DIR" ) + "/bin/salome/test"; +extern QString REF_DATA_PATH; const QString DEF_STR_PATH = qgetenv( "HYDRO_ROOT_DIR" ) + "/share/salome/resources/hydro/def_strickler_table.txt"; void test_HYDROData_LandCoverMap::test_add_2_objects() @@ -1181,7 +1182,7 @@ void test_HYDROData_LandCoverMap::test_shp_clc_classification_perf() LCM->StoreLandCovers(aMapFace2ST); - std::vector pnts; + std::vector pnts; #ifdef NDEBUG int N = 1000; //1000*1000 points; uniform distribution for release mode #else @@ -1199,7 +1200,7 @@ void test_HYDROData_LandCoverMap::test_shp_clc_classification_perf() { double px = x0 + (x1-x0)*((double)i/(double)N); double py = y0 + (y1-y0)*((double)j/(double)N); - pnts.push_back(gp_Pnt2d(px,py)); + pnts.push_back(gp_XY(px,py)); } } OSD_Timer aTimer; @@ -1237,7 +1238,7 @@ void test_HYDROData_LandCoverMap::test_shp_clc_classification_check() TopoDS_Shape Sh = LCM->GetShape(); - std::vector pnts; + std::vector pnts; pnts.push_back(gp_XY(0,0)); pnts.push_back(gp_XY(468380, 6382300));