1 // Copyright (C) 2007-2013 CEA/DEN, EDF R&D
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License.
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 // Lesser General Public License for more details.
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 // Author : Anthony Geay (CEA/DEN)
21 #ifndef __MEDFILEMESHELT_HXX__
22 #define __MEDFILEMESHELT_HXX__
24 #include "MEDCouplingMemArray.hxx"
25 #include "MEDCoupling1GTUMesh.hxx"
26 #include "MEDCouplingAutoRefCountObjectPtr.hxx"
28 #include "NormalizedUnstructuredMesh.hxx"
34 class MEDCouplingUMesh;
35 class MEDFileMeshReadSelector;
37 class MEDFileUMeshPerType : public RefCountObject
40 static MEDFileUMeshPerType *New(med_idt fid, const char *mName, int dt, int it, int mdim, med_geometry_type geoElt, INTERP_KERNEL::NormalizedCellType geoElt2, MEDFileMeshReadSelector *mrs);
41 static bool isExisting(med_idt fid, const char *mName, int dt, int it, med_geometry_type geoElt, med_entity_type& whichEntity);
42 std::size_t getHeapMemorySize() const { return 0; }
44 MEDCoupling1GTUMesh *getMesh() const { return const_cast<MEDCoupling1GTUMesh *>((const MEDCoupling1GTUMesh *)_m); }
45 const DataArrayInt *getFam() const { return _fam; }
46 const DataArrayInt *getNum() const { return _num; }
47 const DataArrayAsciiChar *getNames() const { return _names; }
48 static void Write(med_idt fid, const char *mname, int mdim, const MEDCoupling1GTUMesh *m, const DataArrayInt *fam, const DataArrayInt *num, const DataArrayAsciiChar *names);
50 MEDFileUMeshPerType(med_idt fid, const char *mName, int dt, int it, int mdim, med_geometry_type geoElt, INTERP_KERNEL::NormalizedCellType type,
51 med_entity_type entity, MEDFileMeshReadSelector *mrs);
52 void loadFromStaticType(med_idt fid, const char *mName, int dt, int it, int mdim, int curNbOfElem, med_geometry_type geoElt, INTERP_KERNEL::NormalizedCellType type,
53 med_entity_type entity, MEDFileMeshReadSelector *mrs);
54 void loadPolyg(med_idt fid, const char *mName, int dt, int it, int mdim, int arraySize, med_geometry_type geoElt,
55 med_entity_type entity, MEDFileMeshReadSelector *mrs);
56 void loadPolyh(med_idt fid, const char *mName, int dt, int it, int mdim, int connFaceLgth, med_geometry_type geoElt,
57 med_entity_type entity, MEDFileMeshReadSelector *mrs);
58 void loadCommonPart(med_idt fid, const char *mName, int dt, int it, int mdim, int curNbOfElem, med_geometry_type geoElt, med_entity_type entity, MEDFileMeshReadSelector *mrs);
60 MEDCouplingAutoRefCountObjectPtr<MEDCoupling1GTUMesh> _m;
61 MEDCouplingAutoRefCountObjectPtr<DataArrayInt> _num;
62 MEDCouplingAutoRefCountObjectPtr<DataArrayInt> _fam;
63 MEDCouplingAutoRefCountObjectPtr<DataArrayAsciiChar> _names;
64 med_entity_type _entity;