source: XIOS3/branches/xios-3.0-beta/src/io/onetcdf4_decl.cpp @ 2427

Last change on this file since 2427 was 1957, checked in by ymipsl, 4 years ago

Xios coupling.

Implementing grid and field compression (indexed_output) in output as before.

YM

  • 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
  • Property svn:eol-style set to native
File size: 888 bytes
Line 
1#include "onetcdf4_impl.hpp"
2
3namespace xios
4{
5# define  macro(type,size) \
6  template void CONetCDF4::writeData<type,size>(const CArray<type, size>& data, const StdString & name, \
7                                               bool collective, StdSize record, \
8                                               const std::vector<StdSize> * start, \
9                                               const std::vector<StdSize> * count) ;
10 
11  macro(int, 1)
12  macro(int, 2)
13  macro(size_t, 1)
14  macro(size_t, 2)
15  macro(double, 1)
16  macro(double, 2)
17  macro(double, 3)
18  macro(StdString, 1)
19 
20  template void CONetCDF4::setDefaultValue<double>(const StdString & varname, const double* value) ;
21  template void CONetCDF4::setDefaultValue<short>(const StdString & varname, const short* value) ;
22  template void CONetCDF4::setDefaultValue<float>(const StdString & varname, const float* value) ;
23}
Note: See TracBrowser for help on using the repository browser.