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

Implementing generic transformation algorithm (local commit)

+) Change a little bit to make sure everything work in order

Test
+) test_new_features passe with inverse

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS/trunk/src/filter/axis_inverse.hpp

    r620 r621  
    22#define __XIOS_AXIS_ALGORITHM_INVERSE_HPP__ 
    33 
    4 #include "axis_algorithm_transformation.hpp" 
     4#include "concrete_algo.hpp" 
    55#include "axis.hpp" 
    66 
    77namespace xios { 
    88 
    9 class CAxisInverse : public CAxisAlgorithmTransformation 
     9class CAxisInverse : public CConcreteAlgo 
    1010{ 
    1111public: 
     
    1313 
    1414  virtual ~CAxisInverse() {} 
     15 
     16  virtual void computeIndexSourceMapping(const std::map<int, std::vector<int> >& transformationMappingOfPreviousAlgo); 
     17 
    1518protected: 
    16   virtual void computeIndexSourceMapping(); 
     19  std::vector<int> axisDestGlobalIndex_; 
    1720 
    1821private: 
Note: See TracChangeset for help on using the changeset viewer.