source: XIOS/dev/XIOS_DEV_CMIP6/src/xml_parser_decl.cpp @ 1269

Last change on this file since 1269 was 976, checked in by mhnguyen, 7 years ago

Ticket 110: Implementing domain reduction to scalar

+) Add xml node for this new transformation
+) Add algorithm for this new transformation

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: 1.0 KB
Line 
1#include "xml_parser_impl.hpp"
2#include "group_template.hpp"
3#include "node_type.hpp"
4
5namespace xios
6{
7  namespace xml
8  {
9    template void CXMLParser::ParseInclude<CContext>(StdIStream & stream, const string& fluxId, CContext& object) ;
10
11 #   define macro(T) \
12    template void CXMLParser::ParseInclude< CGroupTemplate<C##T, C##T##Group, C##T##Attributes> >(StdIStream & stream, const string& fluxId, CGroupTemplate<C##T, C##T##Group, C##T##Attributes>& object) ;
13
14    macro( Context )
15    macro( Axis )
16    macro( Domain )
17    macro( Grid )
18    macro( Field )
19    macro( File )
20    macro( Variable )
21    macro( InverseAxis )
22    macro( ZoomAxis )
23    macro( InterpolateAxis )
24    macro( ZoomDomain )
25    macro( InterpolateDomain )
26    macro( GenerateRectilinearDomain )
27    macro( Scalar )
28    macro( ReduceAxisToScalar )
29    macro( ReduceDomainToAxis )
30    macro( ExtractDomainToAxis )
31    macro( ComputeConnectivityDomain )
32    macro( ExpandDomain )
33    macro( ExtractAxisToScalar )
34    macro( ReduceDomainToScalar )
35  }
36}
Note: See TracBrowser for help on using the repository browser.