source: XIOS/dev/branch_openmp/src/config/domain_attribute.conf @ 1460

Last change on this file since 1460 was 1460, checked in by yushan, 6 years ago

branch_openmp merged with XIOS_DEV_CMIP6@1459

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