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

Last change on this file since 2133 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
RevLine 
[591]1#ifndef __XIOS_NODE_ENUM__
2#define __XIOS_NODE_ENUM__
[219]3
[300]4//#define DECLARE_NODE(Name_, name_)     ,e##Name_, g##Name_
5//#define DECLARE_NODE_PAR(Name_, name_) ,e##Name_, g##Name_
[219]6
[335]7namespace xios
[219]8{
9      /// ////////////////////// Définitions ////////////////////// ///
10      typedef enum _node_type
11      {
[300]12         Unknown = 0,
13         eAxis,gAxis,
14         eDomain,gDomain,
15         eField,gField,
16         eFile,gFile,
17         eGrid,gGrid,
18         eVariable,gVariable,
[549]19         eContext,gContext,
[619]20         eCalendarWrapper,
[621]21         eTransformation,
22         eInverseAxis,
[630]23         eZoomAxis,
[631]24         eInterpolateAxis,
[1558]25         eExtractAxis,
[657]26         eZoomDomain,
[689]27         eInterpolateDomain,
[887]28         eGenerateRectilinearDomain,
[888]29         eScalar,
[895]30         eReduceAxisToScalar,
31         eReduceDomainToAxis,
[1301]32         eReduceAxisToAxis,
[934]33         eExtractDomainToAxis,
[935]34         eComputeConnectivityDomain,
[960]35         eExpandDomain,
[976]36         eExtractAxisToScalar,
[1275]37         eReduceDomainToScalar,
[1314]38         eTemporalSplitting,
39         eDuplicateScalarToAxis,
[1457]40         eReduceScalarToScalar,
[1549]41         eReorderDomain,
42         eExtractDomain
[1314]43       } ENodeType;
[219]44
[335]45} // namespace xios
[219]46
[591]47#endif // __XIOS_NODE_ENUM__
Note: See TracBrowser for help on using the repository browser.