source: XIOS/dev/dev_ym/XIOS_COUPLING/src/node/interpolate_axis.hpp @ 1984

Last change on this file since 1984 was 1984, checked in by ymipsl, 3 years ago

intermediate commit for new tranformation engine?
YM

File size: 2.4 KB
Line 
1#ifndef __XIOS_CInterpolateAxis__
2#define __XIOS_CInterpolateAxis__
3
4/// xios headers ///
5#include "xios_spl.hpp"
6#include "attribute_enum.hpp"
7#include "attribute_enum_impl.hpp"
8#include "attribute_array.hpp"
9#include "declare_attribute.hpp"
10#include "object_template.hpp"
11#include "group_factory.hpp"
12#include "declare_group.hpp"
13#include "transformation.hpp"
14#include "axis.hpp"
15
16namespace xios {
17  /// ////////////////////// Déclarations ////////////////////// ///
18  class CInterpolateAxisGroup;
19  class CInterpolateAxisAttributes;
20  class CInterpolateAxis;
21  class CAxis;
22
23  ///--------------------------------------------------------------
24
25  // Declare/Define CFileAttribute
26  BEGIN_DECLARE_ATTRIBUTE_MAP(CInterpolateAxis)
27#include "interpolate_axis_attribute.conf"
28  END_DECLARE_ATTRIBUTE_MAP(CInterpolateAxis)
29
30  ///--------------------------------------------------------------
31  /*!
32    \class CInterpolateAxis
33    This class describes interpolate_axis in xml file.
34  */
35  class CInterpolateAxis
36    : public CObjectTemplate<CInterpolateAxis>
37    , public CInterpolateAxisAttributes
38    , public CTransformation<CAxis>
39  {
40    public :
41      typedef CObjectTemplate<CInterpolateAxis> SuperClass;
42      typedef CInterpolateAxisAttributes SuperClassAttribute;
43      typedef CInterpolateAxis MyClass ;
44      typedef CTransformation<CAxis> SuperTransform ;
45
46    public :
47      /// Constructeurs ///
48      CInterpolateAxis(void);
49      explicit CInterpolateAxis(const StdString& id);
50
51      /// Destructeur ///
52      virtual ~CInterpolateAxis(void);
53
54      virtual void checkValid(CAxis* axisDest);
55
56      std::vector<StdString> checkAuxInputs_();
57
58      /// Accesseurs statiques ///
59      static StdString GetName(void);
60      static StdString GetDefName(void);
61      static ENodeType GetType(void);
62      const string& getId(void) { return this->SuperClass::getId();}
63      ETranformationType getTransformationType(void) { return TRANS_INTERPOLATE_AXIS ;}
64      static CTransformation<CAxis>* getTransformation(const StdString& id) { return SuperClass::get(id);}
65      virtual void inheritFrom(SuperTransform* srcTransform) { solveDescInheritance(true, this->SuperClass::get((MyClass*)srcTransform)) ;}
66    private:
67      static bool registerTrans();
68      static CTransformation<CAxis>* create(const StdString& id, xml::CXMLNode* node);
69      static bool _dummyRegistered;
70  }; // class CInterpolateAxis
71
72  DECLARE_GROUP(CInterpolateAxis);
73} // namespace xios
74
75#endif // __XIOS_CInterpolateAxis__
Note: See TracBrowser for help on using the repository browser.