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

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

Add new domain filter : reorder_domain
Reoder the data along the global domain but works only for rectilinear domain

  • invert_lat : invert the latitute axis
  • shift_lon_fraction : shift the longitude axis of a fration of global size
  • lon_min/lon_max : fixe the range of longitude value (ex : -180:180 or 0:360)

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.4 KB
RevLine 
[352]1#include "object_factory_impl.hpp"
2#include "node_type.hpp"
3
4namespace xios
5{
6#define macro(U) \
[769]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); \
[352]10  template int CObjectFactory::GetObjectNum<U>(void); \
11  template int CObjectFactory::GetObjectIdNum<U>(void); \
[769]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); \
[549]19
[352]20  macro(CField)
21  macro(CFile)
22  macro(CGrid)
23  macro(CAxis)
24  macro(CDomain)
25  macro(CContext)
[549]26  macro(CCalendarWrapper)
[352]27  macro(CVariable)
[621]28  macro(CInverseAxis)
29  macro(CZoomAxis)
[630]30  macro(CInterpolateAxis)
[631]31  macro(CZoomDomain)
[689]32  macro(CInterpolateDomain)
[687]33  macro(CGenerateRectilinearDomain)
[887]34  macro(CScalar)
[888]35  macro(CReduceAxisToScalar)
[895]36  macro(CReduceDomainToAxis)
[1301]37  macro(CReduceAxisToAxis)
[895]38  macro(CExtractDomainToAxis)
[934]39  macro(CComputeConnectivityDomain)
[935]40  macro(CExpandDomain)
[960]41  macro(CExtractAxisToScalar)
[976]42  macro(CReduceDomainToScalar)
[1275]43  macro(CTemporalSplitting)
[1314]44  macro(CDuplicateScalarToAxis)
45  macro(CReduceScalarToScalar)
[1457]46  macro(CReorderDomain)
47 
[352]48  macro(CFieldGroup)
49  macro(CFileGroup)
50  macro(CGridGroup)
51  macro(CAxisGroup)
52  macro(CDomainGroup)
53  macro(CContextGroup)
54  macro(CVariableGroup)
[621]55  macro(CInverseAxisGroup)
56  macro(CZoomAxisGroup)
[630]57  macro(CInterpolateAxisGroup)
[631]58  macro(CZoomDomainGroup)
[689]59  macro(CInterpolateDomainGroup)
[687]60  macro(CGenerateRectilinearDomainGroup)
[887]61  macro(CScalarGroup)
[888]62  macro(CReduceAxisToScalarGroup)
[895]63  macro(CReduceDomainToAxisGroup)
[1301]64  macro(CReduceAxisToAxisGroup)
[895]65  macro(CExtractDomainToAxisGroup)
[934]66  macro(CComputeConnectivityDomainGroup)
[935]67  macro(CExpandDomainGroup)
[960]68  macro(CExtractAxisToScalarGroup)
[976]69  macro(CReduceDomainToScalarGroup)
[1275]70  macro(CTemporalSplittingGroup)
[1314]71  macro(CDuplicateScalarToAxisGroup)
72  macro(CReduceScalarToScalarGroup)
[1457]73  macro(CReorderDomainGroup)
[352]74}
Note: See TracBrowser for help on using the repository browser.