Changeset 625
- Timestamp:
- 06/22/15 13:36:43 (10 years ago)
- Location:
- XIOS/trunk/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
XIOS/trunk/src/node/inverse_axis.hpp
r621 r625 1 #ifndef __X MLIO_CInverseAxis__2 #define __X MLIO_CInverseAxis__1 #ifndef __XIOS_CInverseAxis__ 2 #define __XIOS_CInverseAxis__ 3 3 4 4 /// xios headers /// 5 #include "x mlioserver_spl.hpp"5 #include "xios_spl.hpp" 6 6 #include "attribute_enum.hpp" 7 7 #include "attribute_enum_impl.hpp" … … 61 61 } // namespace xios 62 62 63 #endif // __X MLIO_CInverseAxis__63 #endif // __XIOS_CInverseAxis__ -
XIOS/trunk/src/node/transformation.hpp
r622 r625 1 #ifndef __X MLIO_CTransformation__2 #define __X MLIO_CTransformation__1 #ifndef __XIOS_CTransformation__ 2 #define __XIOS_CTransformation__ 3 3 4 #include "x mlioserver_spl.hpp"4 #include "xios_spl.hpp" 5 5 #include "transformation_enum.hpp" 6 6 … … 30 30 } // namespace xios 31 31 32 #endif // __X MLIO_CTransformation__32 #endif // __XIOS_CTransformation__ -
XIOS/trunk/src/node/zoom_axis.hpp
r621 r625 1 #ifndef __X MLIO_CZoomAxis__2 #define __X MLIO_CZoomAxis__1 #ifndef __XIOS_CZoomAxis__ 2 #define __XIOS_CZoomAxis__ 3 3 4 4 /// xios headers /// 5 #include "x mlioserver_spl.hpp"5 #include "xios_spl.hpp" 6 6 #include "attribute_enum.hpp" 7 7 #include "attribute_enum_impl.hpp" … … 63 63 } // namespace xios 64 64 65 #endif // __X MLIO_CZoomAxis__65 #endif // __XIOS_CZoomAxis__ -
XIOS/trunk/src/output/nc4_data_output.cpp
r624 r625 372 372 count[0] = domain->zoom_nj_srv; 373 373 } 374 374 375 375 SuperClassWriter::writeData(domain->bounds_lon_srv, bounds_lonid, isCollective, 0, &start, &count); 376 376 SuperClassWriter::writeData(domain->bounds_lat_srv, bounds_latid, isCollective, 0, &start, &count); … … 599 599 int zoom_size_srv = axis->zoom_size_srv; 600 600 int zoom_begin_srv = axis->zoom_begin_srv; 601 int zoom_size = (MULTI_FILE == SuperClass::type) ? zoom_size_srv : axis->zoom_size;601 StdSize zoom_size = (MULTI_FILE == SuperClass::type) ? zoom_size_srv 602 602 : axis->global_zoom_size; 603 StdSize zoom_begin = (MULTI_FILE == SuperClass::type) ? zoom_begin_srv 603 604 : axis->global_zoom_begin; 604 605
Note: See TracChangeset
for help on using the changeset viewer.