source: XIOS/trunk/src/config/axis_attribute.conf @ 775

Last change on this file since 775 was 775, checked in by mhnguyen, 8 years ago

Implementing the reading of attributes of an axis from a file

+) 3d grid can be read directly from a file
+) Clean some redundant codes
+) Add new attribute declaration that allows to output only desired attributes

Test
+) On Curie
+) test_remap passes and result is 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: 662 bytes
Line 
1DECLARE_ATTRIBUTE(StdString, name)
2DECLARE_ATTRIBUTE(StdString, standard_name)
3DECLARE_ATTRIBUTE(StdString, long_name)
4
5DECLARE_ATTRIBUTE(StdString, unit)
6
7DECLARE_ATTRIBUTE(int,       n_glo)
8DECLARE_ENUM2(positive, up, down)
9
10/* GLOBAL */
11DECLARE_ATTRIBUTE(int,       n_distributed_partition)
12
13/* LOCAL */
14DECLARE_ARRAY(double, 1, value)
15
16DECLARE_ATTRIBUTE(StdString, axis_ref)
17
18/* LOCAL */
19DECLARE_ATTRIBUTE(int,       data_n)
20DECLARE_ATTRIBUTE(int,       data_begin)
21DECLARE_ARRAY(int, 1 , data_index)
22
23/*LOCAL */
24DECLARE_ATTRIBUTE(int,       begin)
25DECLARE_ATTRIBUTE(int,       n)
26
27/* LOCAL */
28DECLARE_ARRAY(bool, 1 , mask)
29DECLARE_ARRAY(double, 2 , bounds)
Note: See TracBrowser for help on using the repository browser.