source: XIOS/trunk/src/filter/axis_algorithm_inverse.hpp @ 623

Last change on this file since 623 was 623, checked in by mhnguyen, 9 years ago

Implementing transformation algorithm: zoom axis (local commit)

+) Implement zoom axis: zoomed points are points not masked
+) Correct some minor bugs

Test
+) Ok with normal cases: zoom in the last of transformation list
+) There is still a bug in case of zoom then inverse

File size: 453 bytes
Line 
1#ifndef __XIOS_AXIS_ALGORITHM_INVERSE_HPP__
2#define __XIOS_AXIS_ALGORITHM_INVERSE_HPP__
3
4#include "axis_algorithm_transformation.hpp"
5#include "axis.hpp"
6
7namespace xios {
8
9class CAxisAlgorithmInverse : public CAxisAlgorithmTransformation
10{
11public:
12  CAxisAlgorithmInverse(CAxis* axisDestination, CAxis* axisSource);
13
14  virtual ~CAxisAlgorithmInverse() {}
15
16  virtual void computeIndexSourceMapping();
17};
18
19}
20#endif // __XIOS_AXIS_ALGORITHM_INVERSE_HPP__
Note: See TracBrowser for help on using the repository browser.