source: XIOS/dev/XIOS_DEV_CMIP6/src/object_factory_decl.cpp @ 1314

Last change on this file since 1314 was 1314, checked in by ymipsl, 6 years ago

Add 2 new spatial transformations :

  • reduce_scalar_to_scalar : global reduction between scalar
  • duplicate_scalar_to_axis : a scalar value is duplicated on each level of the axis.

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: 2.3 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 const StdString& CObjectFactory::GetUIdBase<U>(void); \
17  template StdString CObjectFactory::GenUId<U>(void); \
18  template bool CObjectFactory::IsGenUId<U>(const StdString& id); \
19
20  macro(CField)
21  macro(CFile)
22  macro(CGrid)
23  macro(CAxis)
24  macro(CDomain)
25  macro(CContext)
26  macro(CCalendarWrapper)
27  macro(CVariable)
28  macro(CInverseAxis)
29  macro(CZoomAxis)
30  macro(CInterpolateAxis)
31  macro(CZoomDomain)
32  macro(CInterpolateDomain)
33  macro(CGenerateRectilinearDomain)
34  macro(CScalar)
35  macro(CReduceAxisToScalar)
36  macro(CReduceDomainToAxis)
37  macro(CReduceAxisToAxis)
38  macro(CExtractDomainToAxis)
39  macro(CComputeConnectivityDomain)
40  macro(CExpandDomain)
41  macro(CExtractAxisToScalar)
42  macro(CReduceDomainToScalar)
43  macro(CTemporalSplitting)
44  macro(CDuplicateScalarToAxis)
45  macro(CReduceScalarToScalar)
46
47  macro(CFieldGroup)
48  macro(CFileGroup)
49  macro(CGridGroup)
50  macro(CAxisGroup)
51  macro(CDomainGroup)
52  macro(CContextGroup)
53  macro(CVariableGroup)
54  macro(CInverseAxisGroup)
55  macro(CZoomAxisGroup)
56  macro(CInterpolateAxisGroup)
57  macro(CZoomDomainGroup)
58  macro(CInterpolateDomainGroup)
59  macro(CGenerateRectilinearDomainGroup)
60  macro(CScalarGroup)
61  macro(CReduceAxisToScalarGroup)
62  macro(CReduceDomainToAxisGroup)
63  macro(CReduceAxisToAxisGroup)
64  macro(CExtractDomainToAxisGroup)
65  macro(CComputeConnectivityDomainGroup)
66  macro(CExpandDomainGroup)
67  macro(CExtractAxisToScalarGroup)
68  macro(CReduceDomainToScalarGroup)
69  macro(CTemporalSplittingGroup)
70  macro(CDuplicateScalarToAxisGroup)
71  macro(CReduceScalarToScalarGroup)
72
73}
Note: See TracBrowser for help on using the repository browser.