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

Last change on this file since 1482 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
RevLine 
[219]1/* GLOBAL */
2DECLARE_ATTRIBUTE(StdString       , name)
3DECLARE_ATTRIBUTE(StdString       , standard_name)
4DECLARE_ATTRIBUTE(StdString       , long_name)
[1460]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)
[219]11
12/* GLOBAL */
13DECLARE_ATTRIBUTE(int             , ni_glo)
14DECLARE_ATTRIBUTE(int             , nj_glo)
15
16/* LOCAL */
[1460]17DECLARE_ATTRIBUTE(int             , ibegin, false)
18DECLARE_ATTRIBUTE(int             , ni, false)
[219]19
20/* LOCAL */
[1460]21DECLARE_ATTRIBUTE(int             , jbegin, false)
22DECLARE_ATTRIBUTE(int             , nj, false)
[219]23
[467]24
[1460]25DECLARE_ARRAY(int,1             , i_index, false)
26DECLARE_ARRAY(int,1             , j_index, false)
[467]27
[219]28/* LOCAL */
[1460]29DECLARE_ARRAY(bool, 1 , mask_1d, false)
30DECLARE_ARRAY(bool, 2 , mask_2d, false)
[219]31
32/* GLOBAL */
33DECLARE_ATTRIBUTE(int             , data_dim)
34
35/* LOCAL */
[1460]36DECLARE_ATTRIBUTE(int             , data_ni, false)
37DECLARE_ATTRIBUTE(int             , data_nj, false)
38DECLARE_ATTRIBUTE(int             , data_ibegin, false)
39DECLARE_ATTRIBUTE(int             , data_jbegin, false)
[219]40
41/* LOCAL */
[1460]42DECLARE_ARRAY(int, 1 , data_i_index, false)
43DECLARE_ARRAY(int, 1,  data_j_index, false)
[219]44
45/* LOCAL */
[1460]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)
[664]50
[449]51DECLARE_ATTRIBUTE(int, nvertex)
[1460]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)
[664]56
[611]57DECLARE_ARRAY(double, 2, area)
[219]58
[953]59DECLARE_ENUM4(type,rectilinear,curvilinear,unstructured, gaussian)
[540]60DECLARE_ATTRIBUTE(StdString, domain_ref)
[1045]61DECLARE_ATTRIBUTE(int,       prec)
Note: See TracBrowser for help on using the repository browser.