source: XIOS/dev/XIOS_DEV_CMIP6/src/node/node_enum.hpp @ 1301

Last change on this file since 1301 was 1301, checked in by ymipsl, 7 years ago

Add new transformation : reduce axis_to_axis
This a global reduction implying all process whih own the same source axis global point.

YM

  • Property copyright set to
    Software name : XIOS (Xml I/O Server)
    http://forge.ipsl.jussieu.fr/ioserver
    Creation date : January 2009
    Licence : CeCCIL version2
    see license file in root directory : Licence_CeCILL_V2-en.txt
    or http://www.cecill.info/licences/Licence_CeCILL_V2-en.html
    Holder : CEA/LSCE (Laboratoire des Sciences du CLimat et de l'Environnement)
    CNRS/IPSL (Institut Pierre Simon Laplace)
    Project Manager : Yann Meurdesoif
    yann.meurdesoif@cea.fr
File size: 1.0 KB
Line 
1#ifndef __XIOS_NODE_ENUM__
2#define __XIOS_NODE_ENUM__
3
4//#define DECLARE_NODE(Name_, name_)     ,e##Name_, g##Name_
5//#define DECLARE_NODE_PAR(Name_, name_) ,e##Name_, g##Name_
6
7namespace xios
8{
9      /// ////////////////////// Définitions ////////////////////// ///
10      typedef enum _node_type
11      {
12         Unknown = 0,
13         eAxis,gAxis,
14         eDomain,gDomain,
15         eField,gField,
16         eFile,gFile,
17         eGrid,gGrid,
18         eVariable,gVariable,
19         eContext,gContext,
20         eCalendarWrapper,
21         eTransformation,
22         eInverseAxis,
23         eZoomAxis,
24         eInterpolateAxis,
25         eZoomDomain,
26         eInterpolateDomain,
27         eGenerateRectilinearDomain,
28         eScalar,
29         eReduceAxisToScalar,
30         eReduceDomainToAxis,
31         eReduceAxisToAxis,
32         eExtractDomainToAxis,
33         eComputeConnectivityDomain,
34         eExpandDomain,
35         eExtractAxisToScalar,
36         eReduceDomainToScalar,
37         eTemporalSplitting
38      } ENodeType;
39
40} // namespace xios
41
42#endif // __XIOS_NODE_ENUM__
Note: See TracBrowser for help on using the repository browser.