source: XIOS/dev/dev_ym/XIOS_COUPLING/src/node/interpolate_domain.hpp @ 1994

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

intermediate commit for new tranformation engine?
YM

File size: 2.5 KB
Line 
1#ifndef __XIOS_CInterpolateDomain__
2#define __XIOS_CInterpolateDomain__
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 "domain.hpp"
15
16namespace xios {
17  /// ////////////////////// Déclarations ////////////////////// ///
18  class CInterpolateDomainGroup;
19  class CInterpolateDomainAttributes;
20  class CInterpolateDomain;
21  class CDomain;
22
23  ///--------------------------------------------------------------
24
25  // Declare/Define CFileAttribute
26  BEGIN_DECLARE_ATTRIBUTE_MAP(CInterpolateDomain)
27#include "interpolate_domain_attribute.conf"
28  END_DECLARE_ATTRIBUTE_MAP(CInterpolateDomain)
29
30  ///--------------------------------------------------------------
31  /*!
32    \class CInterpolateDomain
33    This class describes interpolate_from_file_domain in xml file.
34  */
35  class CInterpolateDomain
36    : public CObjectTemplate<CInterpolateDomain>
37    , public CInterpolateDomainAttributes
38    , public CTransformation<CDomain>
39  {
40    public :
41      typedef CObjectTemplate<CInterpolateDomain> SuperClass;
42      typedef CInterpolateDomainAttributes SuperClassAttribute;
43      typedef CInterpolateDomain MyClass ;
44      typedef CTransformation<CDomain> SuperTransform ;
45
46    public :
47      /// Constructeurs ///
48      CInterpolateDomain(void);
49      explicit CInterpolateDomain(const StdString& id);
50
51      /// Destructeur ///
52      virtual ~CInterpolateDomain(void);
53
54      virtual void checkValid(CDomain* domainSource);
55
56      /// Accesseurs statiques ///
57      static StdString GetName(void);
58      static StdString GetDefName(void);
59      static ENodeType GetType(void);
60      const string& getId(void) { return this->SuperClass::getId();}
61      ETranformationType getTransformationType(void) { return TRANS_INTERPOLATE_DOMAIN ;}
62      static CTransformation<CDomain>* getTransformation(const StdString& id) { return SuperClass::get(id);}
63      virtual void inheritFrom(SuperTransform* srcTransform) { solveDescInheritance(true, this->SuperClass::get((MyClass*)srcTransform)) ;}
64    private:
65      static bool registerTrans();
66      static CTransformation<CDomain>* create(const StdString& id, xml::CXMLNode* node);
67      static bool _dummyRegistered;
68  }; // class CInterpolateDomain
69
70  DECLARE_GROUP(CInterpolateDomain);
71} // namespace xios
72
73#endif // __XIOS_CInterpolateDomain__
Note: See TracBrowser for help on using the repository browser.