source: XIOS/dev/XIOS_DEV_CMIP6/src/config/domain_attribute_private.conf @ 1314

Last change on this file since 1314 was 1158, checked in by oabramkina, 7 years ago

Two server levels: merging with trunk r1137.
There are bugs.

File size: 1.9 KB
Line 
1/* PRIVATE ATTRIBUTES */
2DECLARE_ATTRIBUTE_PRIVATE(double,  lon_start)
3DECLARE_ATTRIBUTE_PRIVATE(double,  lon_end)
4DECLARE_ATTRIBUTE_PRIVATE(double,  lat_start)
5DECLARE_ATTRIBUTE_PRIVATE(double,  lat_end)
6
7DECLARE_ATTRIBUTE_PRIVATE(double,  bounds_lon_start)
8DECLARE_ATTRIBUTE_PRIVATE(double,  bounds_lon_end)
9DECLARE_ATTRIBUTE_PRIVATE(double,  bounds_lat_start)
10DECLARE_ATTRIBUTE_PRIVATE(double,  bounds_lat_end)
11
12// Array contain whole value (non distributed) of longitude and latitude read from a file
13DECLARE_ARRAY_PRIVATE(double, 1, lonvalue_rectilinear_read_from_file)
14DECLARE_ARRAY_PRIVATE(double, 1, latvalue_rectilinear_read_from_file)
15
16// Array contain whole value (non distributed) of longitude and latitude of curvilinear read from a file
17DECLARE_ARRAY_PRIVATE(double, 2, lonvalue_curvilinear_read_from_file)
18DECLARE_ARRAY_PRIVATE(double, 2, latvalue_curvilinear_read_from_file)
19DECLARE_ARRAY_PRIVATE(double, 3, bounds_lonvalue_curvilinear_read_from_file)
20DECLARE_ARRAY_PRIVATE(double, 3, bounds_latvalue_curvilinear_read_from_file)
21
22// Array contain whole value (non distributed) of longitude and latitude of unstructured read from a file
23DECLARE_ARRAY_PRIVATE(double, 1, lonvalue_unstructured_read_from_file)
24DECLARE_ARRAY_PRIVATE(double, 1, latvalue_unstructured_read_from_file)
25DECLARE_ARRAY_PRIVATE(double, 2, bounds_lonvalue_unstructured_read_from_file)
26DECLARE_ARRAY_PRIVATE(double, 2, bounds_latvalue_unstructured_read_from_file)
27
28DECLARE_ATTRIBUTE_PRIVATE(int,  global_zoom_ibegin)
29DECLARE_ATTRIBUTE_PRIVATE(int,  global_zoom_ni)
30DECLARE_ATTRIBUTE_PRIVATE(int,  global_zoom_jbegin)
31DECLARE_ATTRIBUTE_PRIVATE(int,  global_zoom_nj)
32
33// Local zoom information
34DECLARE_ATTRIBUTE_PRIVATE(int,  zoom_ibegin)
35DECLARE_ATTRIBUTE_PRIVATE(int,  zoom_ni)
36DECLARE_ATTRIBUTE_PRIVATE(int,  zoom_jbegin)
37DECLARE_ATTRIBUTE_PRIVATE(int,  zoom_nj)
38
39
40DECLARE_ARRAY_PRIVATE(int    ,   1 , zoom_i_index, false)
41DECLARE_ARRAY_PRIVATE(int    ,   1 , zoom_j_index, false)
Note: See TracBrowser for help on using the repository browser.