Ignore:
Timestamp:
03/22/18 10:43:20 (6 years ago)
Author:
yushan
Message:

branch_openmp merged with XIOS_DEV_CMIP6@1459

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS/dev/branch_openmp/src/config/domain_attribute.conf

    r1045 r1460  
    33DECLARE_ATTRIBUTE(StdString       , standard_name) 
    44DECLARE_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) 
    511 
    612/* GLOBAL */ 
     
    915 
    1016/* LOCAL */ 
    11 DECLARE_ATTRIBUTE(int             , ibegin) 
    12 DECLARE_ATTRIBUTE(int             , ni) 
     17DECLARE_ATTRIBUTE(int             , ibegin, false) 
     18DECLARE_ATTRIBUTE(int             , ni, false) 
    1319 
    1420/* LOCAL */ 
    15 DECLARE_ATTRIBUTE(int             , jbegin) 
    16 DECLARE_ATTRIBUTE(int             , nj) 
     21DECLARE_ATTRIBUTE(int             , jbegin, false) 
     22DECLARE_ATTRIBUTE(int             , nj, false) 
    1723 
    1824 
    19 DECLARE_ARRAY(int,1             , i_index) 
    20 DECLARE_ARRAY(int,1             , j_index) 
     25DECLARE_ARRAY(int,1             , i_index, false) 
     26DECLARE_ARRAY(int,1             , j_index, false) 
    2127 
    2228/* LOCAL */ 
    23 DECLARE_ARRAY(bool, 1 , mask_1d) 
    24 DECLARE_ARRAY(bool, 2 , mask_2d) 
     29DECLARE_ARRAY(bool, 1 , mask_1d, false) 
     30DECLARE_ARRAY(bool, 2 , mask_2d, false) 
    2531 
    2632/* GLOBAL */ 
     
    2834 
    2935/* LOCAL */ 
    30 DECLARE_ATTRIBUTE(int             , data_ni) 
    31 DECLARE_ATTRIBUTE(int             , data_nj) 
    32 DECLARE_ATTRIBUTE(int             , data_ibegin) 
    33 DECLARE_ATTRIBUTE(int             , data_jbegin) 
     36DECLARE_ATTRIBUTE(int             , data_ni, false) 
     37DECLARE_ATTRIBUTE(int             , data_nj, false) 
     38DECLARE_ATTRIBUTE(int             , data_ibegin, false) 
     39DECLARE_ATTRIBUTE(int             , data_jbegin, false) 
    3440 
    3541/* LOCAL */ 
    36 DECLARE_ARRAY(int, 1 , data_i_index) 
    37 DECLARE_ARRAY(int, 1,  data_j_index) 
     42DECLARE_ARRAY(int, 1 , data_i_index, false) 
     43DECLARE_ARRAY(int, 1,  data_j_index, false) 
    3844 
    3945/* LOCAL */ 
    40 DECLARE_ARRAY(double, 1, lonvalue_1d) 
    41 DECLARE_ARRAY(double, 1, latvalue_1d) 
    42 DECLARE_ARRAY(double, 2, lonvalue_2d) 
    43 DECLARE_ARRAY(double, 2, latvalue_2d) 
     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) 
    4450 
    4551DECLARE_ATTRIBUTE(int, nvertex) 
    46 DECLARE_ARRAY(double, 2, bounds_lon_1d) 
    47 DECLARE_ARRAY(double, 2, bounds_lat_1d) 
    48 DECLARE_ARRAY(double, 3, bounds_lon_2d) 
    49 DECLARE_ARRAY(double, 3, bounds_lat_2d) 
     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) 
    5056 
    5157DECLARE_ARRAY(double, 2, area) 
Note: See TracChangeset for help on using the changeset viewer.