Ignore:
Timestamp:
06/22/15 13:36:37 (9 years ago)
Author:
mhnguyen
Message:

Final tests of zoom and inverse on axis

+) Modify test_client and test_complete to work with new grid definition
+) Correct some bugs causing memory leak
+) Clean abundant code
+) Add more comments to new files

Test
+) On Curie
+) test_client and test_complete pass with correct results

Location:
XIOS/trunk/src/transformation
Files:
1 added
1 moved

Legend:

Unmodified
Added
Removed
  • XIOS/trunk/src/transformation/axis_algorithm_transformation.hpp

    r623 r624  
     1/*! 
     2   \file axis_algorithm_transformation.hpp 
     3   \author Ha NGUYEN 
     4   \since 14 May 2015 
     5   \date 09 June 2015 
     6 
     7   \brief Interface for all axis transformation algorithms. 
     8 */ 
    19#ifndef __XIOS_AXIS_ALGORITHM_TRANSFORMATION_HPP__ 
    210#define __XIOS_AXIS_ALGORITHM_TRANSFORMATION_HPP__ 
     
    412#include "generic_algorithm_transformation.hpp" 
    513#include "axis.hpp" 
    6 #include "concrete_algo.hpp" 
    714 
    815namespace xios { 
    916 
     17/*! 
     18  \class CAxisAlgorithmTransformation 
     19  Algorithms for axis. 
     20*/ 
    1021class CAxisAlgorithmTransformation : public virtual CGenericAlgorithmTransformation 
    1122{ 
     
    2435                                                        std::vector<CArray<size_t,1> >& globalIndexSrcGrid); 
    2536  void computeIndexSourceMapping(); 
     37 
    2638protected: 
     39  //! Global index of an axis on grid destination 
    2740  std::vector<int> axisDestGlobalIndex_; 
     41 
     42  //! Size of 
    2843  int axisDestGlobalSize_; 
    2944 
Note: See TracChangeset for help on using the changeset viewer.