source: XIOS/trunk/src/config/domain_attribute.conf @ 501

Last change on this file since 501 was 501, checked in by ymipsl, 10 years ago

Add licence copyright to all file ond directory src using the command :
svn propset -R copyright -F header_licence src

XIOS is now officialy under CeCILL licence

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.8 KB
Line 
1/* GLOBAL */
2DECLARE_ATTRIBUTE(StdString       , name)
3DECLARE_ATTRIBUTE(StdString       , standard_name)
4DECLARE_ATTRIBUTE(StdString       , long_name)
5
6/* Spécifique */
7DECLARE_ATTRIBUTE(StdString       , domain_group_ref)
8
9/* GLOBAL */
10DECLARE_ATTRIBUTE(int             , ni_glo)
11DECLARE_ATTRIBUTE(int             , nj_glo)
12
13/* LOCAL */
14DECLARE_ATTRIBUTE(int             , ibegin)
15DECLARE_ATTRIBUTE(int             , iend)
16DECLARE_ATTRIBUTE(int             , ni)
17
18/* LOCAL */
19DECLARE_ATTRIBUTE(int             , jbegin)
20DECLARE_ATTRIBUTE(int             , jend)
21DECLARE_ATTRIBUTE(int             , nj)
22
23
24DECLARE_ARRAY(int,2             , i_index)
25DECLARE_ARRAY(int,2             , j_index)
26
27/* LOCAL */
28DECLARE_ARRAY(bool, 2 , mask)
29
30/* GLOBAL */
31DECLARE_ATTRIBUTE(int             , data_dim)
32
33/* LOCAL */
34DECLARE_ATTRIBUTE(int             , data_ni)
35DECLARE_ATTRIBUTE(int             , data_nj)
36DECLARE_ATTRIBUTE(int             , data_ibegin)
37DECLARE_ATTRIBUTE(int             , data_jbegin)
38
39/* GLOBAL */
40DECLARE_ATTRIBUTE(int             , zoom_ni)
41DECLARE_ATTRIBUTE(int             , zoom_nj)
42DECLARE_ATTRIBUTE(int             , zoom_ibegin)
43DECLARE_ATTRIBUTE(int             , zoom_jbegin)
44
45/* LOCAL */
46DECLARE_ATTRIBUTE(int             , zoom_ni_loc)
47DECLARE_ATTRIBUTE(int             , zoom_nj_loc)
48DECLARE_ATTRIBUTE(int             , zoom_ibegin_loc)
49DECLARE_ATTRIBUTE(int             , zoom_jbegin_loc)
50
51/* LOCAL */
52DECLARE_ATTRIBUTE(int             , data_n_index)
53DECLARE_ARRAY(int, 1 , data_i_index)
54DECLARE_ARRAY(int, 1,  data_j_index)
55
56/* LOCAL */
57DECLARE_ARRAY(double, 1, lonvalue)
58DECLARE_ARRAY(double, 1, latvalue)
59DECLARE_ATTRIBUTE(int, nvertex)
60DECLARE_ARRAY(double, 2, bounds_lon)
61DECLARE_ARRAY(double, 2, bounds_lat)
62
63DECLARE_ENUM3(type,regular,curvilinear,unstructured)
64
Note: See TracBrowser for help on using the repository browser.