source: XIOS/trunk/src/object_factory_decl.cpp @ 689

Last change on this file since 689 was 689, checked in by mhnguyen, 9 years ago

Modifying the interface of interpolation domain

+) Change node name from interpolate_from_file_domain to interpolate_domain and add some new atrributes
+) Add more tests into test_remap

Test
+) On Curie
+) test_remap works for direct weight calculation and reading weight calculation from file

  • 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.5 KB
Line 
1#include "object_factory_impl.hpp"
2#include "node_type.hpp"
3
4namespace xios
5{
6#define macro(U) \
7  template shared_ptr<U> CObjectFactory::GetObject<U>(const StdString & id);  \
8  template shared_ptr<U> CObjectFactory::GetObject<U>(const StdString& context,const StdString & id); \
9  template shared_ptr<U> CObjectFactory::GetObject<U>(const U * const object); \
10  template int CObjectFactory::GetObjectNum<U>(void); \
11  template int CObjectFactory::GetObjectIdNum<U>(void); \
12  template const std::vector<shared_ptr<U> >& CObjectFactory::GetObjectVector<U>(const StdString & context ); \
13  template bool CObjectFactory::HasObject<U>(const StdString & id); \
14  template bool CObjectFactory::HasObject<U>(const StdString& context,const StdString & id); \
15  template boost::shared_ptr<U> CObjectFactory::CreateObject<U>(const StdString & id ); \
16  template  StdString CObjectFactory::GenUId<U>(void);
17
18  macro(CField)
19  macro(CFile)
20  macro(CGrid)
21  macro(CAxis)
22  macro(CDomain)
23  macro(CContext)
24  macro(CCalendarWrapper)
25  macro(CVariable)
26  macro(CInverseAxis)
27  macro(CZoomAxis)
28  macro(CInterpolateAxis)
29  macro(CZoomDomain)
30  macro(CInterpolateDomain)
31  macro(CGenerateRectilinearDomain)
32
33  macro(CFieldGroup)
34  macro(CFileGroup)
35  macro(CGridGroup)
36  macro(CAxisGroup)
37  macro(CDomainGroup)
38  macro(CContextGroup)
39  macro(CVariableGroup)
40  macro(CInverseAxisGroup)
41  macro(CZoomAxisGroup)
42  macro(CInterpolateAxisGroup)
43  macro(CZoomDomainGroup)
44  macro(CInterpolateDomainGroup)
45  macro(CGenerateRectilinearDomainGroup)
46}
Note: See TracBrowser for help on using the repository browser.