source: XIOS/dev/dev_olga/src/config/domain_attribute.conf @ 1025

Last change on this file since 1025 was 1025, checked in by mhnguyen, 7 years ago

Merging working version of coupler

+) Add some changes of domain and axis: Retransfer the atttributes in a generic ways for each level of client (or server)
+) Remove some spoiled files from the previous commits

Test
+) No test

  • 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.6 KB
Line 
1/* GLOBAL */
2DECLARE_ATTRIBUTE(StdString       , name)
3DECLARE_ATTRIBUTE(StdString       , standard_name)
4DECLARE_ATTRIBUTE(StdString       , long_name)
5
6/* GLOBAL */
7DECLARE_ATTRIBUTE(int             , ni_glo)
8DECLARE_ATTRIBUTE(int             , nj_glo)
9
10/* LOCAL */
11DECLARE_ATTRIBUTE(int             , ibegin, false)
12DECLARE_ATTRIBUTE(int             , ni, false)
13
14/* LOCAL */
15DECLARE_ATTRIBUTE(int             , jbegin, false)
16DECLARE_ATTRIBUTE(int             , nj, false)
17
18
19DECLARE_ARRAY(int,1             , i_index, false)
20DECLARE_ARRAY(int,1             , j_index, false)
21
22/* LOCAL */
23DECLARE_ARRAY(bool, 1 , mask_1d, false)
24DECLARE_ARRAY(bool, 2 , mask_2d)
25
26/* GLOBAL */
27DECLARE_ATTRIBUTE(int             , data_dim)
28
29/* LOCAL */
30DECLARE_ATTRIBUTE(int             , data_ni, false)
31DECLARE_ATTRIBUTE(int             , data_nj, false)
32DECLARE_ATTRIBUTE(int             , data_ibegin, false)
33DECLARE_ATTRIBUTE(int             , data_jbegin, false)
34
35/* LOCAL */
36DECLARE_ARRAY(int, 1 , data_i_index, false)
37DECLARE_ARRAY(int, 1,  data_j_index, false)
38
39/* LOCAL */
40DECLARE_ARRAY(double, 1, lonvalue_1d, false)
41DECLARE_ARRAY(double, 1, latvalue_1d, false)
42DECLARE_ARRAY(double, 2, lonvalue_2d, false)
43DECLARE_ARRAY(double, 2, latvalue_2d, false)
44
45DECLARE_ATTRIBUTE(int, nvertex)
46DECLARE_ARRAY(double, 2, bounds_lon_1d, false)
47DECLARE_ARRAY(double, 2, bounds_lat_1d, false)
48DECLARE_ARRAY(double, 3, bounds_lon_2d, false)
49DECLARE_ARRAY(double, 3, bounds_lat_2d, false)
50
51DECLARE_ARRAY(double, 2, area)
52
53DECLARE_ENUM4(type,rectilinear,curvilinear,unstructured, gaussian)
54DECLARE_ATTRIBUTE(StdString, domain_ref)
Note: See TracBrowser for help on using the repository browser.