source: XIOS/dev/XIOS_DEV_CMIP6/src/node/field_decl.cpp @ 1314

Last change on this file since 1314 was 932, checked in by mhnguyen, 8 years ago

Adding Fortran interface for high-dimension grid (up to 7)

+) Add check mask for high-dimension grid
+) Add Fortran interface for send_field, recv_field

Test
+) On Curie
+) Work

  • 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: 999 bytes
Line 
1#include "field_impl.hpp"
2
3namespace xios
4{
5  template void CField::setData<1>(const CArray<double, 1>& _data);
6  template void CField::setData<2>(const CArray<double, 2>& _data);
7  template void CField::setData<3>(const CArray<double, 3>& _data);
8  template void CField::setData<4>(const CArray<double, 4>& _data);
9  template void CField::setData<5>(const CArray<double, 5>& _data);
10  template void CField::setData<6>(const CArray<double, 6>& _data);
11  template void CField::setData<7>(const CArray<double, 7>& _data);
12
13  template void CField::getData<1>(CArray<double, 1>& _data) const;
14  template void CField::getData<2>(CArray<double, 2>& _data) const;
15  template void CField::getData<3>(CArray<double, 3>& _data) const;
16  template void CField::getData<4>(CArray<double, 4>& _data) const;
17  template void CField::getData<5>(CArray<double, 5>& _data) const;
18  template void CField::getData<6>(CArray<double, 6>& _data) const;
19  template void CField::getData<7>(CArray<double, 7>& _data) const;
20}
Note: See TracBrowser for help on using the repository browser.