source: XIOS3/trunk/src/node/node_enum.hpp @ 2458

Last change on this file since 2458 was 2458, checked in by ymipsl, 16 months ago

Merge XIOS_FILE_SERVICE dev branch into trunk

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.3 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         eCouplerIn,gCouplerIn,
18         eCouplerOut,gCouplerOut,
19         eGrid,gGrid,
20         eVariable,gVariable,
21         eContext,gContext,
22         eCalendarWrapper,
23         eTransformation,
24         eInverseAxis,
25         eZoomAxis,
26         eInterpolateAxis,
27         eExtractAxis,
28         eZoomDomain,
29         eInterpolateDomain,
30         eGenerateRectilinearDomain,
31         eScalar,
32         eReduceAxisToScalar,
33         eReduceDomainToAxis,
34         eReduceAxisToAxis,
35         eExtractDomainToAxis,
36         eComputeConnectivityDomain,
37         eExpandDomain,
38         eExtractAxisToScalar,
39         eReduceDomainToScalar,
40         eTemporalSplitting,
41         eDuplicateScalarToAxis,
42         eReduceScalarToScalar,
43         eReorderDomain,
44         eExtractDomain,
45         ePoolNode,gPoolNode,
46         eServiceNode,gServiceNode,
47//         eService, gService
48       } ENodeType;
49
50} // namespace xios
51
52#endif // __XIOS_NODE_ENUM__
Note: See TracBrowser for help on using the repository browser.