source: XIOS/trunk/src/object_template_decl.cpp @ 657

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

Making changes in domain to make sure unstructed grid work with new method of index distribution

+) Change the way define i_index and j_index of a domain
+) Remove some redundant attributes of domain
+) Adjust the way to calculate index distribution on server side

Test
+) Make some minor change to test_unstruct_complete to work with new XIOS
+) On Curie
+) All test pass and correct

  • 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.3 KB
Line 
1#include "object_template_impl.hpp"
2#include "xios_spl.hpp"
3#include "node_type.hpp"
4
5namespace xios
6{
7  template class CObjectTemplate<CContext>;
8  template class CObjectTemplate<CCalendarWrapper>;
9  template class CObjectTemplate<CField>;
10  template class CObjectTemplate<CFile>;
11  template class CObjectTemplate<CDomain>;
12  template class CObjectTemplate<CGrid>;
13  template class CObjectTemplate<CAxis>;
14  template class CObjectTemplate<CVariable>;
15  template class CObjectTemplate<CInverseAxis>;
16  template class CObjectTemplate<CZoomAxis>;
17  template class CObjectTemplate<CInterpolateAxis>;
18  template class CObjectTemplate<CZoomDomain>;
19  template class CObjectTemplate<CInterpolateFromFileDomain>;
20
21  template class CObjectTemplate<CContextGroup>;
22  template class CObjectTemplate<CFieldGroup>;
23  template class CObjectTemplate<CFileGroup>;
24  template class CObjectTemplate<CDomainGroup>;
25  template class CObjectTemplate<CGridGroup>;
26  template class CObjectTemplate<CAxisGroup>;
27  template class CObjectTemplate<CVariableGroup>;
28  template class CObjectTemplate<CInverseAxisGroup>;
29  template class CObjectTemplate<CZoomAxisGroup>;
30  template class CObjectTemplate<CInterpolateAxisGroup>;
31  template class CObjectTemplate<CZoomDomainGroup>;
32  template class CObjectTemplate<CInterpolateFromFileDomainGroup>;
33}
Note: See TracBrowser for help on using the repository browser.