Changeset 2286


Ignore:
Timestamp:
09/23/09 14:25:11 (15 years ago)
Author:
Mathieu Morlighem
Message:

renaming

Location:
issm/trunk/src/c/InterpFromGridToMeshx
Files:
2 moved

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/c/InterpFromGridToMeshx/InterpFromGridToMeshx.cpp

    r2285 r2286  
    1 /*!\file:  InterpFromGridx.cpp
     1/*!\file:  InterpFromGridToMeshx.cpp
    22 * \brief  "c" core code for interpolating values from a structured grid.
    33 */
    44
    5 #include "./InterpFromGridx.h"
     5#include "./InterpFromGridToMeshx.h"
    66#include "../shared/shared.h"
    77
    88#undef __FUNCT__
    9 #define __FUNCT__ "InterpFromGridx"
     9#define __FUNCT__ "InterpFromGridToMeshx"
    1010
    1111int findindices(int* pm,int* pn,double* x,int x_rows, double* y,int y_rows, double xgrid,double ygrid);
    1212
    13 int InterpFromGridx( Vec* pdata_mesh,double* x_in, int x_rows, double* y_in, int y_rows, double* data, int M, int N, double* x_mesh, double* y_mesh, int nods,double default_value) {
     13int InterpFromGridToMeshx( Vec* pdata_mesh,double* x_in, int x_rows, double* y_in, int y_rows, double* data, int M, int N, double* x_mesh, double* y_mesh, int nods,double default_value) {
    1414
    1515
  • issm/trunk/src/c/InterpFromGridToMeshx/InterpFromGridToMeshx.h

    r2285 r2286  
    1 /*!\file InterpFromGridx.h
     1/*!\file InterpFromGridToMeshx.h
    22 * \brief: header file for Data interpolation routines.
    33 */
    44
    5 #ifndef _INTERPFROMGRIDX_H
    6 #define _INTERPFROMGRIDX_H
     5#ifndef _INTERPFROMGRIDTOMESHX_H
     6#define _INTERPFROMGRIDTOMESHX_H
    77
    88#include "../toolkits/toolkits.h"
    99
    10 int InterpFromGridx( Vec* pdata_mesh,double* x, int x_rows, double* y, int y_rows, double* data, int M, int N, double* x_mesh, double* y_mesh, int nods, double default_value);
     10int InterpFromGridToMeshx( Vec* pdata_mesh,double* x, int x_rows, double* y, int y_rows, double* data, int M, int N, double* x_mesh, double* y_mesh, int nods, double default_value);
    1111
    12 #endif /* _INTERPFROMGRIDX_H */
     12#endif /* _INTERPFROMGRIDTOMESHX_H */
    1313
Note: See TracChangeset for help on using the changeset viewer.