Last change
on this file since 976 was
976,
checked in by mhnguyen, 8 years ago
|
Ticket 110: Implementing domain reduction to scalar
+) Add xml node for this new transformation
+) Add algorithm for this new transformation
Test
+) On Curie
+) Work
|
-
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:
1016 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 | |
---|
7 | namespace 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 | eExtractDomainToAxis, |
---|
32 | eComputeConnectivityDomain, |
---|
33 | eExpandDomain, |
---|
34 | eExtractAxisToScalar, |
---|
35 | eReduceDomainToScalar |
---|
36 | |
---|
37 | } ENodeType; |
---|
38 | |
---|
39 | } // namespace xios |
---|
40 | |
---|
41 | #endif // __XIOS_NODE_ENUM__ |
---|
Note: See
TracBrowser
for help on using the repository browser.