source: XIOS/trunk/src/node/reduce_scalar_to_scalar.hpp @ 2250

Last change on this file since 2250 was 1314, checked in by ymipsl, 6 years ago

Add 2 new spatial transformations :

  • reduce_scalar_to_scalar : global reduction between scalar
  • duplicate_scalar_to_axis : a scalar value is duplicated on each level of the axis.

YM

File size: 2.0 KB
Line 
1#ifndef __XIOS_CReduceScalarToScalar__
2#define __XIOS_CReduceScalarToScalar__
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 CReduceScalarToScalarGroup;
18  class CReduceScalarToScalarAttributes;
19  class CReduceScalarToScalar;
20  class CScalar;
21
22  ///--------------------------------------------------------------
23
24  // Declare/Define CFileAttribute
25  BEGIN_DECLARE_ATTRIBUTE_MAP(CReduceScalarToScalar)
26#include "reduce_scalar_to_scalar_attribute.conf"
27  END_DECLARE_ATTRIBUTE_MAP(CReduceScalarToScalar)
28
29  ///--------------------------------------------------------------
30  /*!
31    \class CReduceScalarToScalar
32    This class describes reduce_scalar in xml file.
33  */
34  class CReduceScalarToScalar
35    : public CObjectTemplate<CReduceScalarToScalar>
36    , public CReduceScalarToScalarAttributes
37    , public CTransformation<CScalar>
38  {
39    public :
40      typedef CObjectTemplate<CReduceScalarToScalar> SuperClass;
41      typedef CReduceScalarToScalarAttributes SuperClassAttribute;
42
43    public :
44      /// Constructeurs ///
45      CReduceScalarToScalar(void);
46      explicit CReduceScalarToScalar(const StdString& id);
47
48      /// Destructeur ///
49      virtual ~CReduceScalarToScalar(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 CReduceScalarToScalar
62
63  DECLARE_GROUP(CReduceScalarToScalar);
64} // namespace xios
65
66#endif // __XIOS_CReduceScalarToScalar__
Note: See TracBrowser for help on using the repository browser.