Salome HOME
Remapper: PointLocator method does not make sense for srcMeshDim=2, trgtMeshDim=3...
[tools/medcoupling.git] / src / MEDLoader / MEDFileEntities.cxx
1 // Copyright (C) 2007-2019  CEA/DEN, EDF R&D
2 //
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, or (at your option) any later version.
7 //
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.
12 //
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
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19 // Author : Anthony Geay (EDF R&D)
20
21 #include "MEDFileEntities.hxx"
22
23 using namespace MEDCoupling;
24
25 MEDFileEntities *MEDFileEntities::BuildFrom(const std::vector< std::pair<TypeOfField,INTERP_KERNEL::NormalizedCellType> > *entities)
26 {
27   if(!entities)
28     return new MEDFileAllStaticEntites;
29   else
30     return new MEDFileStaticEntities(*entities);
31 }
32
33 MEDFileEntities *MEDFileEntities::BuildFrom(const MEDFileStructureElements& se)
34 {
35   if(se.getNumberOf()==0)
36     return new MEDFileAllStaticEntites;
37   else
38     return new MEDFileAllStaticEntitiesPlusDyn(&se);
39 }
40
41 MEDFileEntities::~MEDFileEntities()
42 {
43 }
44
45 //////////////
46
47 std::vector<int> MEDFileStaticEntities::getDynGTAvail() const
48 {
49   return std::vector<int>();
50 }
51
52 bool MEDFileStaticEntities::areAllStaticTypesPresent() const
53 {
54   return false;
55 }
56
57 //////////////
58
59
60 std::vector<int> MEDFileAllStaticEntites::getDynGTAvail() const
61 {
62   return std::vector<int>();
63 }
64
65 bool MEDFileAllStaticEntites::areAllStaticTypesPresent() const
66 {
67   return true;
68 }
69
70 //////////////
71
72 MEDFileAllStaticEntitiesPlusDyn::MEDFileAllStaticEntitiesPlusDyn(const MEDFileStructureElements *se):_se(se)
73 {
74   if(se)
75     se->incrRef();
76 }
77
78 std::vector<int> MEDFileAllStaticEntitiesPlusDyn::getDynGTAvail() const
79 {
80   return _se->getDynGTAvail();
81 }
82
83 bool MEDFileAllStaticEntitiesPlusDyn::areAllStaticTypesPresent() const
84 {
85   return true;
86 }
87
88 const MEDFileStructureElement *MEDFileAllStaticEntitiesPlusDyn::getWithGT(int idGT) const
89 {
90   return _se->getWithGT(idGT);
91 }
92
93 const MEDFileUMesh *MEDFileAllStaticEntitiesPlusDyn::getSupMeshWithName(const std::string& name) const
94 {
95   return _se->getSupMeshWithName(name);
96 }