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

Last change on this file since 680 was 657, checked in by mhnguyen, 9 years ago

Making changes in domain to make sure unstructed grid work with new method of index distribution

+) Change the way define i_index and j_index of a domain
+) Remove some redundant attributes of domain
+) Adjust the way to calculate index distribution on server side

Test
+) Make some minor change to test_unstruct_complete to work with new XIOS
+) On Curie
+) All test pass and correct

  • 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: 754 bytes
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         eInterpolateFromFileDomain
27
28      } ENodeType;
29
30} // namespace xios
31
32#endif // __XIOS_NODE_ENUM__
Note: See TracBrowser for help on using the repository browser.