Ignore:
Timestamp:
05/30/21 23:30:01 (3 years ago)
Author:
yushan
Message:

temporal commit for merging graph into XIOS_coupling

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS/dev/dev_trunk_graph/src/transformation/axis_algorithm/axis_algorithm_interpolate_coordinate.hpp

    r2030 r2137  
    3232  virtual ~CAxisAlgorithmInterpolateCoordinate() {} 
    3333  virtual vector<string> getAuxFieldId(void)  ; 
     34  virtual bool transformAuxField(int pos) ; 
    3435  virtual void apply(int dimBefore, int dimAfter, const CArray<double,1>& dataIn,  
    3536                     const vector<CArray<double,1>>& auxDataIn, CArray<double,1>& dataOut) ; 
     
    4445  // Interpolation order 
    4546  int order_; 
    46   StdString coordinate_; 
     47  StdString coordinateSrc_; // pressure src 
     48  StdString coordinateDest_; // pressure dst 
    4749  bool hasCoordinate_=false ; 
     50  bool hasCoordinateSrc_=false ; 
     51  bool hasCoordinateDest_=false ; 
    4852 
    4953  CAxis* axisSrc_=nullptr ; 
     
    5155  size_t ngloSrc_ ; 
    5256  size_t nDest_ ; 
    53   vector<double> destCoordinate_ ; 
     57  vector<double> srcCoordinate_  ; // src axis value 
     58  vector<double> destCoordinate_ ; // dst axis value 
    5459 
    5560public: 
Note: See TracChangeset for help on using the changeset viewer.