source: XIOS/dev/dev_olga/src/node/reduce_axis_to_scalar.hpp @ 1130

Last change on this file since 1130 was 888, checked in by mhnguyen, 8 years ago

Adding new transformation for scalar: Reducing an axis to a scalar

+) Add new xml node for new transformation
+) Add new algorithms for axis reduction
+) Make change in some place to make sure everything work fine

Test
+) On Curie
+) Tests pass and are correct

File size: 2.0 KB
Line 
1#ifndef __XIOS_CReduceAxisToScalar__
2#define __XIOS_CReduceAxisToScalar__
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
15namespace xios {
16  /// ////////////////////// Déclarations ////////////////////// ///
17  class CReduceAxisToScalarGroup;
18  class CReduceAxisToScalarAttributes;
19  class CReduceAxisToScalar;
20  class CScalar;
21
22  ///--------------------------------------------------------------
23
24  // Declare/Define CFileAttribute
25  BEGIN_DECLARE_ATTRIBUTE_MAP(CReduceAxisToScalar)
26#include "reduce_axis_to_scalar_attribute.conf"
27  END_DECLARE_ATTRIBUTE_MAP(CReduceAxisToScalar)
28
29  ///--------------------------------------------------------------
30  /*!
31    \class CReduceAxisToScalar
32    This class describes reduce_axis in xml file.
33  */
34  class CReduceAxisToScalar
35    : public CObjectTemplate<CReduceAxisToScalar>
36    , public CReduceAxisToScalarAttributes
37    , public CTransformation<CScalar>
38  {
39    public :
40      typedef CObjectTemplate<CReduceAxisToScalar> SuperClass;
41      typedef CReduceAxisToScalarAttributes SuperClassAttribute;
42
43    public :
44      /// Constructeurs ///
45      CReduceAxisToScalar(void);
46      explicit CReduceAxisToScalar(const StdString& id);
47
48      /// Destructeur ///
49      virtual ~CReduceAxisToScalar(void);
50
51      virtual void checkValid(CScalar* scalarDst);
52
53      /// Accesseurs statiques ///
54      static StdString GetName(void);
55      static StdString GetDefName(void);
56      static ENodeType GetType(void);
57    private:
58      static bool registerTrans();
59      static CTransformation<CScalar>* create(const StdString& id, xml::CXMLNode* node);
60      static bool _dummyRegistered;
61  }; // class CReduceAxisToScalar
62
63  DECLARE_GROUP(CReduceAxisToScalar);
64} // namespace xios
65
66#endif // __XIOS_CReduceAxisToScalar__
Note: See TracBrowser for help on using the repository browser.