]> SALOME platform Git repositories - tools/medcoupling.git/blob - src/MEDLoader/MEDFileFieldOverView.cxx
Salome HOME
Most effective and safe method to state if the data returned is the same than inside...
[tools/medcoupling.git] / src / MEDLoader / MEDFileFieldOverView.cxx
1 // Copyright (C) 2007-2013  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.
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 (CEA/DEN)
20
21 #include "MEDFileFieldOverView.hxx"
22 #include "MEDFileField.hxx"
23 #include "MEDFileMesh.hxx"
24
25 #include "CellModel.hxx"
26
27 using namespace ParaMEDMEM;
28
29 const unsigned char MEDMeshMultiLev::PARAMEDMEM_2_VTKTYPE[MEDMeshMultiLev::PARAMEDMEM_2_VTKTYPE_LGTH]=
30   {1,3,21,5,9,7,22,34,23,28,255,255,255,255,10,14,13,255,12,255,24,255,16,27,255,26,255,29,255,255,25,42,255,4};
31
32 const char MEDFileField1TSStructItem2::NEWLY_CREATED_PFL_NAME[]="???";
33
34 MEDFileMeshStruct *MEDFileMeshStruct::New(const MEDFileMesh *mesh)
35 {
36   return new MEDFileMeshStruct(mesh);
37 }
38
39 std::size_t MEDFileMeshStruct::getHeapMemorySizeWithoutChildren() const
40 {
41   std::size_t ret(0);
42   for(std::vector< std::vector<int> >::const_iterator it0=_geo_types_distrib.begin();it0!=_geo_types_distrib.end();it0++)
43     ret+=(*it0).capacity()*sizeof(int);
44   ret+=_geo_types_distrib.capacity()*sizeof(std::vector<int>);
45   return ret;
46 }
47
48 std::vector<const BigMemoryObject *> MEDFileMeshStruct::getDirectChildren() const
49 {
50   return std::vector<const BigMemoryObject *>();
51 }
52
53 MEDFileMeshStruct::MEDFileMeshStruct(const MEDFileMesh *mesh):_mesh(mesh)
54 {
55   std::vector<int> levs=mesh->getNonEmptyLevels();
56   _name=mesh->getName();
57   _nb_nodes=mesh->getNumberOfNodes();
58   _geo_types_distrib.resize(levs.size());
59   for(std::vector<int>::const_iterator lev=levs.begin();lev!=levs.end();lev++)
60     _geo_types_distrib[-(*lev)]=mesh->getDistributionOfTypes(*lev);
61 }
62
63 int MEDFileMeshStruct::getLevelOfGeoType(INTERP_KERNEL::NormalizedCellType t) const
64 {
65   int j=0;
66   for(std::vector< std::vector<int> >::const_iterator it1=_geo_types_distrib.begin();it1!=_geo_types_distrib.end();it1++,j--)
67     {
68       std::size_t sz=(*it1).size();
69       if(sz%3!=0)
70         throw INTERP_KERNEL::Exception("MEDFileMeshStruct::getLevelOfGeoType : internal error in code !");
71       std::size_t nbGeo=sz/3;
72       for(std::size_t i=0;i<nbGeo;i++)
73         if((*it1)[3*i]==(int)t)
74           return j;
75     }
76   throw INTERP_KERNEL::Exception("MEDFileMeshStruct::getLevelOfGeoType : The specified geometric type is not present in the mesh structure !");
77 }
78
79 int MEDFileMeshStruct::getNumberOfElemsOfGeoType(INTERP_KERNEL::NormalizedCellType t) const
80 {
81   for(std::vector< std::vector<int> >::const_iterator it1=_geo_types_distrib.begin();it1!=_geo_types_distrib.end();it1++)
82     {
83       std::size_t sz=(*it1).size();
84       if(sz%3!=0)
85         throw INTERP_KERNEL::Exception("MEDFileMeshStruct::getNumberOfElemsOfGeoType : internal error in code !");
86       std::size_t nbGeo=sz/3;
87       for(std::size_t i=0;i<nbGeo;i++)
88         if((*it1)[3*i]==(int)t)
89           return (*it1)[3*i+1];
90     }
91   throw INTERP_KERNEL::Exception("The specified geometric type is not present in the mesh structure !");
92 }
93
94 int MEDFileMeshStruct::getNumberOfLevs() const
95 {
96   return (int)_geo_types_distrib.size();
97 }
98
99 int MEDFileMeshStruct::getNumberOfGeoTypesInLev(int relativeLev) const
100 {
101   int pos(-relativeLev);
102   if(pos<0 || pos>=(int)_geo_types_distrib.size())
103     throw INTERP_KERNEL::Exception("MEDFileMeshStruct::getNumberOfGeoTypesInLev : invalid level specified !");
104   std::size_t sz=_geo_types_distrib[pos].size();
105   if(sz%3!=0)
106     throw INTERP_KERNEL::Exception("MEDFileMeshStruct::getNumberOfGeoTypesInLev : internal error in code !");
107   return (int)(sz/3);
108 }
109
110 //=
111
112 std::size_t MEDMeshMultiLev::getHeapMemorySizeWithoutChildren() const
113 {
114   return 0;
115 }
116
117 std::vector<const BigMemoryObject *> MEDMeshMultiLev::getDirectChildren() const
118 {
119   return std::vector<const BigMemoryObject *>();
120 }
121
122 MEDMeshMultiLev *MEDMeshMultiLev::New(const MEDFileMesh *m, const std::vector<int>& levs)
123 {
124   if(!m)
125     throw INTERP_KERNEL::Exception("MEDMeshMultiLev::New : null input pointer !");
126   const MEDFileUMesh *um(dynamic_cast<const MEDFileUMesh *>(m));
127   if(um)
128     return MEDUMeshMultiLev::New(um,levs);
129   const MEDFileCMesh *cm(dynamic_cast<const MEDFileCMesh *>(m));
130   if(cm)
131     return MEDCMeshMultiLev::New(cm,levs);
132   const MEDFileCurveLinearMesh *clm(dynamic_cast<const MEDFileCurveLinearMesh *>(m));
133   if(clm)
134     return MEDCurveLinearMeshMultiLev::New(clm,levs);
135   throw INTERP_KERNEL::Exception("MEDMeshMultiLev::New : unrecognized type of mesh ! Must be in [MEDFileUMesh,MEDFileCMesh,MEDFileCurveLinearMesh] !");
136 }
137
138 MEDMeshMultiLev *MEDMeshMultiLev::New(const MEDFileMesh *m, const std::vector<INTERP_KERNEL::NormalizedCellType>& gts, const std::vector<const DataArrayInt *>& pfls, const std::vector<int>& nbEntities)
139 {
140   if(!m)
141     throw INTERP_KERNEL::Exception("MEDMeshMultiLev::New 2 : null input pointer !");
142   const MEDFileUMesh *um(dynamic_cast<const MEDFileUMesh *>(m));
143   if(um)
144     return MEDUMeshMultiLev::New(um,gts,pfls,nbEntities);
145   const MEDFileCMesh *cm(dynamic_cast<const MEDFileCMesh *>(m));
146   if(cm)
147     return MEDCMeshMultiLev::New(cm,gts,pfls,nbEntities);
148   const MEDFileCurveLinearMesh *clm(dynamic_cast<const MEDFileCurveLinearMesh *>(m));
149   if(clm)
150     return MEDCurveLinearMeshMultiLev::New(clm,gts,pfls,nbEntities);
151   throw INTERP_KERNEL::Exception("MEDMeshMultiLev::New 2 : unrecognized type of mesh ! Must be in [MEDFileUMesh,MEDFileCMesh,MEDFileCurveLinearMesh] !");
152 }
153
154 MEDMeshMultiLev *MEDMeshMultiLev::NewOnlyOnNode(const MEDFileMesh *m, const DataArrayInt *pflOnNode)
155 {
156   std::vector<int> levs(1,0);
157   MEDCouplingAutoRefCountObjectPtr<MEDMeshMultiLev> ret(MEDMeshMultiLev::New(m,levs));
158   ret->selectPartOfNodes(pflOnNode);
159   return ret.retn();
160 }
161
162 void MEDMeshMultiLev::setNodeReduction(const DataArrayInt *nr)
163 {
164   if(nr)
165     nr->incrRef();
166   _node_reduction=const_cast<DataArrayInt*>(nr);
167 }
168
169 bool MEDMeshMultiLev::isFastlyTheSameStruct(const MEDFileField1TSStructItem& fst, const MEDFileFieldGlobsReal *globs) const
170 {
171   if(fst.getType()==ON_NODES)
172     {
173       if(fst.getNumberOfItems()!=1)
174         throw INTERP_KERNEL::Exception("MEDMeshMultiLev::isFastlyTheSameStruct : unexpected situation for nodes !");
175       const MEDFileField1TSStructItem2& p(fst[0]);
176       std::string pflName(p.getPflName());
177       const DataArrayInt *nr(_node_reduction);
178       if(pflName.empty() && !nr)
179         return true;
180       if(pflName==nr->getName())
181         return true;
182       return false;
183     }
184   else
185     {
186       std::size_t sz(fst.getNumberOfItems());
187       if(sz!=_geo_types.size())
188         return false;
189       int strt(0);
190       for(std::size_t i=0;i<sz;i++)
191         {
192           const MEDFileField1TSStructItem2& p(fst[i]);
193           if(!p.isFastlyEqual(strt,_geo_types[i],getPflNameOfId(i).c_str()))
194             return false;
195         }
196       return true;
197     }
198 }
199
200 DataArray *MEDMeshMultiLev::buildDataArray(const MEDFileField1TSStructItem& fst, const MEDFileFieldGlobsReal *globs, const DataArray *vals) const
201 {
202   MEDCouplingAutoRefCountObjectPtr<DataArray> ret(const_cast<DataArray *>(vals)); ret->incrRef();
203   if(isFastlyTheSameStruct(fst,globs))
204     return ret.retn();
205   else
206     return constructDataArray(fst,globs,vals);
207 }
208
209 std::string MEDMeshMultiLev::getPflNameOfId(int id) const
210 {
211   std::size_t sz(_pfls.size());
212   if(id<0 || id>=(int)sz)
213     throw INTERP_KERNEL::Exception("MEDMeshMultiLev::getPflNameOfId : invalid input id !");
214   const DataArrayInt *pfl(_pfls[id]);
215   if(!pfl)
216     return std::string("");
217   return pfl->getName();
218 }
219
220 /*!
221  * Returns the number of cells having geometric type \a t.
222  * The profiles are **NOT** taken into account here.
223  */
224 int MEDMeshMultiLev::getNumberOfCells(INTERP_KERNEL::NormalizedCellType t) const
225 {
226   std::size_t sz(_nb_entities.size());
227   for(std::size_t i=0;i<sz;i++)
228     if(_geo_types[i]==t)
229         return _nb_entities[i];
230   throw INTERP_KERNEL::Exception("MEDMeshMultiLev::getNumberOfCells : not existing geometric type in this !");
231 }
232
233 int MEDMeshMultiLev::getNumberOfNodes() const
234 {
235   return _nb_nodes;
236 }
237
238 DataArray *MEDMeshMultiLev::constructDataArray(const MEDFileField1TSStructItem& fst, const MEDFileFieldGlobsReal *globs, const DataArray *vals) const
239 {
240   if(fst.getType()==ON_NODES)
241     {
242       if(fst.getNumberOfItems()!=1)
243         throw INTERP_KERNEL::Exception("MEDMeshMultiLev::constructDataArray : unexpected situation for nodes !");
244       const MEDFileField1TSStructItem2& p(fst[0]);
245       std::string pflName(p.getPflName());
246       const DataArrayInt *nr(_node_reduction);
247       if(pflName.empty() && !nr)
248         return vals->deepCpy();
249       if(pflName.empty() && nr)
250          throw INTERP_KERNEL::Exception("MEDMeshMultiLev::constructDataArray : unexpected situation for nodes 2 !");
251       if(!pflName.empty() && nr)
252         {
253           MEDCouplingAutoRefCountObjectPtr<DataArrayInt> p1(globs->getProfile(pflName.c_str())->deepCpy());
254           MEDCouplingAutoRefCountObjectPtr<DataArrayInt> p2(nr->deepCpy());
255           p1->sort(true); p2->sort(true);
256           if(!p1->isEqualWithoutConsideringStr(*p2))
257             throw INTERP_KERNEL::Exception("MEDMeshMultiLev::constructDataArray : unexpected situation for nodes 3 !");
258           p1=DataArrayInt::FindPermutationFromFirstToSecond(globs->getProfile(pflName.c_str()),nr);
259           MEDCouplingAutoRefCountObjectPtr<DataArray> ret(vals->deepCpy());
260           ret->renumberInPlace(p1->begin());
261           return ret.retn();
262         }
263       if(!pflName.empty() && !nr)
264         {
265           MEDCouplingAutoRefCountObjectPtr<DataArrayInt> p1(globs->getProfile(pflName.c_str())->deepCpy());
266           p1->sort(true);
267           if(!p1->isIdentity() || p1->getNumberOfTuples()!=getNumberOfNodes())
268             throw INTERP_KERNEL::Exception("MEDMeshMultiLev::constructDataArray : unexpected situation for nodes 4 !");
269           MEDCouplingAutoRefCountObjectPtr<DataArray> ret(vals->deepCpy());
270           ret->renumberInPlace(globs->getProfile(pflName.c_str())->begin());
271           return ret.retn();
272         }
273       throw INTERP_KERNEL::Exception("MEDMeshMultiLev::constructDataArray : unexpected situation for nodes 5 !");
274     }
275   else
276     {
277       std::size_t sz(fst.getNumberOfItems());
278       std::set<INTERP_KERNEL::NormalizedCellType> s(_geo_types.begin(),_geo_types.end());
279       if(s.size()!=_geo_types.size())
280         throw INTERP_KERNEL::Exception("MEDMeshMultiLev::constructDataArray : unexpected situation for cells 2 !");
281       std::vector< const DataArray *> arr(s.size());
282       std::vector< MEDCouplingAutoRefCountObjectPtr<DataArray> > arrSafe(s.size());
283       int iii(0);
284       int nc(vals->getNumberOfComponents());
285       std::vector<std::string> compInfo(vals->getInfoOnComponents());
286       for(std::vector< INTERP_KERNEL::NormalizedCellType >::const_iterator it=_geo_types.begin();it!=_geo_types.end();it++,iii++)
287         {
288           const DataArrayInt *thisP(_pfls[iii]);
289           std::vector<const MEDFileField1TSStructItem2 *> ps;
290           for(std::size_t i=0;i<sz;i++)
291             {
292               const MEDFileField1TSStructItem2& p(fst[i]);
293               if(p.getGeo()==*it)
294                 ps.push_back(&p);
295             }
296           if(ps.empty())
297             throw INTERP_KERNEL::Exception("MEDMeshMultiLev::constructDataArray : unexpected situation for cells 1 !");
298           if(ps.size()==1)
299             {
300               int nbi(ps[0]->getNbOfIntegrationPts(globs));
301               const DataArrayInt *otherP(ps[0]->getPfl(globs));
302               const std::pair<int,int>& strtStop(ps[0]->getStartStop());
303               MEDCouplingAutoRefCountObjectPtr<DataArray> ret(vals->selectByTupleId2(strtStop.first,strtStop.second,1));
304               if(!thisP && !otherP)
305                 {
306                   arrSafe[iii]=ret; arr[iii]=ret;
307                   continue;
308                 }
309               if(thisP && otherP)
310                 {
311                   MEDCouplingAutoRefCountObjectPtr<DataArrayInt> p1(otherP->invertArrayN2O2O2N(getNumberOfCells(ps[0]->getGeo())));
312                   MEDCouplingAutoRefCountObjectPtr<DataArrayInt> p2(thisP->deepCpy());
313                   p2->transformWithIndArr(p1->begin(),p1->end());
314                   //p1=p2->getIdsNotEqual(-1);
315                   //p1=p2->selectByTupleIdSafe(p1->begin(),p1->end());
316                   ret->rearrange(nbi*nc); ret=ret->selectByTupleIdSafe(p2->begin(),p2->end()); ret->rearrange(nc); ret->setInfoOnComponents(compInfo);
317                   arrSafe[iii]=ret; arr[iii]=ret;
318                   continue;
319                 }
320               if(!thisP && otherP)
321                 {
322                   MEDCouplingAutoRefCountObjectPtr<DataArrayInt> p1(otherP->deepCpy());
323                   p1->sort(true);
324                   p1->checkAllIdsInRange(0,getNumberOfCells(ps[0]->getGeo()));
325                   p1=DataArrayInt::FindPermutationFromFirstToSecond(otherP,p1);
326                   ret->rearrange(nbi*nc); ret->renumberInPlace(p1->begin()); ret->rearrange(nc); ret->setInfoOnComponents(compInfo);
327                   arrSafe[iii]=ret; arr[iii]=ret;
328                   continue;
329                 }
330               throw INTERP_KERNEL::Exception("MEDMeshMultiLev::constructDataArray : unexpected situation for cells 3 !");
331             }
332           else
333             {
334               std::vector< const DataArrayInt * >otherPS(ps.size());
335               std::vector< const DataArray * > arr2(ps.size());
336               std::vector< MEDCouplingAutoRefCountObjectPtr<DataArray> > arr2Safe(ps.size());
337               std::vector< const DataArrayInt * > nbis(ps.size());
338               std::vector< MEDCouplingAutoRefCountObjectPtr<DataArrayInt> > nbisSafe(ps.size());
339               int jj(0);
340               for(std::vector<const MEDFileField1TSStructItem2 *>::const_iterator it2=ps.begin();it2!=ps.end();it2++,jj++)
341                 {
342                   int nbi((*it2)->getNbOfIntegrationPts(globs));
343                   const DataArrayInt *otherPfl((*it2)->getPfl(globs));
344                   const std::pair<int,int>& strtStop((*it2)->getStartStop());
345                   MEDCouplingAutoRefCountObjectPtr<DataArray> ret2(vals->selectByTupleId2(strtStop.first,strtStop.second,1));
346                   if(!otherPfl)
347                     throw INTERP_KERNEL::Exception("MEDMeshMultiLev::constructDataArray : unexpected situation for cells 4 !");
348                   arr2[jj]=ret2; arr2Safe[jj]=ret2; otherPS[jj]=otherPfl;
349                   nbisSafe[jj]=DataArrayInt::New(); nbisSafe[jj]->alloc(otherPfl->getNumberOfTuples(),1); nbisSafe[jj]->fillWithValue(nbi);
350                   nbis[jj]=nbisSafe[jj];
351                 }
352               MEDCouplingAutoRefCountObjectPtr<DataArray> arr3(DataArray::Aggregate(arr2));
353               MEDCouplingAutoRefCountObjectPtr<DataArrayInt> otherP(DataArrayInt::Aggregate(otherPS));
354               MEDCouplingAutoRefCountObjectPtr<DataArrayInt> zenbis(DataArrayInt::Aggregate(nbis));
355               MEDCouplingAutoRefCountObjectPtr<DataArrayInt> otherPN(otherP->invertArrayN2O2O2N(getNumberOfCells(*it)));
356               MEDCouplingAutoRefCountObjectPtr<DataArrayInt> p1;
357               if(thisP)
358                 p1=DataArrayInt::FindPermutationFromFirstToSecond(otherP,thisP);
359               else
360                 p1=otherP->deepCpy();
361               MEDCouplingAutoRefCountObjectPtr<DataArrayInt> zenbisN(zenbis->renumber(p1->begin()));
362               zenbisN->computeOffsets2();
363               jj=0;
364               for(std::vector<const MEDFileField1TSStructItem2 *>::const_iterator it2=ps.begin();it2!=ps.end();it2++,jj++)
365                 {
366                   //int nbi((*it2)->getNbOfIntegrationPts(globs));
367                   const DataArrayInt *otherPfl((*it2)->getPfl(globs));
368                   const std::pair<int,int>& strtStop((*it2)->getStartStop());
369                   MEDCouplingAutoRefCountObjectPtr<DataArray> ret2(vals->selectByTupleId2(strtStop.first,strtStop.second,1));
370                   //
371                   MEDCouplingAutoRefCountObjectPtr<DataArrayInt> p2(otherPfl->deepCpy());
372                   p2->transformWithIndArr(otherPN->begin(),otherPN->end());
373                   p2->transformWithIndArr(p1->begin(),p1->end());
374                   MEDCouplingAutoRefCountObjectPtr<DataArrayInt> idsN(p2->buildExplicitArrByRanges(zenbisN));
375                   arr3->setPartOfValuesBase3(ret2,idsN->begin(),idsN->end(),0,nc,1);
376                 }
377               arrSafe[iii]=arr3; arr[iii]=arr3;
378               continue;
379             }
380         }
381       return DataArray::Aggregate(arr);
382     }
383 }
384
385 MEDMeshMultiLev::MEDMeshMultiLev()
386 {
387 }
388
389 MEDMeshMultiLev::MEDMeshMultiLev(int nbNodes, const std::vector<INTERP_KERNEL::NormalizedCellType>& gts, const std::vector<const DataArrayInt *>& pfls, const std::vector<int>& nbEntities):_geo_types(gts),_nb_entities(nbEntities),_nb_nodes(nbNodes)
390 {
391   std::size_t sz(_geo_types.size());
392   if(sz!=pfls.size() || sz!=nbEntities.size())
393     throw INTERP_KERNEL::Exception("MEDMeshMultiLev::MEDMeshMultiLev : input vector must have the same size !");
394   _pfls.resize(sz);
395   for(std::size_t i=0;i<sz;i++)
396     {
397       if(pfls[i])
398         pfls[i]->incrRef();
399       _pfls[i]=const_cast<DataArrayInt *>(pfls[i]);
400     }
401 }
402
403 MEDMeshMultiLev::MEDMeshMultiLev(const MEDMeshMultiLev& other):RefCountObject(other),_pfls(other._pfls),_geo_types(other._geo_types),_nb_entities(other._nb_entities),_node_reduction(other._node_reduction),_nb_nodes(other._nb_nodes)
404 {
405 }
406
407 //=
408
409 MEDUMeshMultiLev *MEDUMeshMultiLev::New(const MEDFileUMesh *m, const std::vector<int>& levs)
410 {
411   return new MEDUMeshMultiLev(m,levs);
412 }
413
414 MEDUMeshMultiLev::MEDUMeshMultiLev(const MEDFileUMesh *m, const std::vector<int>& levs)
415 {
416   if(!m)
417     throw INTERP_KERNEL::Exception("MEDUMeshMultiLev constructor : null input pointer !");
418   std::vector<MEDCoupling1GTUMesh *> v;
419   for(std::vector<int>::const_iterator it=levs.begin();it!=levs.end();it++)
420     {
421       std::vector<MEDCoupling1GTUMesh *> vTmp(m->getDirectUndergroundSingleGeoTypeMeshes(*it));
422       v.insert(v.end(),vTmp.begin(),vTmp.end());
423     }
424   std::size_t sz(v.size());
425   _parts.resize(sz);
426   _pfls.resize(sz);
427   _geo_types.resize(sz);
428   for(std::size_t i=0;i<sz;i++)
429     {
430       MEDCoupling1GTUMesh *obj(v[i]);
431       if(obj)
432         obj->incrRef();
433       else
434         throw INTERP_KERNEL::Exception("MEDUMeshMultiLev constructor : presence of a null pointer !");
435       _parts[i]=obj;
436       _geo_types[i]=obj->getCellModelEnum();
437     }
438 }
439
440 MEDUMeshMultiLev *MEDUMeshMultiLev::New(const MEDFileUMesh *m, const std::vector<INTERP_KERNEL::NormalizedCellType>& gts, const std::vector<const DataArrayInt *>& pfls, const std::vector<int>& nbEntities)
441 {
442   return new MEDUMeshMultiLev(m,gts,pfls,nbEntities);
443 }
444
445 MEDUMeshMultiLev::MEDUMeshMultiLev(const MEDFileUMesh *m, const std::vector<INTERP_KERNEL::NormalizedCellType>& gts, const std::vector<const DataArrayInt *>& pfls, const std::vector<int>& nbEntities):MEDMeshMultiLev(m->getNumberOfNodes(),gts,pfls,nbEntities)
446 {
447   std::size_t sz(gts.size());
448   _parts.resize(sz);
449   for(std::size_t i=0;i<sz;i++)
450     {
451       MEDCoupling1GTUMesh *elt(m->getDirectUndergroundSingleGeoTypeMesh(gts[i]));
452       if(elt)
453         elt->incrRef();
454       _parts[i]=elt;
455     }
456 }
457
458 void MEDUMeshMultiLev::selectPartOfNodes(const DataArrayInt *pflNodes)
459 {
460    if(!pflNodes || !pflNodes->isAllocated())
461      return ;
462    std::size_t sz(_parts.size());
463    std::vector< MEDCouplingAutoRefCountObjectPtr<DataArrayInt> > a(sz);
464    std::vector< const DataArrayInt *> aa(sz);
465    for(std::size_t i=0;i<sz;i++)
466      {
467        
468        const DataArrayInt *pfl(_pfls[i]);
469        MEDCouplingAutoRefCountObjectPtr<MEDCoupling1GTUMesh> m(_parts[i]);
470        if(pfl)
471          m=dynamic_cast<MEDCoupling1GTUMesh *>(_parts[i]->buildPartOfMySelfKeepCoords(pfl->begin(),pfl->end()));
472        DataArrayInt *cellIds=0;
473        m->fillCellIdsToKeepFromNodeIds(pflNodes->begin(),pflNodes->end(),true,cellIds);
474        MEDCouplingAutoRefCountObjectPtr<DataArrayInt> cellIdsSafe(cellIds);
475        MEDCouplingAutoRefCountObjectPtr<MEDCouplingPointSet> m2(m->buildPartOfMySelfKeepCoords(cellIds->begin(),cellIds->end()));
476        int tmp=-1;
477        MEDCouplingAutoRefCountObjectPtr<DataArrayInt> o2n(m2->getNodeIdsInUse(tmp));
478        a[i]=o2n->invertArrayO2N2N2O(tmp); aa[i]=a[i];
479        if(pfl)
480          _pfls[i]=pfl->selectByTupleIdSafe(cellIds->begin(),cellIds->end());
481        else
482          _pfls[i]=cellIdsSafe;
483      }
484    _node_reduction=DataArrayInt::Aggregate(aa);
485    _node_reduction->sort(true);
486    _node_reduction=_node_reduction->buildUnique();
487 }
488
489 MEDMeshMultiLev *MEDUMeshMultiLev::prepare() const
490 {
491   return new MEDUMeshMultiLev(*this);
492 }
493
494 MEDUMeshMultiLev::MEDUMeshMultiLev(const MEDUMeshMultiLev& other):MEDMeshMultiLev(other),_parts(other._parts)
495 {
496 }
497
498 MEDUMeshMultiLev::MEDUMeshMultiLev(const MEDStructuredMeshMultiLev& other, const MEDCouplingAutoRefCountObjectPtr<MEDCoupling1GTUMesh>& part):MEDMeshMultiLev(other)
499 {
500   _parts.resize(1);
501   _parts[0]=part;
502   _geo_types.resize(1); _geo_types[0]=part->getCellModelEnum();
503   _nb_entities.resize(1); _nb_entities[0]=part->getNumberOfCells();
504   _pfls.resize(1); _pfls[0]=0;
505 }
506
507 /*! 
508  * If returned value is false output pointer \a coords is not the internal pointer. If returned value is true output pointer \a coords is directly the internal pointer.
509  * If true is returned, the \a coords output parameter should be used with care (non const method call) to avoid to change the internal state of MEDFileUMesh instance.
510  */
511 bool MEDUMeshMultiLev::buildVTUArrays(DataArrayDouble *& coords, DataArrayByte *&types, DataArrayInt *&cellLocations, DataArrayInt *& cells, DataArrayInt *&faceLocations, DataArrayInt *&faces) const
512 {
513   if(_parts.empty())
514     throw INTERP_KERNEL::Exception("MEDUMeshMultiLev::getVTUArrays : empty array !");
515   if(!(const MEDCoupling1GTUMesh *)_parts[0])
516     throw INTERP_KERNEL::Exception("MEDUMeshMultiLev::getVTUArrays : first part is null !");
517   const DataArrayDouble *tmp(_parts[0]->getCoords());
518   if(!tmp)
519     throw INTERP_KERNEL::Exception("MEDUMeshMultiLev::getVTUArrays : the coordinates are null !");
520   MEDCouplingAutoRefCountObjectPtr<DataArrayDouble> a(const_cast<DataArrayDouble *>(tmp)); tmp->incrRef();
521   int szBCE(0),szD(0),szF(0);
522   bool isPolyh(false);
523   int iii(0);
524   for(std::vector< MEDCouplingAutoRefCountObjectPtr<MEDCoupling1GTUMesh> >::const_iterator it=_parts.begin();it!=_parts.end();it++,iii++)
525     {
526       const MEDCoupling1GTUMesh *cur(*it);
527       if(!cur)
528         throw INTERP_KERNEL::Exception("MEDUMeshMultiLev::getVTUArrays : a part is null !");
529       //
530       const DataArrayInt *pfl(_pfls[iii]);
531       MEDCouplingAutoRefCountObjectPtr<MEDCoupling1GTUMesh> cur2;
532       if(!pfl)
533         { cur2=const_cast<MEDCoupling1GTUMesh *>(cur); cur2->incrRef(); }
534       else
535         { cur2=dynamic_cast<MEDCoupling1GTUMesh *>(cur->buildPartOfMySelfKeepCoords(pfl->begin(),pfl->end())); cur=cur2; }
536       //
537       int curNbCells(cur->getNumberOfCells());
538       szBCE+=curNbCells;
539       if((*it)->getCellModelEnum()!=INTERP_KERNEL::NORM_POLYHED)
540         szD+=cur->getNodalConnectivity()->getNumberOfTuples()+curNbCells;
541       else
542         {
543           isPolyh=true;
544           MEDCouplingAutoRefCountObjectPtr<DataArrayInt> tmp2(cur->computeEffectiveNbOfNodesPerCell());
545           szD+=tmp2->accumulate(0)+curNbCells;
546           szF+=2*curNbCells+cur->getNodalConnectivity()->getNumberOfTuples();
547         }
548     }
549   MEDCouplingAutoRefCountObjectPtr<DataArrayByte> b(DataArrayByte::New()); b->alloc(szBCE,1); char *bPtr(b->getPointer());
550   MEDCouplingAutoRefCountObjectPtr<DataArrayInt> c(DataArrayInt::New()); c->alloc(szBCE,1); int *cPtr(c->getPointer());
551   MEDCouplingAutoRefCountObjectPtr<DataArrayInt> d(DataArrayInt::New()); d->alloc(szD,1); int *dPtr(d->getPointer());
552   MEDCouplingAutoRefCountObjectPtr<DataArrayInt> e(DataArrayInt::New()),f(DataArrayInt::New()); int *ePtr(0),*fPtr(0);
553   if(isPolyh)
554     { e->alloc(szBCE,1); ePtr=e->getPointer(); f->alloc(szF,1); fPtr=f->getPointer(); }
555   int k(0);
556   iii=0;
557   for(std::vector< MEDCouplingAutoRefCountObjectPtr<MEDCoupling1GTUMesh> >::const_iterator it=_parts.begin();it!=_parts.end();it++,iii++)
558     {
559       const MEDCoupling1GTUMesh *cur(*it);
560       //
561       const DataArrayInt *pfl(_pfls[iii]);
562       MEDCouplingAutoRefCountObjectPtr<MEDCoupling1GTUMesh> cur2;
563       if(!pfl)
564         { cur2=const_cast<MEDCoupling1GTUMesh *>(cur); cur2->incrRef(); }
565       else
566         { cur2=dynamic_cast<MEDCoupling1GTUMesh *>(cur->buildPartOfMySelfKeepCoords(pfl->begin(),pfl->end())); cur=cur2; }
567       //
568       int curNbCells(cur->getNumberOfCells());
569       int gt((int)cur->getCellModelEnum());
570       if(gt<0 || gt>=PARAMEDMEM_2_VTKTYPE_LGTH)
571         throw INTERP_KERNEL::Exception("MEDUMeshMultiLev::getVTUArrays : invalid geometric type !");
572       unsigned char gtvtk(PARAMEDMEM_2_VTKTYPE[gt]);
573       if(gtvtk==255)
574         throw INTERP_KERNEL::Exception("MEDUMeshMultiLev::getVTUArrays : no VTK type for the requested INTERP_KERNEL geometric type !");
575       std::fill(bPtr,bPtr+curNbCells,gtvtk); bPtr+=curNbCells;
576       const MEDCoupling1SGTUMesh *scur(dynamic_cast<const MEDCoupling1SGTUMesh *>(cur));
577       const MEDCoupling1DGTUMesh *dcur(dynamic_cast<const MEDCoupling1DGTUMesh *>(cur));
578       const int *connPtr(cur->getNodalConnectivity()->begin());
579       if(!scur && !dcur)
580         throw INTERP_KERNEL::Exception("MEDUMeshMultiLev::getVTUArrays : internal error !");
581       if(scur)
582         {
583           int nnpc(scur->getNumberOfNodesPerCell());
584           for(int i=0;i<curNbCells;i++,connPtr+=nnpc)
585             {
586               *dPtr++=nnpc;
587               dPtr=std::copy(connPtr,connPtr+nnpc,dPtr);
588               *cPtr=k+nnpc; k=*cPtr++;
589             }
590           if(isPolyh)
591             { std::fill(ePtr,ePtr+curNbCells,-1); ePtr+=curNbCells; }
592         }
593       else
594         {
595           const int *connIPtr(dcur->getNodalConnectivityIndex()->begin());
596           if(cur->getCellModelEnum()!=INTERP_KERNEL::NORM_POLYHED)
597             {
598               for(int i=0;i<curNbCells;i++,connIPtr++)
599                 {
600                   *dPtr++=connIPtr[1]-connIPtr[0];
601                   dPtr=std::copy(connPtr+connIPtr[0],connPtr+connIPtr[1],dPtr);
602                   *cPtr=k+connIPtr[1]-connIPtr[0]; k=*cPtr++;
603                 }
604             }
605           else
606             {
607               for(int i=0;i<curNbCells;i++,connIPtr++)
608                 {
609                   std::set<int> s(connPtr+connIPtr[0],connPtr+connIPtr[1]); s.erase(-1);
610                   *dPtr++=(int)s.size();
611                   dPtr=std::copy(s.begin(),s.end(),dPtr);
612                   *cPtr=k+(int)s.size(); k=*cPtr++;
613                 }
614             }
615           if(isPolyh)
616             {
617               connIPtr=dcur->getNodalConnectivityIndex()->begin();
618               if(cur->getCellModelEnum()!=INTERP_KERNEL::NORM_POLYHED)
619                 { std::fill(ePtr,ePtr+curNbCells,-1); ePtr+=curNbCells; }
620               else
621                 {
622                   int kk(0);
623                   for(int i=0;i<curNbCells;i++,connIPtr++)
624                     {
625                       int nbFace(std::count(connPtr+connIPtr[0],connPtr+connIPtr[1],-1)+1);
626                       *fPtr++=nbFace;
627                       const int *work(connPtr+connIPtr[0]);
628                       for(int j=0;j<nbFace;j++)
629                         {
630                           const int *work2=std::find(work,connPtr+connIPtr[1],-1);
631                           *fPtr++=std::distance(work,work2);
632                           fPtr=std::copy(work,work2,fPtr);
633                           work=work2+1;
634                         }
635                       *ePtr++=kk; kk+=connIPtr[1]-connIPtr[0]+2;
636                     }
637                 }
638             }
639         }
640     }
641   if(!isPolyh)
642     reorderNodesIfNecessary(a,d,0);
643   else
644     reorderNodesIfNecessary(a,d,f);
645   if(a->getNumberOfComponents()!=3)
646     a=a->changeNbOfComponents(3,0.);
647   coords=a.retn(); types=b.retn(); cellLocations=c.retn(); cells=d.retn();
648   if(!isPolyh)
649     { faceLocations=0; faces=0; }
650   else
651     { faceLocations=e.retn(); faces=f.retn(); }
652   return tmp==((DataArrayDouble *)a);
653 }
654
655 void MEDUMeshMultiLev::reorderNodesIfNecessary(MEDCouplingAutoRefCountObjectPtr<DataArrayDouble>& coords, DataArrayInt *nodalConnVTK, DataArrayInt *polyhedNodalConnVTK) const
656 {
657   const DataArrayInt *nr(_node_reduction);
658   if(!nr)
659     return ;
660   int sz(coords->getNumberOfTuples());
661   std::vector<bool> b(sz,false);
662   const int *work(nodalConnVTK->begin()),*endW(nodalConnVTK->end());
663   while(work!=endW)
664     {
665       int nb(*work++);
666       for(int i=0;i<nb && work!=endW;i++,work++)
667         {
668           if(*work>=0 && *work<sz)
669             b[*work]=true;
670           else
671             throw INTERP_KERNEL::Exception("MEDUMeshMultiLev::reorderNodesIfNecessary : internal error !");
672         }
673     }
674   if(polyhedNodalConnVTK)
675     {
676       work=polyhedNodalConnVTK->begin(); endW=polyhedNodalConnVTK->end();
677       while(work!=endW)
678         {
679           int nb(*work++);
680           for(int i=0;i<nb && work!=endW;i++)
681             {
682               int nb2(*work++);
683               for(int j=0;j<nb2 && work!=endW;j++,work++)
684                 {
685                   if(*work>=0 && *work<sz)
686                     b[*work]=true;
687                   else
688                     throw INTERP_KERNEL::Exception("MEDUMeshMultiLev::reorderNodesIfNecessary : internal error #2 !");
689                 }
690             }
691         }
692     }
693   int szExp(std::count(b.begin(),b.end(),true));
694   if(szExp!=nr->getNumberOfTuples())
695     throw INTERP_KERNEL::Exception("MEDUMeshMultiLev::reorderNodesIfNecessary : internal error #3 !");
696   // Go renumbering !
697   MEDCouplingAutoRefCountObjectPtr<DataArrayInt> o2n(DataArrayInt::New()); o2n->alloc(sz,1);
698   int *o2nPtr(o2n->getPointer());
699   int newId(0);
700   for(int i=0;i<sz;i++,o2nPtr++)
701     if(b[i]) *o2nPtr=newId++; else *o2nPtr=-1;
702   const int *o2nPtrc(o2n->begin());
703   MEDCouplingAutoRefCountObjectPtr<DataArrayInt> n2o(o2n->invertArrayO2N2N2O(nr->getNumberOfTuples()));
704   MEDCouplingAutoRefCountObjectPtr<DataArrayInt> perm(DataArrayInt::FindPermutationFromFirstToSecond(n2o,nr));
705   const int *permPtr(perm->begin());
706   int *work2(nodalConnVTK->getPointer()),*endW2(nodalConnVTK->getPointer()+nodalConnVTK->getNumberOfTuples());
707   while(work2!=endW2)
708     {
709       int nb(*work2++);
710       for(int i=0;i<nb && work2!=endW2;i++,work2++)
711         *work2=permPtr[o2nPtrc[*work2]];
712     }
713   if(polyhedNodalConnVTK)
714     {
715       work2=polyhedNodalConnVTK->getPointer(); endW2=polyhedNodalConnVTK->getPointer()+polyhedNodalConnVTK->getNumberOfTuples();
716       while(work2!=endW2)
717         {
718           int nb(*work2++);
719           for(int i=0;i<nb && work2!=endW2;i++)
720             {
721               int nb2(*work2++);
722               for(int j=0;j<nb2 && work2!=endW2;j++,work2++)
723                 *work2=permPtr[o2nPtrc[*work2]];
724             }
725         }
726     }
727   coords=(coords->selectByTupleIdSafe(nr->begin(),nr->end()));
728 }
729
730 //=
731
732 MEDStructuredMeshMultiLev::MEDStructuredMeshMultiLev()
733 {
734 }
735
736 MEDStructuredMeshMultiLev::MEDStructuredMeshMultiLev(int nbOfNodes, const std::vector<INTERP_KERNEL::NormalizedCellType>& gts, const std::vector<const DataArrayInt *>& pfls, const std::vector<int>& nbEntities):MEDMeshMultiLev(nbOfNodes,gts,pfls,nbEntities)
737 {
738 }
739
740 void MEDStructuredMeshMultiLev::selectPartOfNodes(const DataArrayInt *pflNodes)
741 {
742   if(!pflNodes || !pflNodes->isAllocated())
743     return ;
744   std::vector<int> ngs(getNodeGridStructure());
745   MEDCouplingAutoRefCountObjectPtr<DataArrayInt> conn(MEDCouplingStructuredMesh::Build1GTNodalConnectivity(&ngs[0],&ngs[0]+ngs.size()));
746   MEDCouplingAutoRefCountObjectPtr<MEDCoupling1SGTUMesh> m(MEDCoupling1SGTUMesh::New("",MEDCouplingStructuredMesh::GetGeoTypeGivenMeshDimension(ngs.size())));
747   m->setNodalConnectivity(conn);
748   const DataArrayInt *pfl(_pfls[0]);
749   if(pfl)
750     {
751       m=dynamic_cast<MEDCoupling1SGTUMesh *>(m->buildPartOfMySelfKeepCoords(pfl->begin(),pfl->end()));
752     }
753   DataArrayInt *cellIds=0;
754   m->fillCellIdsToKeepFromNodeIds(pflNodes->begin(),pflNodes->end(),true,cellIds);
755   MEDCouplingAutoRefCountObjectPtr<DataArrayInt> cellIdsSafe(cellIds);
756   MEDCouplingAutoRefCountObjectPtr<MEDCouplingPointSet> m2(m->buildPartOfMySelfKeepCoords(cellIds->begin(),cellIds->end()));
757   int tmp=-1;
758   _node_reduction=m2->getNodeIdsInUse(tmp);
759   if(pfl)
760     _pfls[0]=pfl->selectByTupleIdSafe(cellIds->begin(),cellIds->end());
761   else
762     _pfls[0]=cellIdsSafe;
763 }
764
765 MEDStructuredMeshMultiLev::MEDStructuredMeshMultiLev(const MEDStructuredMeshMultiLev& other):MEDMeshMultiLev(other)
766 {
767 }
768
769 //=
770
771 MEDCMeshMultiLev *MEDCMeshMultiLev::New(const MEDFileCMesh *m, const std::vector<int>& levs)
772 {
773   return new MEDCMeshMultiLev(m,levs);
774 }
775
776 MEDCMeshMultiLev *MEDCMeshMultiLev::New(const MEDFileCMesh *m, const std::vector<INTERP_KERNEL::NormalizedCellType>& gts, const std::vector<const DataArrayInt *>& pfls, const std::vector<int>& nbEntities)
777 {
778   return new MEDCMeshMultiLev(m,gts,pfls,nbEntities);
779 }
780
781 MEDCMeshMultiLev::MEDCMeshMultiLev(const MEDFileCMesh *m, const std::vector<int>& levs)
782 {
783   if(!m)
784     throw INTERP_KERNEL::Exception("MEDCMeshMultiLev constructor : null input pointer !");
785   if(levs.size()!=1 || levs[0]!=0)
786     throw INTERP_KERNEL::Exception("MEDCMeshMultiLev constructor : levels supported is 0 only !");
787   int mdim(MEDCouplingStructuredMesh::GetGeoTypeGivenMeshDimension(m->getMeshDimension()));
788   _coords.resize(mdim);
789   for(int i=0;i<mdim;i++)
790     {
791       DataArrayDouble *elt(const_cast<DataArrayDouble *>(m->getMesh()->getCoordsAt(i)));
792       if(!elt)
793         throw INTERP_KERNEL::Exception("MEDCMeshMultiLev constructor 2 : presence of null pointer for an vector of double along an axis !");
794       _coords[i]=elt;
795     }
796 }
797
798 MEDCMeshMultiLev::MEDCMeshMultiLev(const MEDFileCMesh *m, const std::vector<INTERP_KERNEL::NormalizedCellType>& gts, const std::vector<const DataArrayInt *>& pfls, const std::vector<int>& nbEntities):MEDStructuredMeshMultiLev(m->getNumberOfNodes(),gts,pfls,nbEntities)
799 {
800   if(!m)
801     throw INTERP_KERNEL::Exception("MEDCMeshMultiLev constructor 2 : null input pointer !");
802   if(gts.size()!=1 || pfls.size()!=1)
803     throw INTERP_KERNEL::Exception("MEDCMeshMultiLev constructor 2 : lengthes of gts and pfls must be equal to one !");
804   int mdim(m->getMeshDimension());
805   INTERP_KERNEL::NormalizedCellType gt(MEDCouplingStructuredMesh::GetGeoTypeGivenMeshDimension(mdim));
806   if(gt!=gts[0])
807     throw INTERP_KERNEL::Exception("MEDCMeshMultiLev constructor 2 : the unique geo type is invalid regarding meshdim !");
808   _coords.resize(mdim);
809   for(int i=0;i<mdim;i++)
810     {
811       DataArrayDouble *elt(const_cast<DataArrayDouble *>(m->getMesh()->getCoordsAt(i)));
812       if(!elt)
813         throw INTERP_KERNEL::Exception("MEDCMeshMultiLev constructor 2 : presence of null pointer for an vector of double along an axis !");
814       _coords[i]=elt; _coords[i]->incrRef();
815     }
816 }
817
818 MEDCMeshMultiLev::MEDCMeshMultiLev(const MEDCMeshMultiLev& other):MEDStructuredMeshMultiLev(other),_coords(other._coords)
819 {
820 }
821
822 std::vector<int> MEDCMeshMultiLev::getNodeGridStructure() const
823 {
824   std::vector<int> ret(_coords.size());
825   for(std::size_t i=0;i<_coords.size();i++)
826     ret[i]=_coords[i]->getNumberOfTuples();
827   return ret;
828 }
829
830 MEDMeshMultiLev *MEDCMeshMultiLev::prepare() const
831 {
832   const DataArrayInt *pfl(_pfls[0]),*nr(_node_reduction);
833   MEDCouplingAutoRefCountObjectPtr<DataArrayInt> nnr;
834   std::vector<int> cgs,ngs(getNodeGridStructure());
835   cgs.resize(ngs.size());
836   std::transform(ngs.begin(),ngs.end(),cgs.begin(),std::bind2nd(std::plus<int>(),-1));
837   if(pfl)
838     {
839       std::vector< std::pair<int,int> > cellParts;
840       if(MEDCouplingStructuredMesh::IsPartStructured(pfl->begin(),pfl->end(),cgs,cellParts))
841         {
842           MEDCouplingAutoRefCountObjectPtr<MEDCMeshMultiLev> ret(new MEDCMeshMultiLev(*this));
843           if(nr)
844             { nnr=nr->deepCpy(); nnr->sort(true); ret->setNodeReduction(nnr); }
845           ret->_nb_entities[0]=pfl->getNumberOfTuples();
846           ret->_pfls[0]=0;
847           std::vector< MEDCouplingAutoRefCountObjectPtr<DataArrayDouble> > coords(_coords.size());
848           for(std::size_t i=0;i<_coords.size();i++)
849             coords[i]=_coords[i]->selectByTupleId2(cellParts[i].first,cellParts[i].second+1,1);
850           ret->_coords=coords;
851           return ret.retn();
852         }
853       else
854         {
855           MEDCouplingAutoRefCountObjectPtr<MEDCouplingCMesh> m(MEDCouplingCMesh::New());
856           for(std::size_t i=0;i<ngs.size();i++)
857             m->setCoordsAt(i,_coords[i]);
858           MEDCouplingAutoRefCountObjectPtr<MEDCoupling1SGTUMesh> m2(m->build1SGTUnstructured());
859           MEDCouplingAutoRefCountObjectPtr<MEDCoupling1GTUMesh> m3=dynamic_cast<MEDCoupling1GTUMesh *>(m2->buildPartOfMySelfKeepCoords(pfl->begin(),pfl->end()));
860           MEDCouplingAutoRefCountObjectPtr<MEDUMeshMultiLev> ret(new MEDUMeshMultiLev(*this,m3));
861           if(nr)
862             { m3->zipCoords(); nnr=nr->deepCpy(); nnr->sort(true); ret->setNodeReduction(nnr); }
863           return ret.retn();
864         }
865     }
866   else
867     {
868       MEDCouplingAutoRefCountObjectPtr<MEDCMeshMultiLev> ret(new MEDCMeshMultiLev(*this));
869       if(nr)
870         { nnr=nr->deepCpy(); nnr->sort(true); ret->setNodeReduction(nnr); }
871       return ret.retn();
872     }
873 }
874
875 std::vector< DataArrayDouble * > MEDCMeshMultiLev::buildVTUArrays() const
876 {
877   std::size_t sz(_coords.size());
878   std::vector< DataArrayDouble * > ret(sz);
879   for(std::size_t i=0;i<sz;i++)
880     {
881       ret[i]=const_cast<DataArrayDouble *>((const DataArrayDouble *)_coords[i]);
882       ret[i]->incrRef();
883     }
884   return ret;
885 }
886
887 //=
888
889 MEDCurveLinearMeshMultiLev *MEDCurveLinearMeshMultiLev::New(const MEDFileCurveLinearMesh *m, const std::vector<int>& levs)
890 {
891   return new MEDCurveLinearMeshMultiLev(m,levs);
892 }
893
894 MEDCurveLinearMeshMultiLev *MEDCurveLinearMeshMultiLev::New(const MEDFileCurveLinearMesh *m, const std::vector<INTERP_KERNEL::NormalizedCellType>& gts, const std::vector<const DataArrayInt *>& pfls, const std::vector<int>& nbEntities)
895 {
896   return new MEDCurveLinearMeshMultiLev(m,gts,pfls,nbEntities);
897 }
898
899 MEDCurveLinearMeshMultiLev::MEDCurveLinearMeshMultiLev(const MEDFileCurveLinearMesh *m, const std::vector<int>& levs)
900 {
901   if(!m)
902     throw INTERP_KERNEL::Exception("MEDCurveLinearMeshMultiLev constructor : null input pointer !");
903   if(levs.size()!=1 || levs[0]!=0)
904     throw INTERP_KERNEL::Exception("MEDCurveLinearMeshMultiLev constructor : levels supported is 0 only !");
905   DataArrayDouble *coords(const_cast<DataArrayDouble *>(m->getMesh()->getCoords()));
906   if(!coords)
907     throw INTERP_KERNEL::Exception("MEDCurveLinearMeshMultiLev constructor 2 : no coords set !");
908   coords->incrRef();
909   _coords=coords;
910   _structure=m->getMesh()->getNodeGridStructure();
911 }
912
913 MEDCurveLinearMeshMultiLev::MEDCurveLinearMeshMultiLev(const MEDFileCurveLinearMesh *m, const std::vector<INTERP_KERNEL::NormalizedCellType>& gts, const std::vector<const DataArrayInt *>& pfls, const std::vector<int>& nbEntities):MEDStructuredMeshMultiLev(m->getNumberOfNodes(),gts,pfls,nbEntities)
914 {
915   if(!m)
916     throw INTERP_KERNEL::Exception("MEDCurveLinearMeshMultiLev constructor 2 : null input pointer !");
917   if(gts.size()!=1 || pfls.size()!=1)
918     throw INTERP_KERNEL::Exception("MEDCurveLinearMeshMultiLev constructor 2 : lengthes of gts and pfls must be equal to one !");
919   int mdim(MEDCouplingStructuredMesh::GetGeoTypeGivenMeshDimension(m->getMeshDimension()));
920   if(mdim!=gts[0])
921     throw INTERP_KERNEL::Exception("MEDCurveLinearMeshMultiLev constructor 2 : the unique geo type is invalid regarding meshdim !");
922   DataArrayDouble *coords(const_cast<DataArrayDouble *>(m->getMesh()->getCoords()));
923   if(!coords)
924     throw INTERP_KERNEL::Exception("MEDCurveLinearMeshMultiLev constructor 2 : no coords set !");
925   coords->incrRef();
926   _coords=coords;
927   _structure=m->getMesh()->getNodeGridStructure();
928 }
929
930 MEDCurveLinearMeshMultiLev::MEDCurveLinearMeshMultiLev(const MEDCurveLinearMeshMultiLev& other):MEDStructuredMeshMultiLev(other),_coords(other._coords),_structure(other._structure)
931 {
932 }
933
934 std::vector<int> MEDCurveLinearMeshMultiLev::getNodeGridStructure() const
935 {
936   return _structure;
937 }
938
939 MEDMeshMultiLev *MEDCurveLinearMeshMultiLev::prepare() const
940 {
941   const DataArrayInt *pfl(_pfls[0]),*nr(_node_reduction);
942   MEDCouplingAutoRefCountObjectPtr<DataArrayInt> nnr;
943   std::vector<int> cgs,ngs(getNodeGridStructure());
944   cgs.resize(ngs.size());
945   std::transform(ngs.begin(),ngs.end(),cgs.begin(),std::bind2nd(std::plus<int>(),-1));
946   if(pfl)
947     {
948       std::vector< std::pair<int,int> > cellParts,nodeParts;
949       if(MEDCouplingStructuredMesh::IsPartStructured(pfl->begin(),pfl->end(),cgs,cellParts))
950         {
951           nodeParts=cellParts;
952           std::vector<int> st(ngs.size());
953           for(std::size_t i=0;i<ngs.size();i++)
954             {
955               nodeParts[i].second++;
956               st[i]=nodeParts[i].second-nodeParts[i].first;
957             }
958           MEDCouplingAutoRefCountObjectPtr<DataArrayInt> p(MEDCouplingStructuredMesh::BuildExplicitIdsFrom(ngs,nodeParts));
959           MEDCouplingAutoRefCountObjectPtr<MEDCurveLinearMeshMultiLev> ret(new MEDCurveLinearMeshMultiLev(*this));
960           if(nr)
961             { nnr=nr->deepCpy(); nnr->sort(true); ret->setNodeReduction(nnr); }
962           ret->_nb_entities[0]=pfl->getNumberOfTuples();
963           ret->_pfls[0]=0;
964           ret->_coords=_coords->selectByTupleIdSafe(p->begin(),p->end());
965           ret->_structure=st;
966           return ret.retn();
967         }
968       else
969         {
970           MEDCouplingAutoRefCountObjectPtr<MEDCouplingCurveLinearMesh> m(MEDCouplingCurveLinearMesh::New());
971           m->setCoords(_coords); m->setNodeGridStructure(&_structure[0],&_structure[0]+_structure.size());
972           MEDCouplingAutoRefCountObjectPtr<MEDCoupling1SGTUMesh> m2(m->build1SGTUnstructured());
973           MEDCouplingAutoRefCountObjectPtr<MEDCoupling1GTUMesh> m3=dynamic_cast<MEDCoupling1GTUMesh *>(m2->buildPartOfMySelfKeepCoords(pfl->begin(),pfl->end()));
974           MEDCouplingAutoRefCountObjectPtr<MEDUMeshMultiLev> ret(new MEDUMeshMultiLev(*this,m3));
975           if(nr)
976             { m3->zipCoords(); nnr=nr->deepCpy(); nnr->sort(true); ret->setNodeReduction(nnr); }
977           return ret.retn();
978         }
979     }
980   else
981     {
982       MEDCouplingAutoRefCountObjectPtr<MEDCurveLinearMeshMultiLev> ret(new MEDCurveLinearMeshMultiLev(*this));
983       if(nr)
984         { nnr=nr->deepCpy(); nnr->sort(true); ret->setNodeReduction(nnr); }
985       return ret.retn();
986     }
987 }
988
989 void MEDCurveLinearMeshMultiLev::buildVTUArrays(DataArrayDouble *&coords, std::vector<int>& nodeStrct) const
990 {
991   nodeStrct=_structure;
992   const DataArrayDouble *coo(_coords);
993   if(!coo)
994     throw INTERP_KERNEL::Exception("MEDCurveLinearMeshMultiLev::buildVTUArrays : null pointer on coordinates !");
995   coords=const_cast<DataArrayDouble *>(coo); coords->incrRef();
996 }
997
998 //=
999
1000 MEDFileField1TSStructItem2::MEDFileField1TSStructItem2()
1001 {
1002 }
1003
1004 MEDFileField1TSStructItem2::MEDFileField1TSStructItem2(INTERP_KERNEL::NormalizedCellType a, const std::pair<int,int>& b, const std::string& c, const std::string& d):_geo_type(a),_start_end(b),_pfl(DataArrayInt::New()),_loc(d),_nb_of_entity(-1)
1005 {
1006   _pfl->setName(c.c_str());
1007 }
1008
1009 void MEDFileField1TSStructItem2::checkWithMeshStructForCells(const MEDFileMeshStruct *mst, const MEDFileFieldGlobsReal *globs)
1010 {
1011   int nbOfEnt=mst->getNumberOfElemsOfGeoType(_geo_type);
1012   checkInRange(nbOfEnt,1,globs);
1013 }
1014
1015 void MEDFileField1TSStructItem2::checkWithMeshStructForGaussNE(const MEDFileMeshStruct *mst, const MEDFileFieldGlobsReal *globs)
1016 {
1017   int nbOfEnt=mst->getNumberOfElemsOfGeoType(_geo_type);
1018   const INTERP_KERNEL::CellModel& cm=INTERP_KERNEL::CellModel::GetCellModel(_geo_type);
1019   checkInRange(nbOfEnt,(int)cm.getNumberOfNodes(),globs);
1020 }
1021
1022 void MEDFileField1TSStructItem2::checkWithMeshStructForGaussPT(const MEDFileMeshStruct *mst, const MEDFileFieldGlobsReal *globs)
1023 {
1024   if(!globs)
1025     throw INTERP_KERNEL::Exception("MEDFileField1TSStructItem2::checkWithMeshStructForGaussPT : no globals specified !");
1026   if(_loc.empty())
1027     throw INTERP_KERNEL::Exception("MEDFileField1TSStructItem2::checkWithMeshStructForGaussPT : no localization specified !");
1028   const MEDFileFieldLoc& loc=globs->getLocalization(_loc.c_str());
1029   int nbOfEnt=mst->getNumberOfElemsOfGeoType(_geo_type);
1030   checkInRange(nbOfEnt,loc.getNumberOfGaussPoints(),globs);
1031 }
1032
1033 int MEDFileField1TSStructItem2::getNbOfIntegrationPts(const MEDFileFieldGlobsReal *globs) const
1034 {
1035   if(_loc.empty())
1036     {
1037       if(getPflName().empty())
1038         return (_start_end.second-_start_end.first)/_nb_of_entity;
1039       else
1040         return (_start_end.second-_start_end.first)/getPfl(globs)->getNumberOfTuples();
1041     }
1042   else
1043     {
1044       const MEDFileFieldLoc& loc(globs->getLocalization(_loc.c_str()));
1045       return loc.getNumberOfGaussPoints();
1046     }
1047 }
1048
1049 std::string MEDFileField1TSStructItem2::getPflName() const
1050 {
1051   return _pfl->getName();
1052 }
1053
1054 const DataArrayInt *MEDFileField1TSStructItem2::getPfl(const MEDFileFieldGlobsReal *globs) const
1055 {
1056   if(!_pfl->isAllocated())
1057     {
1058       if(_pfl->getName().empty())
1059         return 0;
1060       else
1061         return globs->getProfile(_pfl->getName().c_str());
1062     }
1063   else
1064     return _pfl;
1065 }
1066
1067 /*!
1068  * \param [in] nbOfEntity - number of entity that can be either cells or nodes. Not other possiblity.
1069  * \param [in] nip - number of integration points. 1 for ON_CELLS and NO_NODES
1070  */
1071 void MEDFileField1TSStructItem2::checkInRange(int nbOfEntity, int nip, const MEDFileFieldGlobsReal *globs)
1072 {
1073   _nb_of_entity=nbOfEntity;
1074   if(_pfl->getName().empty())
1075     {
1076       if(nbOfEntity!=(_start_end.second-_start_end.first)/nip)
1077         throw INTERP_KERNEL::Exception("MEDFileField1TSStructItem2::checkInRange : Mismatch between number of entities and size of node field !");
1078       return ;
1079     }
1080   else
1081     {
1082       if(!globs)
1083         throw INTERP_KERNEL::Exception("MEDFileField1TSStructItem2::checkInRange : Presence of a profile on field whereas no globals found in file !");
1084       const DataArrayInt *pfl=globs->getProfile(_pfl->getName().c_str());
1085       if(!pfl)
1086         throw INTERP_KERNEL::Exception("MEDFileField1TSStructItem2::checkInRange : Presence of a profile on field whereas no such profile found in file !");
1087       pfl->checkAllIdsInRange(0,nbOfEntity);
1088     }
1089 }
1090
1091 bool MEDFileField1TSStructItem2::isFastlyEqual(int& startExp, INTERP_KERNEL::NormalizedCellType gt, const char *pflName) const
1092 {
1093   if(startExp!=_start_end.first)
1094     return false;
1095   if(gt!=_geo_type)
1096     return false;
1097   if(getPflName()!=pflName)
1098     return false;
1099   startExp=_start_end.second;
1100   return true;
1101 }
1102
1103 bool MEDFileField1TSStructItem2::operator==(const MEDFileField1TSStructItem2& other) const throw(INTERP_KERNEL::Exception)
1104 {
1105   //_nb_of_entity is not taken into account here. It is not a bug, because no mesh consideration needed here to perform fast compare.
1106   //idem for _loc. It is not an effective attribute for support comparison.
1107   return _geo_type==other._geo_type && _start_end==other._start_end && _pfl->getName()==other._pfl->getName();
1108 }
1109
1110 bool MEDFileField1TSStructItem2::isCellSupportEqual(const MEDFileField1TSStructItem2& other, const MEDFileFieldGlobsReal *globs) const
1111 {
1112   if(_geo_type!=other._geo_type)
1113     return false;
1114   if(_nb_of_entity!=other._nb_of_entity)
1115     return false;
1116   if((_pfl->getName().empty() && !other._pfl->getName().empty()) || (!_pfl->getName().empty() && other._pfl->getName().empty()))
1117     return false;
1118   if(_pfl->getName().empty() && other._pfl->getName().empty())
1119     return true;
1120   const DataArrayInt *pfl1(getPfl(globs)),*pfl2(other.getPfl(globs));
1121   return pfl1->isEqualWithoutConsideringStr(*pfl2);
1122 }
1123
1124 bool MEDFileField1TSStructItem2::isNodeSupportEqual(const MEDFileField1TSStructItem2& other, const MEDFileFieldGlobsReal *globs) const
1125 {
1126   return isCellSupportEqual(other,globs);
1127 }
1128
1129 /*!
1130  * \a objs must be non empty. \a objs should contain items having same geometric type.
1131  */
1132 MEDFileField1TSStructItem2 MEDFileField1TSStructItem2::BuildAggregationOf(const std::vector<const MEDFileField1TSStructItem2 *>& objs, const MEDFileFieldGlobsReal *globs)
1133 {
1134   if(objs.empty())
1135     throw INTERP_KERNEL::Exception("MEDFileField1TSStructItem2::BuildAggregationOf : empty input !");
1136   if(objs.size()==1)
1137     return MEDFileField1TSStructItem2(*objs[0]);
1138   INTERP_KERNEL::NormalizedCellType gt(objs[0]->_geo_type);
1139   int nbEntityRef(objs[0]->_nb_of_entity);
1140   std::size_t sz(objs.size());
1141   std::vector<const DataArrayInt *> arrs(sz);
1142   for(std::size_t i=0;i<sz;i++)
1143     {
1144       const MEDFileField1TSStructItem2 *obj(objs[i]);
1145       if(gt!=obj->_geo_type)
1146         throw INTERP_KERNEL::Exception("MEDFileField1TSStructItem2::BuildAggregationOf : invalid situation ! All input must have the same geo type !");
1147       if(nbEntityRef!=obj->_nb_of_entity)
1148         throw INTERP_KERNEL::Exception("MEDFileField1TSStructItem2::BuildAggregationOf : invalid situation ! All input must have the global nb of entity !");
1149       if(obj->_pfl->getName().empty())
1150         throw INTERP_KERNEL::Exception("MEDFileField1TSStructItem2::BuildAggregationOf : invalid situation ! Several same geo type chunk must all lie on profiles !");
1151       arrs[i]=globs->getProfile(obj->_pfl->getName().c_str());
1152     }
1153   MEDCouplingAutoRefCountObjectPtr<DataArrayInt> arr(DataArrayInt::Aggregate(arrs));
1154   arr->sort();
1155   int oldNbTuples(arr->getNumberOfTuples());
1156   arr=arr->buildUnique();
1157   if(oldNbTuples!=arr->getNumberOfTuples())
1158     throw INTERP_KERNEL::Exception("MEDFileField1TSStructItem2::BuildAggregationOf : some entities are present several times !");
1159   if(arr->isIdentity() && oldNbTuples==nbEntityRef)
1160     {
1161       std::pair<int,int> p(0,nbEntityRef);
1162       std::string a,b;
1163       MEDFileField1TSStructItem2 ret(gt,p,a,b);
1164       ret._nb_of_entity=nbEntityRef;
1165       return ret;
1166     }
1167   else
1168     {
1169       arr->setName(NEWLY_CREATED_PFL_NAME);
1170       std::pair<int,int> p(0,oldNbTuples);
1171       std::string a,b;
1172       MEDFileField1TSStructItem2 ret(gt,p,a,b);
1173       ret._nb_of_entity=nbEntityRef;
1174       ret._pfl=arr;
1175       return ret;
1176     }
1177 }
1178
1179 std::size_t MEDFileField1TSStructItem2::getHeapMemorySizeWithoutChildren() const
1180 {
1181   std::size_t ret(_loc.capacity());
1182   return ret;
1183 }
1184
1185 std::vector<const BigMemoryObject *> MEDFileField1TSStructItem2::getDirectChildren() const
1186 {
1187   std::vector<const BigMemoryObject *> ret;
1188   const DataArrayInt *pfl(_pfl);
1189   if(pfl)
1190     ret.push_back(pfl);
1191   return ret;
1192 }
1193
1194 //=
1195
1196 MEDFileField1TSStructItem::MEDFileField1TSStructItem(TypeOfField a, const std::vector< MEDFileField1TSStructItem2 >& b):_computed(false),_type(a),_items(b)
1197 {
1198 }
1199
1200 void MEDFileField1TSStructItem::checkWithMeshStruct(const MEDFileMeshStruct *mst, const MEDFileFieldGlobsReal *globs)
1201 {
1202   switch(_type)
1203     {
1204     case ON_NODES:
1205       {
1206         int nbOfEnt=mst->getNumberOfNodes();
1207         if(_items.size()!=1)
1208           throw INTERP_KERNEL::Exception("MEDFileField1TSStructItem::checkWithMeshStruct : for nodes field only one subdivision supported !");
1209         _items[0].checkInRange(nbOfEnt,1,globs);
1210         break ;
1211       }
1212     case ON_CELLS:
1213       {
1214         for(std::vector< MEDFileField1TSStructItem2 >::iterator it=_items.begin();it!=_items.end();it++)
1215           (*it).checkWithMeshStructForCells(mst,globs);
1216         break;
1217       }
1218     case ON_GAUSS_NE:
1219       {
1220         for(std::vector< MEDFileField1TSStructItem2 >::iterator it=_items.begin();it!=_items.end();it++)
1221           (*it).checkWithMeshStructForGaussNE(mst,globs);
1222         break;
1223       }
1224     case ON_GAUSS_PT:
1225       {
1226         for(std::vector< MEDFileField1TSStructItem2 >::iterator it=_items.begin();it!=_items.end();it++)
1227           (*it).checkWithMeshStructForGaussPT(mst,globs);
1228         break;
1229       }
1230     default:
1231       throw INTERP_KERNEL::Exception("MEDFileField1TSStructItem::checkWithMeshStruct : not managed field type !");
1232     }
1233 }
1234
1235 bool MEDFileField1TSStructItem::operator==(const MEDFileField1TSStructItem& other) const throw(INTERP_KERNEL::Exception)
1236 {
1237   if(_type!=other._type)
1238     return false;
1239   if(_items.size()!=other._items.size())
1240     return false;
1241   for(std::size_t i=0;i<_items.size();i++)
1242     if(!(_items[i]==other._items[i]))
1243       return false;
1244   return true;
1245 }
1246
1247 bool MEDFileField1TSStructItem::isCellSupportEqual(const MEDFileField1TSStructItem& other, const MEDFileFieldGlobsReal *globs) const
1248 {
1249   if(_type!=other._type)
1250     return false;
1251   if(_items.size()!=other._items.size())
1252     return false;
1253   for(std::size_t i=0;i<_items.size();i++)
1254     if(!(_items[i].isCellSupportEqual(other._items[i],globs)))
1255       return false;
1256   return true;
1257 }
1258
1259 bool MEDFileField1TSStructItem::isNodeSupportEqual(const MEDFileField1TSStructItem& other, const MEDFileFieldGlobsReal *globs) const
1260 {
1261   if(_type!=other._type)
1262     return false;
1263   if(_items.size()!=other._items.size())
1264     return false;
1265   for(std::size_t i=0;i<_items.size();i++)
1266     if(!(_items[i].isNodeSupportEqual(other._items[i],globs)))
1267       return false;
1268   return true;
1269 }
1270
1271 bool MEDFileField1TSStructItem::isEntityCell() const
1272 {
1273   if(_type==ON_NODES)
1274     return false;
1275   else
1276     return true;
1277 }
1278
1279 class CmpGeo
1280 {
1281 public:
1282   CmpGeo(INTERP_KERNEL::NormalizedCellType geoTyp):_geo_type(geoTyp) { }
1283   bool operator()(const std::pair< INTERP_KERNEL::NormalizedCellType, std::vector<std::size_t> > & v) const { return _geo_type==v.first; }
1284 private:
1285   INTERP_KERNEL::NormalizedCellType _geo_type;
1286 };
1287
1288 MEDFileField1TSStructItem MEDFileField1TSStructItem::simplifyMeOnCellEntity(const MEDFileFieldGlobsReal *globs) const
1289 {
1290   if(!isEntityCell())
1291     throw INTERP_KERNEL::Exception("MEDFileField1TSStructItem::simplifyMeOnCellEntity : must be on ON_CELLS, ON_GAUSS_NE or ON_GAUSS_PT !");
1292   std::vector< std::pair< INTERP_KERNEL::NormalizedCellType, std::vector<std::size_t> > > m;
1293   std::size_t i=0;
1294   for(std::vector< MEDFileField1TSStructItem2 >::const_iterator it=_items.begin();it!=_items.end();it++,i++)
1295     {
1296       std::vector< std::pair< INTERP_KERNEL::NormalizedCellType, std::vector<std::size_t> > >::iterator it0(std::find_if(m.begin(),m.end(),CmpGeo((*it).getGeo())));
1297       if(it0==m.end())
1298         m.push_back(std::pair< INTERP_KERNEL::NormalizedCellType, std::vector<std::size_t> >((*it).getGeo(),std::vector<std::size_t>(1,i)));
1299       else
1300         (*it0).second.push_back(i);
1301     }
1302   if(m.size()==_items.size())
1303     {
1304       MEDFileField1TSStructItem ret(*this);
1305       ret._type=ON_CELLS;
1306       return ret;
1307     }
1308   std::size_t sz(m.size());
1309   std::vector< MEDFileField1TSStructItem2 > items(sz);
1310   for(i=0;i<sz;i++)
1311     {
1312       const std::vector<std::size_t>& ids=m[i].second;
1313       std::vector<const MEDFileField1TSStructItem2 *>objs(ids.size());
1314       for(std::size_t j=0;j<ids.size();j++)
1315         objs[j]=&_items[ids[j]];
1316       items[i]=MEDFileField1TSStructItem2::BuildAggregationOf(objs,globs);
1317     }
1318   MEDFileField1TSStructItem ret(ON_CELLS,items);
1319   ret._computed=true;
1320   return ret;
1321 }
1322
1323 /*!
1324  * \a this is expected to be ON_CELLS and simplified.
1325  */
1326 bool MEDFileField1TSStructItem::isCompatibleWithNodesDiscr(const MEDFileField1TSStructItem& other, const MEDFileMeshStruct *meshSt, const MEDFileFieldGlobsReal *globs) const
1327 {
1328   if(other._type!=ON_NODES)
1329     throw INTERP_KERNEL::Exception("MEDFileField1TSStructItem::isCompatibleWithNodesDiscr : other must be on nodes !");
1330   if(other._items.size()!=1)
1331     throw INTERP_KERNEL::Exception("MEDFileField1TSStructItem::isCompatibleWithNodesDiscr : other is on nodes but number of subparts !");
1332   int theFirstLevFull;
1333   bool ret0=isFullyOnOneLev(meshSt,theFirstLevFull);
1334   const MEDFileField1TSStructItem2& otherNodeIt(other._items[0]);
1335   if(otherNodeIt.getPflName().empty())
1336     {//on all nodes
1337       if(!ret0)
1338         return false;
1339       return theFirstLevFull==0;
1340     }
1341   else
1342     {
1343       const DataArrayInt *pfl=globs->getProfile(otherNodeIt.getPflName().c_str());
1344       MEDCouplingAutoRefCountObjectPtr<DataArrayInt> cpyPfl(pfl->deepCpy());
1345       cpyPfl->sort();
1346       int nbOfNodes(meshSt->getNumberOfNodes());
1347       if(cpyPfl->isIdentity() && cpyPfl->getNumberOfTuples()==nbOfNodes)
1348         {//on all nodes also !
1349           if(!ret0)
1350             return false;
1351           return theFirstLevFull==0;
1352         }
1353       std::vector<bool> nodesFetched(nbOfNodes,false);
1354       meshSt->getTheMesh()->whichAreNodesFetched(*this,globs,nodesFetched);
1355       return cpyPfl->isFittingWith(nodesFetched);
1356     }
1357 }
1358
1359 bool MEDFileField1TSStructItem::isFullyOnOneLev(const MEDFileMeshStruct *meshSt, int& theFirstLevFull) const
1360 {
1361   if(_type!=ON_CELLS)
1362     throw INTERP_KERNEL::Exception("MEDFileField1TSStructItem::isFullyOnOneLev : works only for ON_CELLS discretization !");
1363   if(_items.empty())
1364     throw INTERP_KERNEL::Exception("MEDFileField1TSStructItem::isFullyOnOneLev : items vector is empty !");
1365   int nbOfLevs(meshSt->getNumberOfLevs());
1366   if(nbOfLevs==0)
1367     throw INTERP_KERNEL::Exception("MEDFileField1TSStructItem::isFullyOnOneLev : no levels in input mesh structure !");
1368   std::vector<int> levs(nbOfLevs);
1369   theFirstLevFull=1;
1370   std::set<INTERP_KERNEL::NormalizedCellType> gts;
1371   for(std::vector< MEDFileField1TSStructItem2 >::const_iterator it=_items.begin();it!=_items.end();it++)
1372     {
1373       if(!(*it).getPflName().empty())
1374         return false;
1375       INTERP_KERNEL::NormalizedCellType gt((*it).getGeo());
1376       if(gts.find(gt)!=gts.end())
1377         throw INTERP_KERNEL::Exception("MEDFileField1TSStructItem::isFullyOnOneLev : internal error !");
1378       gts.insert(gt);
1379       int pos(meshSt->getLevelOfGeoType((*it).getGeo()));
1380       levs[-pos]++;
1381     }
1382   for(int i=0;i<nbOfLevs;i++)
1383     if(meshSt->getNumberOfGeoTypesInLev(-i)==levs[i])
1384       { theFirstLevFull=-i; return true; }
1385   return false;
1386 }
1387
1388 const MEDFileField1TSStructItem2& MEDFileField1TSStructItem::operator[](std::size_t i) const throw(INTERP_KERNEL::Exception)
1389 {
1390   if(i>=_items.size())
1391     throw INTERP_KERNEL::Exception("MEDFileField1TSStructItem::operator[] : input is not in valid range !");
1392   return _items[i];
1393 }
1394
1395 std::size_t MEDFileField1TSStructItem::getHeapMemorySizeWithoutChildren() const
1396 {
1397   std::size_t ret(_items.size()*sizeof(MEDFileField1TSStructItem2));
1398   return ret;
1399 }
1400
1401 std::vector<const BigMemoryObject *> MEDFileField1TSStructItem::getDirectChildren() const
1402 {
1403   std::vector<const BigMemoryObject *> ret;
1404   for(std::vector< MEDFileField1TSStructItem2 >::const_iterator it=_items.begin();it!=_items.end();it++)
1405     ret.push_back(&(*it));
1406   return ret;
1407 }
1408
1409 MEDMeshMultiLev *MEDFileField1TSStructItem::buildFromScratchDataSetSupportOnCells(const MEDFileMeshStruct *mst, const MEDFileFieldGlobsReal *globs) const
1410 {
1411   std::size_t sz(_items.size());
1412   std::vector<INTERP_KERNEL::NormalizedCellType> a0(sz);
1413   std::vector<const DataArrayInt *> a1(sz);
1414   std::vector<int> a2(sz);
1415   std::size_t i(0);
1416   for(std::vector< MEDFileField1TSStructItem2 >::const_iterator it=_items.begin();it!=_items.end();it++,i++)
1417     {
1418       a0[i]=(*it).getGeo();
1419       a1[i]=(*it).getPfl(globs);
1420       a2[i]=mst->getNumberOfElemsOfGeoType((*it).getGeo());
1421     }
1422   return MEDMeshMultiLev::New(mst->getTheMesh(),a0,a1,a2);
1423 }
1424
1425 MEDFileField1TSStructItem MEDFileField1TSStructItem::BuildItemFrom(const MEDFileAnyTypeField1TS *ref, const MEDFileMeshStruct *meshSt)
1426 {
1427   TypeOfField atype;
1428   std::vector< MEDFileField1TSStructItem2 > anItems;
1429   //
1430   std::vector< std::vector<std::string> > pfls,locs;
1431   std::vector< std::vector<TypeOfField> > typesF;
1432   std::vector<INTERP_KERNEL::NormalizedCellType> geoTypes;
1433   std::vector< std::vector<std::pair<int,int> > > strtEnds=ref->getFieldSplitedByType(0,geoTypes,typesF,pfls,locs);
1434   std::size_t nbOfGeoTypes(geoTypes.size());
1435   if(nbOfGeoTypes==0)
1436     throw INTERP_KERNEL::Exception("MEDFileField1TSStruct : not null by empty ref  !");
1437   bool isFirst=true;
1438   for(std::size_t i=0;i<nbOfGeoTypes;i++)
1439     {
1440       std::size_t sz=typesF[i].size();
1441       if(strtEnds[i].size()<1 || sz<1 || pfls[i].size()<1)
1442         throw INTERP_KERNEL::Exception("MEDFileField1TSStruct : internal error #1 !");
1443       //
1444       if(isFirst)
1445         atype=typesF[i][0];
1446       isFirst=false;
1447       //
1448       for(std::size_t j=0;j<sz;j++)
1449         {
1450           if(atype==typesF[i][j])
1451             anItems.push_back(MEDFileField1TSStructItem2(geoTypes[i],strtEnds[i][j],pfls[i][j],locs[i][j]));
1452           else
1453             throw INTERP_KERNEL::Exception("MEDFileField1TSStruct : can be applied only on single spatial discretization fields ! Call SplitPerDiscretization method !");
1454         }
1455     }
1456   MEDFileField1TSStructItem ret(atype,anItems);
1457   ret.checkWithMeshStruct(meshSt,ref);
1458   return ret;
1459 }
1460
1461 //=
1462
1463 MEDFileField1TSStruct *MEDFileField1TSStruct::New(const MEDFileAnyTypeField1TS *ref, MEDFileMeshStruct *mst)
1464 {
1465   return new MEDFileField1TSStruct(ref,mst);
1466 }
1467
1468 MEDFileField1TSStruct::MEDFileField1TSStruct(const MEDFileAnyTypeField1TS *ref, MEDFileMeshStruct *mst)
1469 {
1470   _already_checked.push_back(MEDFileField1TSStructItem::BuildItemFrom(ref,mst));
1471 }
1472
1473 void MEDFileField1TSStruct::checkWithMeshStruct(MEDFileMeshStruct *mst, const MEDFileFieldGlobsReal *globs)
1474 {
1475   if(_already_checked.empty())
1476     throw INTERP_KERNEL::Exception("MEDFileField1TSStruct::checkWithMeshStruct : not correctly initialized !");
1477   _already_checked.back().checkWithMeshStruct(mst,globs);
1478 }
1479
1480 bool MEDFileField1TSStruct::isEqualConsideringThePast(const MEDFileAnyTypeField1TS *other, const MEDFileMeshStruct *mst) const
1481 {
1482   MEDFileField1TSStructItem b(MEDFileField1TSStructItem::BuildItemFrom(other,mst));
1483   for(std::vector<MEDFileField1TSStructItem>::const_iterator it=_already_checked.begin();it!=_already_checked.end();it++)
1484     {
1485       if((*it)==b)
1486         return true;
1487     }
1488   return false;
1489 }
1490
1491 /*!
1492  * Not const because \a other structure will be added to the \c _already_checked attribute in case of success.
1493  */
1494 bool MEDFileField1TSStruct::isSupportSameAs(const MEDFileAnyTypeField1TS *other, const MEDFileMeshStruct *meshSt)
1495 {
1496   if(_already_checked.empty())
1497     throw INTERP_KERNEL::Exception("MEDFileField1TSStruct::isSupportSameAs : no ref !");
1498   MEDFileField1TSStructItem b(MEDFileField1TSStructItem::BuildItemFrom(other,meshSt));
1499   if(!_already_checked[0].isEntityCell() || !b.isEntityCell())
1500     throw INTERP_KERNEL::Exception("MEDFileField1TSStruct::isSupportSameAs : only available on cell entities !");
1501   MEDFileField1TSStructItem other1(b.simplifyMeOnCellEntity(other));
1502   int found=-1,i=0;
1503   for(std::vector<MEDFileField1TSStructItem>::const_iterator it=_already_checked.begin();it!=_already_checked.end();it++,i++)
1504     if((*it).isComputed())
1505       { found=i; break; }
1506   bool ret(false);
1507   if(found==-1)
1508     {
1509       MEDFileField1TSStructItem this1(_already_checked[0].simplifyMeOnCellEntity(other));
1510       ret=this1.isCellSupportEqual(other1,other);
1511       if(ret)
1512         _already_checked.push_back(this1);
1513     }
1514   else
1515     ret=_already_checked[found].isCellSupportEqual(other1,other);
1516   if(ret)
1517     _already_checked.push_back(b);
1518   return ret;
1519 }
1520
1521 /*!
1522  * \param [in] other - a field with only one spatial discretization : ON_NODES.
1523  */
1524 bool MEDFileField1TSStruct::isCompatibleWithNodesDiscr(const MEDFileAnyTypeField1TS *other, const MEDFileMeshStruct *meshSt)
1525 {
1526   if(_already_checked.empty())
1527     throw INTERP_KERNEL::Exception("MEDFileField1TSStruct::isCompatibleWithNodesDiscr : no ref !");
1528   MEDFileField1TSStructItem other1(MEDFileField1TSStructItem::BuildItemFrom(other,meshSt));
1529   if(_already_checked[0].isEntityCell())
1530     {
1531       int found=-1,i=0;
1532       for(std::vector<MEDFileField1TSStructItem>::const_iterator it=_already_checked.begin();it!=_already_checked.end();it++,i++)
1533         if((*it).isComputed())
1534           { found=i; break; }
1535       bool ret(false);
1536       if(found==-1)
1537         {
1538           MEDFileField1TSStructItem this1(_already_checked[0].simplifyMeOnCellEntity(other));
1539           ret=this1.isCompatibleWithNodesDiscr(other1,meshSt,other);
1540           if(ret)
1541             _already_checked.push_back(this1);
1542         }
1543       else
1544         ret=_already_checked[found].isCompatibleWithNodesDiscr(other1,meshSt,other);
1545       if(ret)
1546         _already_checked.push_back(other1);
1547       return ret;
1548     }
1549   else
1550     return _already_checked[0].isNodeSupportEqual(other1,other);
1551 }
1552
1553 std::size_t MEDFileField1TSStruct::getHeapMemorySizeWithoutChildren() const
1554 {
1555   std::size_t ret(_already_checked.capacity()*sizeof(MEDFileField1TSStructItem));
1556   return ret;
1557 }
1558
1559 std::vector<const BigMemoryObject *> MEDFileField1TSStruct::getDirectChildren() const
1560 {
1561   std::vector<const BigMemoryObject *> ret;
1562   for(std::vector<MEDFileField1TSStructItem>::const_iterator it=_already_checked.begin();it!=_already_checked.end();it++)
1563     ret.push_back(&(*it));
1564   return ret;
1565 }
1566
1567 MEDMeshMultiLev *MEDFileField1TSStruct::buildFromScratchDataSetSupport(const MEDFileMeshStruct *mst, const MEDFileFieldGlobsReal *globs) const
1568 {
1569   if(_already_checked.empty())
1570     throw INTERP_KERNEL::Exception("MEDFileField1TSStruct::buildFromScratchDataSetSupport : No outline structure in this !");
1571   int pos0(-1),pos1(-1);
1572   if(presenceOfCellDiscr(pos0))
1573     {
1574       MEDCouplingAutoRefCountObjectPtr<MEDMeshMultiLev> ret(_already_checked[pos0].buildFromScratchDataSetSupportOnCells(mst,globs));
1575       if(presenceOfPartialNodeDiscr(pos1))
1576         ret->setNodeReduction(_already_checked[pos1][0].getPfl(globs));
1577       return ret.retn();
1578     }
1579   else
1580     {
1581       if(!presenceOfPartialNodeDiscr(pos1))
1582         {//we have only all nodes, no cell definition info -> level 0;
1583           std::vector<int> levs(1,0);
1584           return MEDMeshMultiLev::New(mst->getTheMesh(),levs);
1585         }
1586       else
1587         return MEDMeshMultiLev::NewOnlyOnNode(mst->getTheMesh(),_already_checked[pos1][0].getPfl(globs));
1588     }
1589 }
1590
1591 bool MEDFileField1TSStruct::isDataSetSupportFastlyEqualTo(const MEDFileField1TSStruct& other, const MEDFileFieldGlobsReal *globs) const
1592 {
1593   int b0,b1;
1594   bool a0(presenceOfCellDiscr(b0)),a1(presenceOfPartialNodeDiscr(b1));
1595   int d0,d1;
1596   bool c0(other.presenceOfCellDiscr(d0)),c1(other.presenceOfPartialNodeDiscr(d1)); 
1597   if(a0!=c0 || a1!=c1)
1598     return false;
1599   if(a0)
1600     if(!_already_checked[b0].isCellSupportEqual(other._already_checked[d0],globs))
1601       return false;
1602   if(a1)
1603     if(!_already_checked[b1].isNodeSupportEqual(other._already_checked[d1],globs))
1604       return false;
1605   return true;
1606 }
1607
1608 /*!
1609  * Returns true if presence in \a this of discretization ON_CELLS, ON_GAUSS_PT, ON_GAUSS_NE.
1610  * If true is returned the pos of the easiest is returned. The easiest is the first element in \a this having the less splitted subparts.
1611  */
1612 bool MEDFileField1TSStruct::presenceOfCellDiscr(int& pos) const
1613 {
1614   std::size_t refSz(std::numeric_limits<std::size_t>::max());
1615   bool ret(false);
1616   int i(0);
1617   for(std::vector<MEDFileField1TSStructItem>::const_iterator it=_already_checked.begin();it!=_already_checked.end();it++,i++)
1618     {
1619       if((*it).getType()!=ON_NODES)
1620         {
1621           ret=true;
1622           std::size_t sz((*it).getNumberOfItems());
1623           if(refSz>sz)
1624             { pos=i; refSz=sz; }
1625         }
1626     }
1627   if(refSz==0)
1628     throw INTERP_KERNEL::Exception("MEDFileField1TSStruct::presenceOfCellDiscr : an element in this on entity CELL is empty !");
1629   return ret;
1630 }
1631
1632 /*!
1633  * Returns true if presence in \a this of discretization ON_NODES.
1634  * If true is returned the pos of the first element containing the single subpart.
1635  */
1636 bool MEDFileField1TSStruct::presenceOfPartialNodeDiscr(int& pos) const
1637 {
1638   int i(0);
1639   for(std::vector<MEDFileField1TSStructItem>::const_iterator it=_already_checked.begin();it!=_already_checked.end();it++,i++)
1640     {
1641       if((*it).getType()==ON_NODES)
1642         {
1643           std::size_t sz((*it).getNumberOfItems());
1644           if(sz==1)
1645             {
1646               if(!(*it)[0].getPflName().empty())
1647                 { pos=i; return true; }
1648             }
1649           else
1650             throw INTERP_KERNEL::Exception("MEDFileField1TSStruct::presenceOfPartialNodeDiscr : an element in this on entity NODE is split into several parts !");
1651         }
1652     }
1653   return false;
1654 }
1655
1656 //=
1657
1658 MEDFileFastCellSupportComparator *MEDFileFastCellSupportComparator::New(const MEDFileMeshStruct *m, const MEDFileAnyTypeFieldMultiTS *ref)
1659 {
1660   return new MEDFileFastCellSupportComparator(m,ref);
1661 }
1662
1663 MEDFileFastCellSupportComparator::MEDFileFastCellSupportComparator(const MEDFileMeshStruct *m, const MEDFileAnyTypeFieldMultiTS *ref)
1664 {
1665   if(!m)
1666     throw INTERP_KERNEL::Exception("MEDFileFastCellSupportComparator constructor : null input mesh struct !");
1667   _mesh_comp=const_cast<MEDFileMeshStruct *>(m); _mesh_comp->incrRef();
1668   int nbPts=ref->getNumberOfTS();
1669   _f1ts_cmps.resize(nbPts);
1670   for(int i=0;i<nbPts;i++)
1671     {
1672       MEDCouplingAutoRefCountObjectPtr<MEDFileAnyTypeField1TS> elt=ref->getTimeStepAtPos(i);
1673       _f1ts_cmps[i]=MEDFileField1TSStruct::New(elt,_mesh_comp);
1674       _f1ts_cmps[i]->checkWithMeshStruct(_mesh_comp,elt);
1675     }
1676 }
1677
1678 std::size_t MEDFileFastCellSupportComparator::getHeapMemorySizeWithoutChildren() const
1679 {
1680   std::size_t ret(_f1ts_cmps.capacity()*sizeof(MEDCouplingAutoRefCountObjectPtr<MEDFileField1TSStruct>));
1681   return ret;
1682 }
1683
1684 std::vector<const BigMemoryObject *> MEDFileFastCellSupportComparator::getDirectChildren() const
1685 {
1686   std::vector<const BigMemoryObject *> ret;
1687   const MEDFileMeshStruct *mst(_mesh_comp);
1688   if(mst)
1689     ret.push_back(mst);
1690   for(std::vector< MEDCouplingAutoRefCountObjectPtr<MEDFileField1TSStruct> >::const_iterator it=_f1ts_cmps.begin();it!=_f1ts_cmps.end();it++)
1691     {
1692       const MEDFileField1TSStruct *cur(*it);
1693       if(cur)
1694         ret.push_back(cur);
1695     }
1696   return ret;
1697 }
1698
1699 bool MEDFileFastCellSupportComparator::isEqual(const MEDFileAnyTypeFieldMultiTS *other)
1700 {
1701   int nbPts=other->getNumberOfTS();
1702   if(nbPts!=(int)_f1ts_cmps.size())
1703     {
1704       std::ostringstream oss; oss << "MEDFileFastCellSupportComparator::isEqual : unexpected nb of time steps in  input ! Should be " << _f1ts_cmps.size() << " it is in reality " << nbPts << " !";
1705       throw INTERP_KERNEL::Exception(oss.str().c_str());
1706     }
1707   for(int i=0;i<nbPts;i++)
1708     {
1709       MEDCouplingAutoRefCountObjectPtr<MEDFileAnyTypeField1TS> elt=other->getTimeStepAtPos(i);
1710       if(!_f1ts_cmps[i]->isEqualConsideringThePast(elt,_mesh_comp))
1711         if(!_f1ts_cmps[i]->isSupportSameAs(elt,_mesh_comp))
1712           return false;
1713     }
1714   return true;
1715 }
1716
1717 bool MEDFileFastCellSupportComparator::isCompatibleWithNodesDiscr(const MEDFileAnyTypeFieldMultiTS *other)
1718 {
1719   int nbPts=other->getNumberOfTS();
1720   if(nbPts!=(int)_f1ts_cmps.size())
1721     {
1722       std::ostringstream oss; oss << "MEDFileFastCellSupportComparator::isCompatibleWithNodesDiscr : unexpected nb of time steps in  input ! Should be " << _f1ts_cmps.size() << " it is in reality " << nbPts << " !";
1723       throw INTERP_KERNEL::Exception(oss.str().c_str());
1724     }
1725   for(int i=0;i<nbPts;i++)
1726     {
1727       MEDCouplingAutoRefCountObjectPtr<MEDFileAnyTypeField1TS> elt=other->getTimeStepAtPos(i);
1728       if(!_f1ts_cmps[i]->isCompatibleWithNodesDiscr(elt,_mesh_comp))
1729         return false;
1730     }
1731   return true;
1732 }
1733
1734 MEDMeshMultiLev *MEDFileFastCellSupportComparator::buildFromScratchDataSetSupport(int timeStepId, const MEDFileFieldGlobsReal *globs) const
1735 {
1736   if(timeStepId<0 || timeStepId>=(int)_f1ts_cmps.size())
1737     {
1738       std::ostringstream oss; oss << "MEDFileFastCellSupportComparator::buildFromScratchDataSetSupport : requested time step id #" << timeStepId << " is not in [0," << _f1ts_cmps.size() << ") !";
1739       throw INTERP_KERNEL::Exception(oss.str().c_str());
1740     }
1741   const MEDFileField1TSStruct *obj(_f1ts_cmps[timeStepId]);
1742   if(!obj)
1743     {
1744       std::ostringstream oss; oss << "MEDFileFastCellSupportComparator::buildFromScratchDataSetSupport : at time step id #" << timeStepId << " no field structure overview defined !";
1745       throw INTERP_KERNEL::Exception(oss.str().c_str());
1746     }
1747   return obj->buildFromScratchDataSetSupport(_mesh_comp,globs);
1748 }
1749
1750 bool MEDFileFastCellSupportComparator::isDataSetSupportEqualToThePreviousOne(int timeStepId, const MEDFileFieldGlobsReal *globs) const
1751 {
1752   if(timeStepId<=0 || timeStepId>=(int)_f1ts_cmps.size())
1753     {
1754       std::ostringstream oss; oss << "MEDFileFastCellSupportComparator::isDataSetSupportEqualToThePreviousOne : requested time step id #" << timeStepId << " is not in [1," << _f1ts_cmps.size() << ") !";
1755       throw INTERP_KERNEL::Exception(oss.str().c_str());
1756     }
1757   const MEDFileField1TSStruct *obj(_f1ts_cmps[timeStepId]);
1758   const MEDFileField1TSStruct *objRef(_f1ts_cmps[timeStepId-1]);
1759   return objRef->isDataSetSupportFastlyEqualTo(*obj,globs);
1760 }