source: XIOS/trunk/src/node/node_enum.hpp @ 1558

Last change on this file since 1558 was 1558, checked in by oabramkina, 6 years ago

Adding transformation "extract" for axis.

  • 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.2 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         eExtractAxis,
26         eZoomDomain,
27         eInterpolateDomain,
28         eGenerateRectilinearDomain,
29         eScalar,
30         eReduceAxisToScalar,
31         eReduceDomainToAxis,
32         eReduceAxisToAxis,
33         eExtractDomainToAxis,
34         eComputeConnectivityDomain,
35         eExpandDomain,
36         eExtractAxisToScalar,
37         eReduceDomainToScalar,
38         eTemporalSplitting,
39         eDuplicateScalarToAxis,
40         eReduceScalarToScalar,
41         eReorderDomain,
42         eExtractDomain
43       } ENodeType;
44
45} // namespace xios
46
47#endif // __XIOS_NODE_ENUM__
Note: See TracBrowser for help on using the repository browser.