source: XIOS2/trunk/src/node/mesh_values.hpp @ 2515

Last change on this file since 2515 was 2515, checked in by jderouillat, 13 months ago

Modified default fill values in UGRID (From A. Stirnemann)

File size: 378 bytes
Line 
1#ifndef __XIOS_MESH_VALUES_HPP__
2#define __XIOS_MESH_VALUES_HPP__
3
4namespace xios
5{
6  /// constants for use as fill values in mesh connectivity arrays
7
8  inline int fill_value_face_faces()
9  {
10    return -999;
11  }
12
13  inline int fill_value_face_edges()
14  {
15    return -999;
16  }
17
18  inline int fill_value_edge_faces()
19  {
20    return -999;
21  }
22}
23
24#endif // __XIOS_MESH_VALUES_HPP__
Note: See TracBrowser for help on using the repository browser.