source: XIOS/dev/branch_openmp/src/io/onetcdf4_decl.cpp @ 1287

Last change on this file since 1287 was 1138, checked in by yushan, 7 years ago

test_remap back to work. No thread for now

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