Salome HOME
End of auto indentation with Eclipse. And one bug found.
[modules/med.git] / src / MEDLoader / MEDFileFieldOverView.cxx
1 // Copyright (C) 2007-2014  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 (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,36,4};
31
32 const unsigned char MEDMeshMultiLev::HEXA27_PERM_ARRAY[27]={0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,24,22,21,23,20,25,26};
33
34 const char MEDFileField1TSStructItem2::NEWLY_CREATED_PFL_NAME[]="???";
35
36 MEDFileMeshStruct *MEDFileMeshStruct::New(const MEDFileMesh *mesh)
37 {
38   return new MEDFileMeshStruct(mesh);
39 }
40
41 std::size_t MEDFileMeshStruct::getHeapMemorySizeWithoutChildren() const
42 {
43   std::size_t ret(0);
44   for(std::vector< std::vector<int> >::const_iterator it0=_geo_types_distrib.begin();it0!=_geo_types_distrib.end();it0++)
45     ret+=(*it0).capacity()*sizeof(int);
46   ret+=_geo_types_distrib.capacity()*sizeof(std::vector<int>);
47   return ret;
48 }
49
50 std::vector<const BigMemoryObject *> MEDFileMeshStruct::getDirectChildren() const
51 {
52   return std::vector<const BigMemoryObject *>();
53 }
54
55 MEDFileMeshStruct::MEDFileMeshStruct(const MEDFileMesh *mesh):_mesh(mesh)
56 {
57   std::vector<int> levs(mesh->getNonEmptyLevels());
58   _name=mesh->getName();
59   _nb_nodes=mesh->getNumberOfNodes();
60   if(!levs.empty())
61     {
62       _geo_types_distrib.resize(-(*std::min_element(levs.begin(),levs.end()))+1);
63       for(std::vector<int>::const_iterator lev=levs.begin();lev!=levs.end();lev++)
64         _geo_types_distrib[-(*lev)]=mesh->getDistributionOfTypes(*lev);
65     }
66 }
67
68 int MEDFileMeshStruct::getLevelOfGeoType(INTERP_KERNEL::NormalizedCellType t) const
69 {
70   int j=0;
71   for(std::vector< std::vector<int> >::const_iterator it1=_geo_types_distrib.begin();it1!=_geo_types_distrib.end();it1++,j--)
72     {
73       std::size_t sz=(*it1).size();
74       if(sz%3!=0)
75         throw INTERP_KERNEL::Exception("MEDFileMeshStruct::getLevelOfGeoType : internal error in code !");
76       std::size_t nbGeo=sz/3;
77       for(std::size_t i=0;i<nbGeo;i++)
78         if((*it1)[3*i]==(int)t)
79           return j;
80     }
81   throw INTERP_KERNEL::Exception("MEDFileMeshStruct::getLevelOfGeoType : The specified geometric type is not present in the mesh structure !");
82 }
83
84 /*!
85  * \sa MEDFileMeshStruct::doesManageGeoType
86  */
87 int MEDFileMeshStruct::getNumberOfElemsOfGeoType(INTERP_KERNEL::NormalizedCellType t) const
88 {
89   for(std::vector< std::vector<int> >::const_iterator it1=_geo_types_distrib.begin();it1!=_geo_types_distrib.end();it1++)
90     {
91       std::size_t sz=(*it1).size();
92       if(sz%3!=0)
93         throw INTERP_KERNEL::Exception("MEDFileMeshStruct::getNumberOfElemsOfGeoType : internal error in code !");
94       std::size_t nbGeo=sz/3;
95       for(std::size_t i=0;i<nbGeo;i++)
96         if((*it1)[3*i]==(int)t)
97           return (*it1)[3*i+1];
98     }
99   throw INTERP_KERNEL::Exception("The specified geometric type is not present in the mesh structure !");
100 }
101
102 /*!
103  * \sa MEDFileMeshStruct::getNumberOfElemsOfGeoType
104  */
105 bool MEDFileMeshStruct::doesManageGeoType(INTERP_KERNEL::NormalizedCellType t) const
106 {
107   for(std::vector< std::vector<int> >::const_iterator it1=_geo_types_distrib.begin();it1!=_geo_types_distrib.end();it1++)
108     {
109       std::size_t sz=(*it1).size();
110       if(sz%3!=0)
111         throw INTERP_KERNEL::Exception("MEDFileMeshStruct::doesManageGeoType : internal error in code !");
112       std::size_t nbGeo=sz/3;
113       for(std::size_t i=0;i<nbGeo;i++)
114         if((*it1)[3*i]==(int)t)
115           return true;
116     }
117   return false;
118 }
119
120 void MEDFileMeshStruct::appendIfImplicitType(INTERP_KERNEL::NormalizedCellType t)
121 {
122   if(!_mesh->hasImplicitPart())
123     throw INTERP_KERNEL::Exception("MEDFileMeshStruct::appendIfImplicitType : by default no implicit geo type can be appended !");
124   static const char MSG[]="MEDFileMeshStruct::appendIfImplicitType : the distribution does not looks like structured standard !";
125   if(_geo_types_distrib.size()!=1)
126     throw INTERP_KERNEL::Exception(MSG);
127   std::size_t sz(_geo_types_distrib[0].size());
128   if(sz%3!=0)
129     throw INTERP_KERNEL::Exception("MEDFileMeshStruct::appendIfImplicitType : internal error in code !");
130   std::size_t nbGeo(sz/3);
131   if(nbGeo!=1)
132     throw INTERP_KERNEL::Exception(MSG);
133   std::vector<int> arr(3); arr[0]=(int)t; arr[1]=_mesh->buildImplicitPartIfAny(t); arr[2]=-1;
134   _geo_types_distrib.push_back(arr);
135 }
136
137
138 int MEDFileMeshStruct::getNumberOfLevs() const
139 {
140   return (int)_geo_types_distrib.size();
141 }
142
143 int MEDFileMeshStruct::getNumberOfGeoTypesInLev(int relativeLev) const
144 {
145   int pos(-relativeLev);
146   if(pos<0 || pos>=(int)_geo_types_distrib.size())
147     throw INTERP_KERNEL::Exception("MEDFileMeshStruct::getNumberOfGeoTypesInLev : invalid level specified !");
148   std::size_t sz=_geo_types_distrib[pos].size();
149   if(sz%3!=0)
150     throw INTERP_KERNEL::Exception("MEDFileMeshStruct::getNumberOfGeoTypesInLev : internal error in code !");
151   return (int)(sz/3);
152 }
153
154 //=
155
156 std::size_t MEDMeshMultiLev::getHeapMemorySizeWithoutChildren() const
157 {
158   return 0;
159 }
160
161 std::vector<const BigMemoryObject *> MEDMeshMultiLev::getDirectChildren() const
162 {
163   return std::vector<const BigMemoryObject *>();
164 }
165
166 MEDMeshMultiLev *MEDMeshMultiLev::New(const MEDFileMesh *m, const std::vector<int>& levs)
167 {
168   if(!m)
169     throw INTERP_KERNEL::Exception("MEDMeshMultiLev::New : null input pointer !");
170   const MEDFileUMesh *um(dynamic_cast<const MEDFileUMesh *>(m));
171   if(um)
172     return MEDUMeshMultiLev::New(um,levs);
173   const MEDFileCMesh *cm(dynamic_cast<const MEDFileCMesh *>(m));
174   if(cm)
175     return MEDCMeshMultiLev::New(cm,levs);
176   const MEDFileCurveLinearMesh *clm(dynamic_cast<const MEDFileCurveLinearMesh *>(m));
177   if(clm)
178     return MEDCurveLinearMeshMultiLev::New(clm,levs);
179   throw INTERP_KERNEL::Exception("MEDMeshMultiLev::New : unrecognized type of mesh ! Must be in [MEDFileUMesh,MEDFileCMesh,MEDFileCurveLinearMesh] !");
180 }
181
182 MEDMeshMultiLev *MEDMeshMultiLev::New(const MEDFileMesh *m, const std::vector<INTERP_KERNEL::NormalizedCellType>& gts, const std::vector<const DataArrayInt *>& pfls, const std::vector<int>& nbEntities)
183 {
184   if(!m)
185     throw INTERP_KERNEL::Exception("MEDMeshMultiLev::New 2 : null input pointer !");
186   const MEDFileUMesh *um(dynamic_cast<const MEDFileUMesh *>(m));
187   if(um)
188     return MEDUMeshMultiLev::New(um,gts,pfls,nbEntities);
189   const MEDFileCMesh *cm(dynamic_cast<const MEDFileCMesh *>(m));
190   if(cm)
191     return MEDCMeshMultiLev::New(cm,gts,pfls,nbEntities);
192   const MEDFileCurveLinearMesh *clm(dynamic_cast<const MEDFileCurveLinearMesh *>(m));
193   if(clm)
194     return MEDCurveLinearMeshMultiLev::New(clm,gts,pfls,nbEntities);
195   throw INTERP_KERNEL::Exception("MEDMeshMultiLev::New 2 : unrecognized type of mesh ! Must be in [MEDFileUMesh,MEDFileCMesh,MEDFileCurveLinearMesh] !");
196 }
197
198 MEDMeshMultiLev *MEDMeshMultiLev::NewOnlyOnNode(const MEDFileMesh *m, const DataArrayInt *pflOnNode)
199 {
200   MEDCouplingAutoRefCountObjectPtr<MEDMeshMultiLev> ret(MEDMeshMultiLev::New(m,m->getNonEmptyLevels()));
201   ret->selectPartOfNodes(pflOnNode);
202   return ret.retn();
203 }
204
205 void MEDMeshMultiLev::setNodeReduction(const DataArrayInt *nr)
206 {
207   if(nr)
208     nr->incrRef();
209   _node_reduction=const_cast<DataArrayInt*>(nr);
210 }
211
212 bool MEDMeshMultiLev::isFastlyTheSameStruct(const MEDFileField1TSStructItem& fst, const MEDFileFieldGlobsReal *globs) const
213 {
214   if(fst.getType()==ON_NODES)
215     {
216       if(fst.getNumberOfItems()!=1)
217         throw INTERP_KERNEL::Exception("MEDMeshMultiLev::isFastlyTheSameStruct : unexpected situation for nodes !");
218       const MEDFileField1TSStructItem2& p(fst[0]);
219       std::string pflName(p.getPflName());
220       const DataArrayInt *nr(_node_reduction);
221       if(pflName.empty() && !nr)
222         return true;
223       if(!pflName.empty() && !nr)
224         return false;
225       if(pflName==nr->getName())
226         return true;
227       return false;
228     }
229   else
230     {
231       std::size_t sz(fst.getNumberOfItems());
232       if(sz!=_geo_types.size())
233         return false;
234       int strt(0);
235       for(std::size_t i=0;i<sz;i++)
236         {
237           const MEDFileField1TSStructItem2& p(fst[i]);
238           if(!p.isFastlyEqual(strt,_geo_types[i],getPflNameOfId(i).c_str()))
239             return false;
240         }
241       return true;
242     }
243 }
244
245 DataArray *MEDMeshMultiLev::buildDataArray(const MEDFileField1TSStructItem& fst, const MEDFileFieldGlobsReal *globs, const DataArray *vals) const
246 {
247   MEDCouplingAutoRefCountObjectPtr<DataArray> ret(const_cast<DataArray *>(vals)); ret->incrRef();
248   if(isFastlyTheSameStruct(fst,globs))
249     return ret.retn();
250   else
251     return constructDataArray(fst,globs,vals);
252 }
253
254 /*!
255  * \param [out] famIds - Can be null. If not null the instance has to be dealt by the caller (decrRef).
256  * \param [out] isWithoutCopy - When true the returned instance \a famIds if not null is directly those in the data structure.
257  */
258 void MEDMeshMultiLev::retrieveFamilyIdsOnCells(DataArrayInt *& famIds, bool& isWithoutCopy) const
259 {
260   const DataArrayInt *fids(_cell_fam_ids);
261   if(!fids)
262     { famIds=0; isWithoutCopy=true; return ; }
263   std::size_t sz(_geo_types.size());
264   bool presenceOfPfls(false);
265   for(std::size_t i=0;i<sz && !presenceOfPfls;i++)
266     {
267       const DataArrayInt *pfl(_pfls[i]);
268       if(pfl)
269         presenceOfPfls=true;
270     }
271   if(!presenceOfPfls)
272     { famIds=const_cast<DataArrayInt *>(fids); famIds->incrRef(); isWithoutCopy=_cell_fam_ids_nocpy; return ; }
273   //bad luck the slowest part
274   isWithoutCopy=false;
275   std::vector< MEDCouplingAutoRefCountObjectPtr<DataArrayInt> > retSafe(sz);
276   std::vector< const DataArrayInt *> ret(sz);
277   int start(0);
278   for(std::size_t i=0;i<sz;i++)
279     {
280       const DataArrayInt *pfl(_pfls[i]);
281       int lgth(_nb_entities[i]);
282       if(pfl)
283         {
284           MEDCouplingAutoRefCountObjectPtr<DataArrayInt> tmp(fids->selectByTupleId2(start,start+lgth,1));
285           retSafe[i]=tmp->selectByTupleIdSafe(pfl->begin(),pfl->end());
286         }
287       else
288         {
289           retSafe[i]=fids->selectByTupleId2(start,start+lgth,1);
290         }
291       ret[i]=retSafe[i];
292       start+=lgth;
293     }
294   famIds=DataArrayInt::Aggregate(ret);
295 }
296
297 /*!
298  * \param [out] numIds - Can be null. If not null the instance has to be dealt by the caller (decrRef).
299  * \param [out] isWithoutCopy - When true the returned instance \a numIds if not null is directly those in the data structure.
300  */
301 void MEDMeshMultiLev::retrieveNumberIdsOnCells(DataArrayInt *& numIds, bool& isWithoutCopy) const
302 {
303   const DataArrayInt *nids(_cell_num_ids);
304   if(!nids)
305     { numIds=0; isWithoutCopy=true; return ; }
306   std::size_t sz(_geo_types.size());
307   bool presenceOfPfls(false);
308   for(std::size_t i=0;i<sz && !presenceOfPfls;i++)
309     {
310       const DataArrayInt *pfl(_pfls[i]);
311       if(pfl)
312         presenceOfPfls=true;
313     }
314   if(!presenceOfPfls)
315     { numIds=const_cast<DataArrayInt *>(nids); numIds->incrRef(); isWithoutCopy=_cell_num_ids_nocpy; return ; }
316   //bad luck the slowest part
317   isWithoutCopy=false;
318   std::vector< MEDCouplingAutoRefCountObjectPtr<DataArrayInt> > retSafe(sz);
319   std::vector< const DataArrayInt *> ret(sz);
320   int start(0);
321   for(std::size_t i=0;i<sz;i++)
322     {
323       const DataArrayInt *pfl(_pfls[i]);
324       int lgth(_nb_entities[i]);
325       if(pfl)
326         {
327           MEDCouplingAutoRefCountObjectPtr<DataArrayInt> tmp(nids->selectByTupleId2(start,start+lgth,1));
328           retSafe[i]=tmp->selectByTupleIdSafe(pfl->begin(),pfl->end());
329         }
330       else
331         {
332           retSafe[i]=nids->selectByTupleId2(start,start+lgth,1);
333         }
334       ret[i]=retSafe[i];
335       start+=lgth;
336     }
337   numIds=DataArrayInt::Aggregate(ret);
338 }
339
340 /*!
341  * \param [out] famIds - Can be null. If not null the instance has to be dealt by the caller (decrRef).
342  * \param [out] isWithoutCopy - When true the returned instance \a famIds if not null is directly those in the data structure.
343  */
344 void MEDMeshMultiLev::retrieveFamilyIdsOnNodes(DataArrayInt *& famIds, bool& isWithoutCopy) const
345 {
346   const DataArrayInt *fids(_node_fam_ids);
347   if(!fids)
348     { famIds=0; isWithoutCopy=true; return ; }
349   const DataArrayInt *nr(_node_reduction);
350   if(nr)
351     {
352       isWithoutCopy=false;
353       famIds=fids->selectByTupleIdSafe(nr->begin(),nr->end());
354     }
355   else
356     {
357       isWithoutCopy=_node_fam_ids_nocpy;
358       famIds=const_cast<DataArrayInt *>(fids); famIds->incrRef();
359     }
360 }
361
362 /*!
363  * \param [out] numIds - Can be null. If not null the instance has to be dealt by the caller (decrRef).
364  * \param [out] isWithoutCopy - When true the returned instance \a numIds if not null is directly those in the data structure.
365  */
366 void MEDMeshMultiLev::retrieveNumberIdsOnNodes(DataArrayInt *& numIds, bool& isWithoutCopy) const
367 {
368   const DataArrayInt *fids(_node_num_ids);
369   if(!fids)
370     { numIds=0; isWithoutCopy=true; return ; }
371   const DataArrayInt *nr(_node_reduction);
372   if(nr)
373     {
374       isWithoutCopy=false;
375       numIds=fids->selectByTupleIdSafe(nr->begin(),nr->end());
376     }
377   else
378     {
379       isWithoutCopy=_node_num_ids_nocpy;
380       numIds=const_cast<DataArrayInt *>(fids); numIds->incrRef();
381     }
382 }
383
384 std::vector< INTERP_KERNEL::NormalizedCellType > MEDMeshMultiLev::getGeoTypes() const
385 {
386   return _geo_types;
387 }
388
389 void MEDMeshMultiLev::setFamilyIdsOnCells(DataArrayInt *famIds, bool isNoCopy)
390 {
391   _cell_fam_ids=famIds;
392   if(famIds)
393     famIds->incrRef();
394   _cell_fam_ids_nocpy=isNoCopy;
395 }
396
397 void MEDMeshMultiLev::setNumberIdsOnCells(DataArrayInt *numIds, bool isNoCopy)
398 {
399   _cell_num_ids=numIds;
400   if(numIds)
401     numIds->incrRef();
402   _cell_num_ids_nocpy=isNoCopy;
403 }
404
405 void MEDMeshMultiLev::setFamilyIdsOnNodes(DataArrayInt *famIds, bool isNoCopy)
406 {
407   _node_fam_ids=famIds;
408   if(famIds)
409     famIds->incrRef();
410   _node_fam_ids_nocpy=isNoCopy;
411 }
412
413 void MEDMeshMultiLev::setNumberIdsOnNodes(DataArrayInt *numIds, bool isNoCopy)
414 {
415   _node_num_ids=numIds;
416   if(numIds)
417     numIds->incrRef();
418   _node_num_ids_nocpy=isNoCopy;
419 }
420
421 std::string MEDMeshMultiLev::getPflNameOfId(int id) const
422 {
423   std::size_t sz(_pfls.size());
424   if(id<0 || id>=(int)sz)
425     throw INTERP_KERNEL::Exception("MEDMeshMultiLev::getPflNameOfId : invalid input id !");
426   const DataArrayInt *pfl(_pfls[id]);
427   if(!pfl)
428     return std::string("");
429   return pfl->getName();
430 }
431
432 /*!
433  * Returns the number of cells having geometric type \a t.
434  * The profiles are **NOT** taken into account here.
435  */
436 int MEDMeshMultiLev::getNumberOfCells(INTERP_KERNEL::NormalizedCellType t) const
437 {
438   std::size_t sz(_nb_entities.size());
439   for(std::size_t i=0;i<sz;i++)
440     if(_geo_types[i]==t)
441       return _nb_entities[i];
442   throw INTERP_KERNEL::Exception("MEDMeshMultiLev::getNumberOfCells : not existing geometric type in this !");
443 }
444
445 int MEDMeshMultiLev::getNumberOfNodes() const
446 {
447   return _nb_nodes;
448 }
449
450 DataArray *MEDMeshMultiLev::constructDataArray(const MEDFileField1TSStructItem& fst, const MEDFileFieldGlobsReal *globs, const DataArray *vals) const
451 {
452   if(fst.getType()==ON_NODES)
453     {
454       if(fst.getNumberOfItems()!=1)
455         throw INTERP_KERNEL::Exception("MEDMeshMultiLev::constructDataArray : unexpected situation for nodes !");
456       const MEDFileField1TSStructItem2& p(fst[0]);
457       std::string pflName(p.getPflName());
458       const DataArrayInt *nr(_node_reduction);
459       if(pflName.empty() && !nr)
460         return vals->deepCpy();
461       if(pflName.empty() && nr)
462         throw INTERP_KERNEL::Exception("MEDMeshMultiLev::constructDataArray : unexpected situation for nodes 2 !");
463       if(!pflName.empty() && nr)
464         {
465           MEDCouplingAutoRefCountObjectPtr<DataArrayInt> p1(globs->getProfile(pflName.c_str())->deepCpy());
466           MEDCouplingAutoRefCountObjectPtr<DataArrayInt> p2(nr->deepCpy());
467           p1->sort(true); p2->sort(true);
468           if(!p1->isEqualWithoutConsideringStr(*p2))
469             throw INTERP_KERNEL::Exception("MEDMeshMultiLev::constructDataArray : it appears that a profile on nodes does not cover the cells correctly !");
470           p1=DataArrayInt::FindPermutationFromFirstToSecond(globs->getProfile(pflName.c_str()),nr);
471           MEDCouplingAutoRefCountObjectPtr<DataArray> ret(vals->deepCpy());
472           ret->renumberInPlace(p1->begin());
473           return ret.retn();
474         }
475       if(!pflName.empty() && !nr)
476         {
477           MEDCouplingAutoRefCountObjectPtr<DataArrayInt> p1(globs->getProfile(pflName.c_str())->deepCpy());
478           p1->sort(true);
479           if(!p1->isIdentity() || p1->getNumberOfTuples()!=getNumberOfNodes())
480             throw INTERP_KERNEL::Exception("MEDMeshMultiLev::constructDataArray : unexpected situation for nodes 4 !");
481           MEDCouplingAutoRefCountObjectPtr<DataArray> ret(vals->deepCpy());
482           ret->renumberInPlace(globs->getProfile(pflName.c_str())->begin());
483           return ret.retn();
484         }
485       throw INTERP_KERNEL::Exception("MEDMeshMultiLev::constructDataArray : unexpected situation for nodes 5 !");
486     }
487   else
488     {
489       std::size_t sz(fst.getNumberOfItems());
490       std::set<INTERP_KERNEL::NormalizedCellType> s(_geo_types.begin(),_geo_types.end());
491       if(s.size()!=_geo_types.size())
492         throw INTERP_KERNEL::Exception("MEDMeshMultiLev::constructDataArray : unexpected situation for cells 2 !");
493       std::vector< const DataArray *> arr(s.size());
494       std::vector< MEDCouplingAutoRefCountObjectPtr<DataArray> > arrSafe(s.size());
495       int iii(0);
496       int nc(vals->getNumberOfComponents());
497       std::vector<std::string> compInfo(vals->getInfoOnComponents());
498       for(std::vector< INTERP_KERNEL::NormalizedCellType >::const_iterator it=_geo_types.begin();it!=_geo_types.end();it++,iii++)
499         {
500           const DataArrayInt *thisP(_pfls[iii]);
501           std::vector<const MEDFileField1TSStructItem2 *> ps;
502           for(std::size_t i=0;i<sz;i++)
503             {
504               const MEDFileField1TSStructItem2& p(fst[i]);
505               if(p.getGeo()==*it)
506                 ps.push_back(&p);
507             }
508           if(ps.empty())
509             throw INTERP_KERNEL::Exception("MEDMeshMultiLev::constructDataArray : unexpected situation for cells 1 !");
510           if(ps.size()==1)
511             {
512               int nbi(ps[0]->getNbOfIntegrationPts(globs));
513               const DataArrayInt *otherP(ps[0]->getPfl(globs));
514               const std::pair<int,int>& strtStop(ps[0]->getStartStop());
515               MEDCouplingAutoRefCountObjectPtr<DataArray> ret(vals->selectByTupleId2(strtStop.first,strtStop.second,1));
516               if(!thisP && !otherP)
517                 {
518                   arrSafe[iii]=ret; arr[iii]=ret;
519                   continue;
520                 }
521               if(thisP && otherP)
522                 {
523                   MEDCouplingAutoRefCountObjectPtr<DataArrayInt> p1(otherP->invertArrayN2O2O2N(getNumberOfCells(ps[0]->getGeo())));
524                   MEDCouplingAutoRefCountObjectPtr<DataArrayInt> p2(thisP->deepCpy());
525                   p2->transformWithIndArr(p1->begin(),p1->end());
526                   //p1=p2->getIdsNotEqual(-1);
527                   //p1=p2->selectByTupleIdSafe(p1->begin(),p1->end());
528                   ret->rearrange(nbi*nc); ret=ret->selectByTupleIdSafe(p2->begin(),p2->end()); ret->rearrange(nc); ret->setInfoOnComponents(compInfo);
529                   arrSafe[iii]=ret; arr[iii]=ret;
530                   continue;
531                 }
532               if(!thisP && otherP)
533                 {
534                   MEDCouplingAutoRefCountObjectPtr<DataArrayInt> p1(otherP->deepCpy());
535                   p1->sort(true);
536                   p1->checkAllIdsInRange(0,getNumberOfCells(ps[0]->getGeo()));
537                   p1=DataArrayInt::FindPermutationFromFirstToSecond(otherP,p1);
538                   ret->rearrange(nbi*nc); ret->renumberInPlace(p1->begin()); ret->rearrange(nc); ret->setInfoOnComponents(compInfo);
539                   arrSafe[iii]=ret; arr[iii]=ret;
540                   continue;
541                 }
542               throw INTERP_KERNEL::Exception("MEDMeshMultiLev::constructDataArray : unexpected situation for cells 3 !");
543             }
544           else
545             {
546               std::vector< const DataArrayInt * >otherPS(ps.size());
547               std::vector< const DataArray * > arr2(ps.size());
548               std::vector< MEDCouplingAutoRefCountObjectPtr<DataArray> > arr2Safe(ps.size());
549               std::vector< const DataArrayInt * > nbis(ps.size());
550               std::vector< MEDCouplingAutoRefCountObjectPtr<DataArrayInt> > nbisSafe(ps.size());
551               int jj(0);
552               for(std::vector<const MEDFileField1TSStructItem2 *>::const_iterator it2=ps.begin();it2!=ps.end();it2++,jj++)
553                 {
554                   int nbi((*it2)->getNbOfIntegrationPts(globs));
555                   const DataArrayInt *otherPfl((*it2)->getPfl(globs));
556                   const std::pair<int,int>& strtStop((*it2)->getStartStop());
557                   MEDCouplingAutoRefCountObjectPtr<DataArray> ret2(vals->selectByTupleId2(strtStop.first,strtStop.second,1));
558                   if(!otherPfl)
559                     throw INTERP_KERNEL::Exception("MEDMeshMultiLev::constructDataArray : unexpected situation for cells 4 !");
560                   arr2[jj]=ret2; arr2Safe[jj]=ret2; otherPS[jj]=otherPfl;
561                   nbisSafe[jj]=DataArrayInt::New(); nbisSafe[jj]->alloc(otherPfl->getNumberOfTuples(),1); nbisSafe[jj]->fillWithValue(nbi);
562                   nbis[jj]=nbisSafe[jj];
563                 }
564               MEDCouplingAutoRefCountObjectPtr<DataArray> arr3(DataArray::Aggregate(arr2));
565               MEDCouplingAutoRefCountObjectPtr<DataArrayInt> otherP(DataArrayInt::Aggregate(otherPS));
566               MEDCouplingAutoRefCountObjectPtr<DataArrayInt> zenbis(DataArrayInt::Aggregate(nbis));
567               MEDCouplingAutoRefCountObjectPtr<DataArrayInt> otherPN(otherP->invertArrayN2O2O2N(getNumberOfCells(*it)));
568               MEDCouplingAutoRefCountObjectPtr<DataArrayInt> p1;
569               if(thisP)
570                 p1=DataArrayInt::FindPermutationFromFirstToSecond(otherP,thisP);
571               else
572                 p1=otherP->deepCpy();
573               MEDCouplingAutoRefCountObjectPtr<DataArrayInt> zenbisN(zenbis->renumber(p1->begin()));
574               zenbisN->computeOffsets2();
575               jj=0;
576               for(std::vector<const MEDFileField1TSStructItem2 *>::const_iterator it2=ps.begin();it2!=ps.end();it2++,jj++)
577                 {
578                   //int nbi((*it2)->getNbOfIntegrationPts(globs));
579                   const DataArrayInt *otherPfl((*it2)->getPfl(globs));
580                   const std::pair<int,int>& strtStop((*it2)->getStartStop());
581                   MEDCouplingAutoRefCountObjectPtr<DataArray> ret2(vals->selectByTupleId2(strtStop.first,strtStop.second,1));
582                   //
583                   MEDCouplingAutoRefCountObjectPtr<DataArrayInt> p2(otherPfl->deepCpy());
584                   p2->transformWithIndArr(otherPN->begin(),otherPN->end());
585                   p2->transformWithIndArr(p1->begin(),p1->end());
586                   MEDCouplingAutoRefCountObjectPtr<DataArrayInt> idsN(p2->buildExplicitArrByRanges(zenbisN));
587                   arr3->setPartOfValuesBase3(ret2,idsN->begin(),idsN->end(),0,nc,1);
588                 }
589               arrSafe[iii]=arr3; arr[iii]=arr3;
590               continue;
591             }
592         }
593       return DataArray::Aggregate(arr);
594     }
595 }
596
597 /*!
598  * This method is called to add NORM_POINT1 cells in \a this so that orphan nodes in \a verticesToAdd will be fetched.
599  */
600 void MEDMeshMultiLev::appendVertices(const DataArrayInt *verticesToAdd, DataArrayInt *nr)
601 {
602   int nbOfVertices(verticesToAdd->getNumberOfTuples());
603   std::size_t sz(_pfls.size());
604   _pfls.resize(sz+1);
605   _geo_types.resize(sz+1,INTERP_KERNEL::NORM_POINT1);
606   _nb_entities.resize(sz+1,nbOfVertices);
607   _node_reduction=nr; nr->incrRef();
608   _nb_nodes+=nbOfVertices;
609   const DataArrayInt *cf(_cell_fam_ids),*cn(_cell_num_ids),*nf(_node_fam_ids),*nn(_node_num_ids);
610   if(cf)
611     {
612       MEDCouplingAutoRefCountObjectPtr<DataArrayInt> tmp;
613       std::vector<const DataArrayInt *> a(2);
614       a[0]=cf;
615       if(nf)
616         tmp=nf->selectByTupleIdSafe(verticesToAdd->begin(),verticesToAdd->end());
617       else
618         {
619           tmp=DataArrayInt::New(); tmp->alloc(nbOfVertices,1); tmp->fillWithZero();
620         }
621       a[1]=tmp;
622       _cell_fam_ids=DataArrayInt::Aggregate(a);
623       _cell_fam_ids_nocpy=false;
624     }
625   if(cn)
626     {
627       MEDCouplingAutoRefCountObjectPtr<DataArrayInt> tmp;
628       std::vector<const DataArrayInt *> a(2);
629       a[0]=cn;
630       if(nn)
631         tmp=nn->selectByTupleIdSafe(verticesToAdd->begin(),verticesToAdd->end());
632       else
633         {
634           tmp=DataArrayInt::New(); tmp->alloc(nbOfVertices,1); tmp->fillWithZero();
635         }
636       a[1]=tmp;
637       _cell_num_ids=DataArrayInt::Aggregate(a);
638       _cell_num_ids_nocpy=false;
639     }
640 }
641
642 MEDMeshMultiLev::MEDMeshMultiLev(const MEDFileMesh *mesh):_mesh(mesh),_nb_nodes(0),_cell_fam_ids_nocpy(false)
643 {
644 }
645
646 MEDMeshMultiLev::MEDMeshMultiLev(const MEDFileMesh *mesh, int nbNodes, const std::vector<INTERP_KERNEL::NormalizedCellType>& gts, const std::vector<const DataArrayInt *>& pfls, const std::vector<int>& nbEntities):_mesh(mesh),_geo_types(gts),_nb_entities(nbEntities),_nb_nodes(nbNodes),_cell_fam_ids_nocpy(false),_cell_num_ids_nocpy(false),_node_fam_ids_nocpy(false),_node_num_ids_nocpy(false)
647 {
648   std::size_t sz(_geo_types.size());
649   if(sz!=pfls.size() || sz!=nbEntities.size())
650     throw INTERP_KERNEL::Exception("MEDMeshMultiLev::MEDMeshMultiLev : input vector must have the same size !");
651   _pfls.resize(sz);
652   for(std::size_t i=0;i<sz;i++)
653     {
654       if(pfls[i])
655         pfls[i]->incrRef();
656       _pfls[i]=const_cast<DataArrayInt *>(pfls[i]);
657     }
658 }
659
660 MEDMeshMultiLev::MEDMeshMultiLev(const MEDMeshMultiLev& other):RefCountObject(other),_mesh(other._mesh),_pfls(other._pfls),_geo_types(other._geo_types),_nb_entities(other._nb_entities),_node_reduction(other._node_reduction),_nb_nodes(other._nb_nodes),_cell_fam_ids(other._cell_fam_ids),_cell_fam_ids_nocpy(other._cell_fam_ids_nocpy),_cell_num_ids(other._cell_num_ids),_cell_num_ids_nocpy(other._cell_num_ids_nocpy),_node_fam_ids(other._node_fam_ids),_node_fam_ids_nocpy(other._node_fam_ids_nocpy),_node_num_ids(other._node_num_ids),_node_num_ids_nocpy(other._node_num_ids_nocpy)
661 {
662 }
663
664 //=
665
666 MEDUMeshMultiLev *MEDUMeshMultiLev::New(const MEDFileUMesh *m, const std::vector<int>& levs)
667 {
668   return new MEDUMeshMultiLev(m,levs);
669 }
670
671 MEDUMeshMultiLev::MEDUMeshMultiLev(const MEDFileUMesh *m, const std::vector<int>& levs):MEDMeshMultiLev(m)
672 {
673   if(!m)
674     throw INTERP_KERNEL::Exception("MEDUMeshMultiLev constructor : null input pointer !");
675   std::vector<MEDCoupling1GTUMesh *> v;
676   for(std::vector<int>::const_iterator it=levs.begin();it!=levs.end();it++)
677     {
678       std::vector<MEDCoupling1GTUMesh *> vTmp(m->getDirectUndergroundSingleGeoTypeMeshes(*it));
679       v.insert(v.end(),vTmp.begin(),vTmp.end());
680     }
681   std::size_t sz(v.size());
682   if(v.empty())
683     {
684       _coords=m->getCoords(); _coords->incrRef();
685     }
686   _parts.resize(sz);
687   _pfls.resize(sz);
688   _geo_types.resize(sz);
689   _nb_entities.resize(sz);
690   for(std::size_t i=0;i<sz;i++)
691     {
692       MEDCoupling1GTUMesh *obj(v[i]);
693       if(obj)
694         obj->incrRef();
695       else
696         throw INTERP_KERNEL::Exception("MEDUMeshMultiLev constructor : presence of a null pointer !");
697       _parts[i]=obj;
698       _geo_types[i]=obj->getCellModelEnum();
699       _nb_entities[i]=obj->getNumberOfCells();
700     }
701   // ids fields management
702   _cell_fam_ids_nocpy=(levs.size()==1);
703   if(_cell_fam_ids_nocpy)
704     {
705       const DataArrayInt *tmp(m->getFamilyFieldAtLevel(levs[0]));
706       if(tmp)
707         {
708           tmp->incrRef();
709           _cell_fam_ids=(const_cast<DataArrayInt *>(tmp));
710         }
711     }
712   else
713     {
714       std::vector<const DataArrayInt *> tmps(levs.size());
715       bool f(true);
716       for(std::size_t i=0;i<levs.size();i++)
717         {
718           tmps[i]=m->getFamilyFieldAtLevel(levs[i]);
719           if(!tmps[i])
720             f=false;
721         }
722       if(f && !tmps.empty())
723         _cell_fam_ids=DataArrayInt::Aggregate(tmps);
724     }
725   _cell_num_ids_nocpy=(levs.size()==1);
726   if(_cell_num_ids_nocpy)
727     {
728       const DataArrayInt *tmp(m->getNumberFieldAtLevel(levs[0]));
729       if(tmp)
730         {
731           tmp->incrRef();
732           _cell_num_ids=(const_cast<DataArrayInt *>(tmp));
733         }
734     }
735   else
736     {
737       std::vector<const DataArrayInt *> tmps(levs.size());
738       bool n(true);
739       for(std::size_t i=0;i<levs.size();i++)
740         {
741           tmps[i]=m->getNumberFieldAtLevel(levs[i]);
742           if(!tmps[i])
743             n=false;
744         }
745       if(n && !tmps.empty())
746         _cell_num_ids=DataArrayInt::Aggregate(tmps);
747     }
748   // node part
749   _node_fam_ids_nocpy=true;
750   {
751     const DataArrayInt *tmp(m->getFamilyFieldAtLevel(1));
752     if(tmp)
753       {
754         tmp->incrRef();
755         _node_fam_ids=(const_cast<DataArrayInt *>(tmp));
756       }
757   }
758   _node_num_ids_nocpy=true;
759   {
760     const DataArrayInt *tmp(m->getNumberFieldAtLevel(1));
761     if(tmp)
762       {
763         tmp->incrRef();
764         _node_num_ids=(const_cast<DataArrayInt *>(tmp));
765       }
766   }
767 }
768
769 MEDUMeshMultiLev *MEDUMeshMultiLev::New(const MEDFileUMesh *m, const std::vector<INTERP_KERNEL::NormalizedCellType>& gts, const std::vector<const DataArrayInt *>& pfls, const std::vector<int>& nbEntities)
770 {
771   return new MEDUMeshMultiLev(m,gts,pfls,nbEntities);
772 }
773
774 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,m->getNumberOfNodes(),gts,pfls,nbEntities)
775 {
776   std::size_t sz(gts.size());
777   if(sz<1)
778     throw INTERP_KERNEL::Exception("constructor of MEDUMeshMultiLev : number of different geo type must be >= 1 !");
779   unsigned dim(INTERP_KERNEL::CellModel::GetCellModel(gts[0]).getDimension());
780   _parts.resize(sz);
781   bool isSameDim(true),isNoPfl(true);
782   for(std::size_t i=0;i<sz;i++)
783     {
784       MEDCoupling1GTUMesh *elt(m->getDirectUndergroundSingleGeoTypeMesh(gts[i]));
785       if(INTERP_KERNEL::CellModel::GetCellModel(gts[i]).getDimension()!=dim)
786         isSameDim=false;
787       if(pfls[i])
788         isNoPfl=false;
789       if(elt)
790         elt->incrRef();
791       _parts[i]=elt;
792     }
793   // ids fields management
794   int lev((int)dim-m->getMeshDimension());
795   if(isSameDim && isNoPfl && m->getGeoTypesAtLevel(lev)==gts)//optimized part
796     {
797       _cell_fam_ids_nocpy=true;
798       const DataArrayInt *famIds(m->getFamilyFieldAtLevel(lev));
799       if(famIds)
800         { _cell_fam_ids=const_cast<DataArrayInt*>(famIds); famIds->incrRef(); }
801       _cell_num_ids_nocpy=true;
802       const DataArrayInt *numIds(m->getNumberFieldAtLevel(lev));
803       if(numIds)
804         { _cell_num_ids=const_cast<DataArrayInt*>(numIds); numIds->incrRef(); }
805       _node_fam_ids_nocpy=true;
806       famIds=m->getFamilyFieldAtLevel(1);
807       if(famIds)
808         { _node_fam_ids=const_cast<DataArrayInt*>(famIds); famIds->incrRef(); }
809       _node_num_ids_nocpy=true;
810       numIds=m->getNumberFieldAtLevel(1);
811       if(numIds)
812         { _node_num_ids=const_cast<DataArrayInt*>(numIds); numIds->incrRef(); }
813       return ;
814     }
815   //
816   _cell_fam_ids_nocpy=false;
817   std::vector< MEDCouplingAutoRefCountObjectPtr<DataArrayInt> > famIdsSafe(sz);
818   std::vector<const DataArrayInt *> famIds(sz);
819   bool f(true);
820   for(std::size_t i=0;i<sz;i++)
821     {
822       famIdsSafe[i]=m->extractFamilyFieldOnGeoType(gts[i]);
823       famIds[i]=famIdsSafe[i];
824       if(!famIds[i])
825         f=false;
826     }
827   if(f)
828     _cell_fam_ids=DataArrayInt::Aggregate(famIds);
829   _cell_num_ids_nocpy=false;
830   std::vector< MEDCouplingAutoRefCountObjectPtr<DataArrayInt> > numIdsSafe(sz);
831   std::vector<const DataArrayInt *> numIds(sz);
832   bool n(true);
833   for(std::size_t i=0;i<sz;i++)
834     {
835       numIdsSafe[i]=m->extractNumberFieldOnGeoType(gts[i]);
836       numIds[i]=numIdsSafe[i];
837       if(!numIds[i])
838         n=false;
839     }
840   if(n)
841     _cell_num_ids=DataArrayInt::Aggregate(numIds);
842   // node ids management
843   _node_fam_ids_nocpy=true;
844   const DataArrayInt *nodeFamIds(m->getFamilyFieldAtLevel(1));
845   if(nodeFamIds)
846     { _node_fam_ids=const_cast<DataArrayInt*>(nodeFamIds); nodeFamIds->incrRef(); }
847   _node_num_ids_nocpy=true;
848   const DataArrayInt *nodeNumIds(m->getNumberFieldAtLevel(1));
849   if(nodeNumIds)
850     { _node_num_ids=const_cast<DataArrayInt*>(nodeNumIds); nodeNumIds->incrRef(); }
851 }
852
853 void MEDUMeshMultiLev::selectPartOfNodes(const DataArrayInt *pflNodes)
854 {
855   if(!pflNodes || !pflNodes->isAllocated())
856     return ;
857   std::size_t sz(_parts.size());
858   std::vector< MEDCouplingAutoRefCountObjectPtr<DataArrayInt> > a(sz);
859   std::vector< const DataArrayInt *> aa(sz);
860   for(std::size_t i=0;i<sz;i++)
861     {
862       const DataArrayInt *pfl(_pfls[i]);
863       MEDCouplingAutoRefCountObjectPtr<MEDCoupling1GTUMesh> m(_parts[i]);
864       if(pfl)
865         m=dynamic_cast<MEDCoupling1GTUMesh *>(_parts[i]->buildPartOfMySelfKeepCoords(pfl->begin(),pfl->end()));
866       DataArrayInt *cellIds=0;
867       m->fillCellIdsToKeepFromNodeIds(pflNodes->begin(),pflNodes->end(),true,cellIds);
868       MEDCouplingAutoRefCountObjectPtr<DataArrayInt> cellIdsSafe(cellIds);
869       MEDCouplingAutoRefCountObjectPtr<MEDCouplingPointSet> m2(m->buildPartOfMySelfKeepCoords(cellIds->begin(),cellIds->end()));
870       int tmp=-1;
871       MEDCouplingAutoRefCountObjectPtr<DataArrayInt> o2n(m2->getNodeIdsInUse(tmp));
872       a[i]=o2n->invertArrayO2N2N2O(tmp); aa[i]=a[i];
873       if(pfl)
874         _pfls[i]=pfl->selectByTupleIdSafe(cellIds->begin(),cellIds->end());
875       else
876         _pfls[i]=cellIdsSafe;
877     }
878   if(!aa.empty())
879     _node_reduction=DataArrayInt::Aggregate(aa);//general case
880   else
881     _node_reduction=pflNodes->deepCpy();//case where no cells in read mesh.
882   _node_reduction->sort(true);
883   _node_reduction=_node_reduction->buildUnique();
884   if(_node_reduction->getNumberOfTuples()==pflNodes->getNumberOfTuples())
885     return ;//This is the classical case where the input node profile corresponds perfectly to a subset of cells in _parts
886   if(_node_reduction->getNumberOfTuples()>pflNodes->getNumberOfTuples())
887     throw INTERP_KERNEL::Exception("MEDUMeshMultiLev::selectPartOfNodes : internal error in MEDCoupling during cell select from a list of nodes !");
888   // Here the cells available in _parts is not enough to cover all the nodes in pflNodes. So adding vertices cells in _parts...
889   MEDCouplingAutoRefCountObjectPtr<DataArrayInt> pflNodes2(pflNodes->deepCpy());
890   pflNodes2->sort(true);
891   MEDCouplingAutoRefCountObjectPtr<DataArrayInt> diff(pflNodes2->buildSubstractionOptimized(_node_reduction));
892   appendVertices(diff,pflNodes2);
893 }
894
895 MEDMeshMultiLev *MEDUMeshMultiLev::prepare() const
896 {
897   return new MEDUMeshMultiLev(*this);
898 }
899
900 MEDUMeshMultiLev::MEDUMeshMultiLev(const MEDUMeshMultiLev& other):MEDMeshMultiLev(other),_parts(other._parts),_coords(other._coords)
901 {
902 }
903
904 MEDUMeshMultiLev::MEDUMeshMultiLev(const MEDStructuredMeshMultiLev& other, const MEDCouplingAutoRefCountObjectPtr<MEDCoupling1GTUMesh>& part):MEDMeshMultiLev(other)
905 {
906   _parts.resize(1);
907   _parts[0]=part;
908   _geo_types.resize(1); _geo_types[0]=part->getCellModelEnum();
909   _nb_entities.resize(1); _nb_entities[0]=part->getNumberOfCells();
910   _pfls.resize(1); _pfls[0]=0;
911 }
912
913 /*! 
914  * 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.
915  * 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.
916  */
917 bool MEDUMeshMultiLev::buildVTUArrays(DataArrayDouble *& coords, DataArrayByte *&types, DataArrayInt *&cellLocations, DataArrayInt *& cells, DataArrayInt *&faceLocations, DataArrayInt *&faces) const
918 {
919   const DataArrayDouble *tmp(0);
920   if(_parts.empty())
921     tmp=_coords;
922   else
923     tmp=_parts[0]->getCoords();
924   if(!tmp)
925     throw INTERP_KERNEL::Exception("MEDUMeshMultiLev::getVTUArrays : the coordinates are null !");
926   MEDCouplingAutoRefCountObjectPtr<DataArrayDouble> a(const_cast<DataArrayDouble *>(tmp)); tmp->incrRef();
927   int szBCE(0),szD(0),szF(0);
928   bool isPolyh(false);
929   int iii(0);
930   for(std::vector< MEDCouplingAutoRefCountObjectPtr<MEDCoupling1GTUMesh> >::const_iterator it=_parts.begin();it!=_parts.end();it++,iii++)
931     {
932       const MEDCoupling1GTUMesh *cur(*it);
933       if(!cur)
934         throw INTERP_KERNEL::Exception("MEDUMeshMultiLev::getVTUArrays : a part is null !");
935       //
936       const DataArrayInt *pfl(_pfls[iii]);
937       MEDCouplingAutoRefCountObjectPtr<MEDCoupling1GTUMesh> cur2;
938       if(!pfl)
939         { cur2=const_cast<MEDCoupling1GTUMesh *>(cur); cur2->incrRef(); }
940       else
941         { cur2=dynamic_cast<MEDCoupling1GTUMesh *>(cur->buildPartOfMySelfKeepCoords(pfl->begin(),pfl->end())); cur=cur2; }
942       //
943       int curNbCells(cur->getNumberOfCells());
944       szBCE+=curNbCells;
945       if((*it)->getCellModelEnum()!=INTERP_KERNEL::NORM_POLYHED)
946         szD+=cur->getNodalConnectivity()->getNumberOfTuples()+curNbCells;
947       else
948         {
949           isPolyh=true;
950           MEDCouplingAutoRefCountObjectPtr<DataArrayInt> tmp2(cur->computeEffectiveNbOfNodesPerCell());
951           szD+=tmp2->accumulate(0)+curNbCells;
952           szF+=2*curNbCells+cur->getNodalConnectivity()->getNumberOfTuples();
953         }
954     }
955   MEDCouplingAutoRefCountObjectPtr<DataArrayByte> b(DataArrayByte::New()); b->alloc(szBCE,1); char *bPtr(b->getPointer());
956   MEDCouplingAutoRefCountObjectPtr<DataArrayInt> c(DataArrayInt::New()); c->alloc(szBCE,1); int *cPtr(c->getPointer());
957   MEDCouplingAutoRefCountObjectPtr<DataArrayInt> d(DataArrayInt::New()); d->alloc(szD,1); int *dPtr(d->getPointer());
958   MEDCouplingAutoRefCountObjectPtr<DataArrayInt> e(DataArrayInt::New()),f(DataArrayInt::New()); int *ePtr(0),*fPtr(0);
959   if(isPolyh)
960     { e->alloc(szBCE,1); ePtr=e->getPointer(); f->alloc(szF,1); fPtr=f->getPointer(); }
961   int k(0);
962   iii=0;
963   for(std::vector< MEDCouplingAutoRefCountObjectPtr<MEDCoupling1GTUMesh> >::const_iterator it=_parts.begin();it!=_parts.end();it++,iii++)
964     {
965       const MEDCoupling1GTUMesh *cur(*it);
966       //
967       const DataArrayInt *pfl(_pfls[iii]);
968       MEDCouplingAutoRefCountObjectPtr<MEDCoupling1GTUMesh> cur2;
969       if(!pfl)
970         { cur2=const_cast<MEDCoupling1GTUMesh *>(cur); cur2->incrRef(); }
971       else
972         { cur2=dynamic_cast<MEDCoupling1GTUMesh *>(cur->buildPartOfMySelfKeepCoords(pfl->begin(),pfl->end())); cur=cur2; }
973       //
974       int curNbCells(cur->getNumberOfCells());
975       int gt((int)cur->getCellModelEnum());
976       if(gt<0 || gt>=PARAMEDMEM_2_VTKTYPE_LGTH)
977         throw INTERP_KERNEL::Exception("MEDUMeshMultiLev::getVTUArrays : invalid geometric type !");
978       unsigned char gtvtk(PARAMEDMEM_2_VTKTYPE[gt]);
979       if(gtvtk==255)
980         throw INTERP_KERNEL::Exception("MEDUMeshMultiLev::getVTUArrays : no VTK type for the requested INTERP_KERNEL geometric type !");
981       std::fill(bPtr,bPtr+curNbCells,gtvtk); bPtr+=curNbCells;
982       const MEDCoupling1SGTUMesh *scur(dynamic_cast<const MEDCoupling1SGTUMesh *>(cur));
983       const MEDCoupling1DGTUMesh *dcur(dynamic_cast<const MEDCoupling1DGTUMesh *>(cur));
984       const int *connPtr(cur->getNodalConnectivity()->begin());
985       if(!scur && !dcur)
986         throw INTERP_KERNEL::Exception("MEDUMeshMultiLev::getVTUArrays : internal error !");
987       if(scur)
988         {
989           if(cur->getCellModelEnum()!=INTERP_KERNEL::NORM_HEXA27)
990             {
991               int nnpc(scur->getNumberOfNodesPerCell());
992               for(int i=0;i<curNbCells;i++,connPtr+=nnpc)
993                 {
994                   *dPtr++=nnpc;
995                   dPtr=std::copy(connPtr,connPtr+nnpc,dPtr);
996                   *cPtr++=k; k+=nnpc+1;
997                 }
998             }
999           else
1000             {
1001               for(int i=0;i<curNbCells;i++,connPtr+=27)
1002                 {
1003                   *dPtr++=27;
1004                   for(int j=0;j<27;j++,dPtr++)
1005                     *dPtr=connPtr[HEXA27_PERM_ARRAY[j]];
1006                   *cPtr++=k; k+=28;
1007                 }
1008             }
1009           if(isPolyh)
1010             { std::fill(ePtr,ePtr+curNbCells,-1); ePtr+=curNbCells; }
1011         }
1012       else
1013         {
1014           const int *connIPtr(dcur->getNodalConnectivityIndex()->begin());
1015           if(cur->getCellModelEnum()!=INTERP_KERNEL::NORM_POLYHED)
1016             {
1017               for(int i=0;i<curNbCells;i++,connIPtr++)
1018                 {
1019                   *dPtr++=connIPtr[1]-connIPtr[0];
1020                   dPtr=std::copy(connPtr+connIPtr[0],connPtr+connIPtr[1],dPtr);
1021                   *cPtr++=k; k+=connIPtr[1]-connIPtr[0];
1022                 }
1023             }
1024           else
1025             {
1026               for(int i=0;i<curNbCells;i++,connIPtr++)
1027                 {
1028                   std::set<int> s(connPtr+connIPtr[0],connPtr+connIPtr[1]); s.erase(-1);
1029                   *dPtr++=(int)s.size();
1030                   dPtr=std::copy(s.begin(),s.end(),dPtr);
1031                   *cPtr++=k; k+=(int)s.size()+1;
1032                 }
1033             }
1034           if(isPolyh)
1035             {
1036               connIPtr=dcur->getNodalConnectivityIndex()->begin();
1037               if(cur->getCellModelEnum()!=INTERP_KERNEL::NORM_POLYHED)
1038                 { std::fill(ePtr,ePtr+curNbCells,-1); ePtr+=curNbCells; }
1039               else
1040                 {
1041                   int kk(0);
1042                   for(int i=0;i<curNbCells;i++,connIPtr++)
1043                     {
1044                       int nbFace(std::count(connPtr+connIPtr[0],connPtr+connIPtr[1],-1)+1);
1045                       *fPtr++=nbFace;
1046                       const int *work(connPtr+connIPtr[0]);
1047                       for(int j=0;j<nbFace;j++)
1048                         {
1049                           const int *work2=std::find(work,connPtr+connIPtr[1],-1);
1050                           *fPtr++=std::distance(work,work2);
1051                           fPtr=std::copy(work,work2,fPtr);
1052                           work=work2+1;
1053                         }
1054                       *ePtr++=kk; kk+=connIPtr[1]-connIPtr[0]+2;
1055                     }
1056                 }
1057             }
1058         }
1059     }
1060   if(!isPolyh)
1061     reorderNodesIfNecessary(a,d,0);
1062   else
1063     reorderNodesIfNecessary(a,d,f);
1064   if(a->getNumberOfComponents()!=3)
1065     a=a->changeNbOfComponents(3,0.);
1066   coords=a.retn(); types=b.retn(); cellLocations=c.retn(); cells=d.retn();
1067   if(!isPolyh)
1068     { faceLocations=0; faces=0; }
1069   else
1070     { faceLocations=e.retn(); faces=f.retn(); }
1071   return tmp==((DataArrayDouble *)a);
1072 }
1073
1074 void MEDUMeshMultiLev::reorderNodesIfNecessary(MEDCouplingAutoRefCountObjectPtr<DataArrayDouble>& coords, DataArrayInt *nodalConnVTK, DataArrayInt *polyhedNodalConnVTK) const
1075 {
1076   const DataArrayInt *nr(_node_reduction);
1077   if(!nr)
1078     return ;
1079   if(nodalConnVTK->empty() && !polyhedNodalConnVTK)
1080     {
1081       coords=(coords->selectByTupleIdSafe(nr->begin(),nr->end()));
1082       return ;
1083     }
1084   int sz(coords->getNumberOfTuples());
1085   std::vector<bool> b(sz,false);
1086   const int *work(nodalConnVTK->begin()),*endW(nodalConnVTK->end());
1087   while(work!=endW)
1088     {
1089       int nb(*work++);
1090       for(int i=0;i<nb && work!=endW;i++,work++)
1091         {
1092           if(*work>=0 && *work<sz)
1093             b[*work]=true;
1094           else
1095             throw INTERP_KERNEL::Exception("MEDUMeshMultiLev::reorderNodesIfNecessary : internal error !");
1096         }
1097     }
1098   if(polyhedNodalConnVTK)
1099     {
1100       work=polyhedNodalConnVTK->begin(); endW=polyhedNodalConnVTK->end();
1101       while(work!=endW)
1102         {
1103           int nb(*work++);
1104           for(int i=0;i<nb && work!=endW;i++)
1105             {
1106               int nb2(*work++);
1107               for(int j=0;j<nb2 && work!=endW;j++,work++)
1108                 {
1109                   if(*work>=0 && *work<sz)
1110                     b[*work]=true;
1111                   else
1112                     throw INTERP_KERNEL::Exception("MEDUMeshMultiLev::reorderNodesIfNecessary : internal error #2 !");
1113                 }
1114             }
1115         }
1116     }
1117   int szExp(std::count(b.begin(),b.end(),true));
1118   if(szExp!=nr->getNumberOfTuples())
1119     throw INTERP_KERNEL::Exception("MEDUMeshMultiLev::reorderNodesIfNecessary : internal error #3 !");
1120   // Go renumbering !
1121   MEDCouplingAutoRefCountObjectPtr<DataArrayInt> o2n(DataArrayInt::New()); o2n->alloc(sz,1);
1122   int *o2nPtr(o2n->getPointer());
1123   int newId(0);
1124   for(int i=0;i<sz;i++,o2nPtr++)
1125     if(b[i]) *o2nPtr=newId++; else *o2nPtr=-1;
1126   const int *o2nPtrc(o2n->begin());
1127   MEDCouplingAutoRefCountObjectPtr<DataArrayInt> n2o(o2n->invertArrayO2N2N2O(nr->getNumberOfTuples()));
1128   MEDCouplingAutoRefCountObjectPtr<DataArrayInt> perm(DataArrayInt::FindPermutationFromFirstToSecond(n2o,nr));
1129   const int *permPtr(perm->begin());
1130   int *work2(nodalConnVTK->getPointer()),*endW2(nodalConnVTK->getPointer()+nodalConnVTK->getNumberOfTuples());
1131   while(work2!=endW2)
1132     {
1133       int nb(*work2++);
1134       for(int i=0;i<nb && work2!=endW2;i++,work2++)
1135         *work2=permPtr[o2nPtrc[*work2]];
1136     }
1137   if(polyhedNodalConnVTK)
1138     {
1139       work2=polyhedNodalConnVTK->getPointer(); endW2=polyhedNodalConnVTK->getPointer()+polyhedNodalConnVTK->getNumberOfTuples();
1140       while(work2!=endW2)
1141         {
1142           int nb(*work2++);
1143           for(int i=0;i<nb && work2!=endW2;i++)
1144             {
1145               int nb2(*work2++);
1146               for(int j=0;j<nb2 && work2!=endW2;j++,work2++)
1147                 *work2=permPtr[o2nPtrc[*work2]];
1148             }
1149         }
1150     }
1151   coords=(coords->selectByTupleIdSafe(nr->begin(),nr->end()));
1152 }
1153
1154
1155 void MEDUMeshMultiLev::appendVertices(const DataArrayInt *verticesToAdd, DataArrayInt *nr)
1156 {
1157   int nbOfCells(verticesToAdd->getNumberOfTuples());//it is not a bug cells are NORM_POINT1
1158   MEDMeshMultiLev::appendVertices(verticesToAdd,nr);
1159   MEDCouplingAutoRefCountObjectPtr<MEDCoupling1SGTUMesh> elt(MEDCoupling1SGTUMesh::New("",INTERP_KERNEL::NORM_POINT1));
1160   elt->allocateCells(nbOfCells);
1161   for(int i=0;i<nbOfCells;i++)
1162     {
1163       int pt(verticesToAdd->getIJ(i,0));
1164       elt->insertNextCell(&pt,&pt+1);
1165     }
1166   if(_parts.empty())
1167     throw INTERP_KERNEL::Exception("MEDUMeshMultiLev::appendVertices : parts are empty !");
1168   elt->setCoords(_parts[0]->getCoords());
1169   MEDCouplingAutoRefCountObjectPtr<MEDCoupling1GTUMesh> elt2((MEDCoupling1SGTUMesh *)elt); elt2->incrRef();
1170   _parts.push_back(elt2);
1171 }
1172
1173 //=
1174
1175 MEDStructuredMeshMultiLev::MEDStructuredMeshMultiLev(const MEDFileStructuredMesh *m):MEDMeshMultiLev(m),_is_internal(true)
1176 {
1177 }
1178
1179 MEDStructuredMeshMultiLev::MEDStructuredMeshMultiLev(const MEDFileStructuredMesh *m, const std::vector<int>& lev):MEDMeshMultiLev(m),_is_internal(true)
1180 {
1181   // ids fields management
1182   _cell_fam_ids_nocpy=true; _cell_num_ids_nocpy=true;
1183   const DataArrayInt *tmp(0);
1184   tmp=m->getFamilyFieldAtLevel(0);
1185   if(tmp)
1186     {
1187       tmp->incrRef();
1188       _cell_fam_ids=const_cast<DataArrayInt *>(tmp);
1189     }
1190   tmp=m->getNumberFieldAtLevel(0);
1191   if(tmp)
1192     {
1193       tmp->incrRef();
1194       _cell_num_ids=const_cast<DataArrayInt *>(tmp);
1195     }
1196   //
1197   _node_fam_ids_nocpy=true; _node_num_ids_nocpy=true;
1198   tmp=0;
1199   tmp=m->getFamilyFieldAtLevel(1);
1200   if(tmp)
1201     {
1202       tmp->incrRef();
1203       _node_fam_ids=const_cast<DataArrayInt *>(tmp);
1204     }
1205   tmp=m->getNumberFieldAtLevel(1);
1206   if(tmp)
1207     {
1208       tmp->incrRef();
1209       _node_num_ids=const_cast<DataArrayInt *>(tmp);
1210     }
1211 }
1212
1213 MEDStructuredMeshMultiLev::MEDStructuredMeshMultiLev(const MEDFileStructuredMesh *m, int nbOfNodes, const std::vector<INTERP_KERNEL::NormalizedCellType>& gts, const std::vector<const DataArrayInt *>& pfls, const std::vector<int>& nbEntities):MEDMeshMultiLev(m,nbOfNodes,gts,pfls,nbEntities),_is_internal(true)
1214 {
1215   // ids fields management
1216   _cell_fam_ids_nocpy=true; _cell_num_ids_nocpy=true;
1217   const DataArrayInt *tmp(0);
1218   tmp=m->getFamilyFieldAtLevel(0);
1219   if(tmp)
1220     {
1221       tmp->incrRef();
1222       _cell_fam_ids=const_cast<DataArrayInt *>(tmp);
1223     }
1224   tmp=m->getNumberFieldAtLevel(0);
1225   if(tmp)
1226     {
1227       tmp->incrRef();
1228       _cell_num_ids=const_cast<DataArrayInt *>(tmp);
1229     }
1230   //
1231   _node_fam_ids_nocpy=true; _node_num_ids_nocpy=true;
1232   tmp=0;
1233   tmp=m->getFamilyFieldAtLevel(1);
1234   if(tmp)
1235     {
1236       tmp->incrRef();
1237       _node_fam_ids=const_cast<DataArrayInt *>(tmp);
1238     }
1239   tmp=m->getNumberFieldAtLevel(1);
1240   if(tmp)
1241     {
1242       tmp->incrRef();
1243       _node_num_ids=const_cast<DataArrayInt *>(tmp);
1244     }
1245 }
1246
1247 MEDStructuredMeshMultiLev::MEDStructuredMeshMultiLev(const MEDStructuredMeshMultiLev& other):MEDMeshMultiLev(other),_is_internal(true)
1248 {
1249 }
1250
1251 bool MEDStructuredMeshMultiLev::prepareForImplicitUnstructuredMeshCase(MEDMeshMultiLev *&ret) const
1252 {
1253   ret=0;
1254   if(_geo_types.empty())
1255     return false;
1256   if(_geo_types.size()!=1)
1257     throw INTERP_KERNEL::Exception("MEDStructuredMeshMultiLev::prepareForImplicitUnstructuredMeshCase only one geo types supported at most supported for the moment !");
1258   INTERP_KERNEL::NormalizedCellType gt(MEDCouplingStructuredMesh::GetGeoTypeGivenMeshDimension(_mesh->getMeshDimension()));
1259   if(_geo_types[0]==gt)
1260     return false;
1261   MEDCoupling1GTUMesh *facesIfPresent((static_cast<const MEDFileStructuredMesh *>(_mesh))->getImplicitFaceMesh());
1262   if(!facesIfPresent)
1263     return false;
1264   const DataArrayInt *pfl(0),*nr(_node_reduction);
1265   if(!_pfls.empty())
1266     pfl=_pfls[0];
1267   MEDCouplingAutoRefCountObjectPtr<MEDCoupling1GTUMesh> facesIfPresent2(facesIfPresent); facesIfPresent->incrRef();
1268   MEDCouplingAutoRefCountObjectPtr<MEDUMeshMultiLev> ret2(new MEDUMeshMultiLev(*this,facesIfPresent2));
1269   if(pfl)
1270     throw INTERP_KERNEL::Exception("MEDStructuredMeshMultiLev::prepareForImplicitUnstructuredMeshCase : case is not treated yet for profile on implicit unstructured mesh.");
1271   if(nr)
1272     throw INTERP_KERNEL::Exception("MEDStructuredMeshMultiLev::prepareForImplicitUnstructuredMeshCase : case is not treated yet for node reduction on implicit unstructured mesh.");
1273   ret=ret2.retn();
1274   return true;
1275 }
1276
1277 void MEDStructuredMeshMultiLev::dealWithImplicitUnstructuredMesh(const MEDFileMesh *m)
1278 {
1279   _cell_fam_ids_nocpy=true; _cell_num_ids_nocpy=true;
1280   const DataArrayInt *tmp(0);
1281   tmp=m->getFamilyFieldAtLevel(-1);
1282   if(tmp)
1283     {
1284       tmp->incrRef();
1285       _cell_fam_ids=const_cast<DataArrayInt *>(tmp);
1286     }
1287   tmp=m->getNumberFieldAtLevel(-1);
1288   if(tmp)
1289     {
1290       tmp->incrRef();
1291       _cell_num_ids=const_cast<DataArrayInt *>(tmp);
1292     }
1293 }
1294
1295 void MEDStructuredMeshMultiLev::selectPartOfNodes(const DataArrayInt *pflNodes)
1296 {
1297   if(!pflNodes || !pflNodes->isAllocated())
1298     return ;
1299   std::vector<int> ngs(getNodeGridStructure());
1300   MEDCouplingAutoRefCountObjectPtr<DataArrayInt> conn(MEDCouplingStructuredMesh::Build1GTNodalConnectivity(&ngs[0],&ngs[0]+ngs.size()));
1301   MEDCouplingAutoRefCountObjectPtr<MEDCoupling1SGTUMesh> m(MEDCoupling1SGTUMesh::New("",MEDCouplingStructuredMesh::GetGeoTypeGivenMeshDimension(ngs.size())));
1302   m->setNodalConnectivity(conn);
1303   const DataArrayInt *pfl(_pfls[0]);
1304   if(pfl)
1305     {
1306       m=dynamic_cast<MEDCoupling1SGTUMesh *>(m->buildPartOfMySelfKeepCoords(pfl->begin(),pfl->end()));
1307     }
1308   DataArrayInt *cellIds=0;
1309   m->fillCellIdsToKeepFromNodeIds(pflNodes->begin(),pflNodes->end(),true,cellIds);
1310   MEDCouplingAutoRefCountObjectPtr<DataArrayInt> cellIdsSafe(cellIds);
1311   MEDCouplingAutoRefCountObjectPtr<MEDCouplingPointSet> m2(m->buildPartOfMySelfKeepCoords(cellIds->begin(),cellIds->end()));
1312   int tmp=-1;
1313   _node_reduction=m2->getNodeIdsInUse(tmp);
1314   if(pfl)
1315     _pfls[0]=pfl->selectByTupleIdSafe(cellIds->begin(),cellIds->end());
1316   else
1317     _pfls[0]=cellIdsSafe;
1318 }
1319
1320 //=
1321
1322 MEDCMeshMultiLev *MEDCMeshMultiLev::New(const MEDFileCMesh *m, const std::vector<int>& levs)
1323 {
1324   return new MEDCMeshMultiLev(m,levs);
1325 }
1326
1327 MEDCMeshMultiLev *MEDCMeshMultiLev::New(const MEDFileCMesh *m, const std::vector<INTERP_KERNEL::NormalizedCellType>& gts, const std::vector<const DataArrayInt *>& pfls, const std::vector<int>& nbEntities)
1328 {
1329   return new MEDCMeshMultiLev(m,gts,pfls,nbEntities);
1330 }
1331
1332 MEDCMeshMultiLev::MEDCMeshMultiLev(const MEDFileCMesh *m, const std::vector<int>& levs):MEDStructuredMeshMultiLev(m,levs)
1333 {
1334   if(!m)
1335     throw INTERP_KERNEL::Exception("MEDCMeshMultiLev constructor : null input pointer !");
1336   if(levs.size()!=1 || levs[0]!=0)
1337     throw INTERP_KERNEL::Exception("MEDCMeshMultiLev constructor : levels supported is 0 only !");
1338   int sdim(m->getSpaceDimension());
1339   _coords.resize(sdim);
1340   for(int i=0;i<sdim;i++)
1341     {
1342       DataArrayDouble *elt(const_cast<DataArrayDouble *>(m->getMesh()->getCoordsAt(i)));
1343       if(!elt)
1344         throw INTERP_KERNEL::Exception("MEDCMeshMultiLev constructor 2 : presence of null pointer for an vector of double along an axis !");
1345       elt->incrRef();
1346       _coords[i]=elt;
1347     }
1348 }
1349
1350 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,m->getNumberOfNodes(),gts,pfls,nbEntities)
1351 {
1352   if(!m)
1353     throw INTERP_KERNEL::Exception("MEDCMeshMultiLev constructor 2 : null input pointer !");
1354   if(gts.size()!=1 || pfls.size()!=1)
1355     throw INTERP_KERNEL::Exception("MEDCMeshMultiLev constructor 2 : lengthes of gts and pfls must be equal to one !");
1356   int mdim(m->getMeshDimension());
1357   INTERP_KERNEL::NormalizedCellType gt(MEDCouplingStructuredMesh::GetGeoTypeGivenMeshDimension(mdim));
1358   if(gt==gts[0])
1359     {
1360       _coords.resize(mdim);
1361       for(int i=0;i<mdim;i++)
1362         {
1363           DataArrayDouble *elt(const_cast<DataArrayDouble *>(m->getMesh()->getCoordsAt(i)));
1364           if(!elt)
1365             throw INTERP_KERNEL::Exception("MEDCMeshMultiLev constructor 2 : presence of null pointer for an vector of double along an axis !");
1366           _coords[i]=elt; _coords[i]->incrRef();
1367         }
1368     }
1369   else
1370     dealWithImplicitUnstructuredMesh(m);
1371 }
1372
1373 MEDCMeshMultiLev::MEDCMeshMultiLev(const MEDCMeshMultiLev& other):MEDStructuredMeshMultiLev(other),_coords(other._coords)
1374 {
1375 }
1376
1377 std::vector<int> MEDCMeshMultiLev::getNodeGridStructure() const
1378 {
1379   std::vector<int> ret(_coords.size());
1380   for(std::size_t i=0;i<_coords.size();i++)
1381     ret[i]=_coords[i]->getNumberOfTuples();
1382   return ret;
1383 }
1384
1385 MEDMeshMultiLev *MEDCMeshMultiLev::prepare() const
1386 {
1387   MEDMeshMultiLev *retSpecific(0);
1388   if(prepareForImplicitUnstructuredMeshCase(retSpecific))
1389     return retSpecific;
1390   const DataArrayInt *pfl(0),*nr(_node_reduction);
1391   if(!_pfls.empty())
1392     pfl=_pfls[0];
1393   MEDCouplingAutoRefCountObjectPtr<DataArrayInt> nnr;
1394   std::vector<int> cgs,ngs(getNodeGridStructure());
1395   cgs.resize(ngs.size());
1396   std::transform(ngs.begin(),ngs.end(),cgs.begin(),std::bind2nd(std::plus<int>(),-1));
1397   if(pfl)
1398     {
1399       std::vector< std::pair<int,int> > cellParts;
1400       MEDCouplingAutoRefCountObjectPtr<MEDMeshMultiLev> ret2;
1401       if(MEDCouplingStructuredMesh::IsPartStructured(pfl->begin(),pfl->end(),cgs,cellParts))
1402         {
1403           MEDCouplingAutoRefCountObjectPtr<MEDCMeshMultiLev> ret(new MEDCMeshMultiLev(*this));
1404           ret->_is_internal=false;
1405           if(nr)
1406             { nnr=nr->deepCpy(); nnr->sort(true); ret->setNodeReduction(nnr); }
1407           ret->_nb_entities[0]=pfl->getNumberOfTuples();
1408           ret->_pfls[0]=0;
1409           std::vector< MEDCouplingAutoRefCountObjectPtr<DataArrayDouble> > coords(_coords.size());
1410           for(std::size_t i=0;i<_coords.size();i++)
1411             coords[i]=_coords[i]->selectByTupleId2(cellParts[i].first,cellParts[i].second+1,1);
1412           ret->_coords=coords;
1413           ret2=(MEDCMeshMultiLev *)ret; ret2->incrRef();
1414         }
1415       else
1416         {
1417           MEDCouplingAutoRefCountObjectPtr<MEDCouplingCMesh> m(MEDCouplingCMesh::New());
1418           for(std::size_t i=0;i<ngs.size();i++)
1419             m->setCoordsAt(i,_coords[i]);
1420           MEDCouplingAutoRefCountObjectPtr<MEDCoupling1SGTUMesh> m2(m->build1SGTUnstructured());
1421           MEDCouplingAutoRefCountObjectPtr<MEDCoupling1GTUMesh> m3=dynamic_cast<MEDCoupling1GTUMesh *>(m2->buildPartOfMySelfKeepCoords(pfl->begin(),pfl->end()));
1422           MEDCouplingAutoRefCountObjectPtr<MEDUMeshMultiLev> ret(new MEDUMeshMultiLev(*this,m3));
1423           if(nr)
1424             { m3->zipCoords(); nnr=nr->deepCpy(); nnr->sort(true); ret->setNodeReduction(nnr); }
1425           ret2=(MEDUMeshMultiLev *)ret; ret2->incrRef();
1426         }
1427       const DataArrayInt *famIds(_cell_fam_ids),*numIds(_cell_num_ids);
1428       if(famIds)
1429         {
1430           MEDCouplingAutoRefCountObjectPtr<DataArrayInt> tmp(famIds->selectByTupleIdSafe(pfl->begin(),pfl->end()));
1431           ret2->setFamilyIdsOnCells(tmp,false);
1432         }
1433       if(numIds)
1434         {
1435           MEDCouplingAutoRefCountObjectPtr<DataArrayInt> tmp(numIds->selectByTupleIdSafe(pfl->begin(),pfl->end()));
1436           ret2->setNumberIdsOnCells(tmp,false);
1437         }
1438       return ret2.retn();
1439
1440     }
1441   else
1442     {
1443       MEDCouplingAutoRefCountObjectPtr<MEDCMeshMultiLev> ret(new MEDCMeshMultiLev(*this));
1444       if(nr)
1445         { nnr=nr->deepCpy(); nnr->sort(true); ret->setNodeReduction(nnr); }
1446       return ret.retn();
1447     }
1448 }
1449
1450 /*!
1451  * \a param [out] isInternal if true the returned pointers are those in main data structure. If false those pointers have been built espacially for that method.
1452  */
1453 std::vector< DataArrayDouble * > MEDCMeshMultiLev::buildVTUArrays(bool& isInternal) const
1454 {
1455   isInternal=_is_internal;
1456   std::size_t sz(_coords.size());
1457   std::vector< DataArrayDouble * > ret(sz);
1458   for(std::size_t i=0;i<sz;i++)
1459     {
1460       ret[i]=const_cast<DataArrayDouble *>((const DataArrayDouble *)_coords[i]);
1461       ret[i]->incrRef();
1462     }
1463   return ret;
1464 }
1465
1466 //=
1467
1468 MEDCurveLinearMeshMultiLev *MEDCurveLinearMeshMultiLev::New(const MEDFileCurveLinearMesh *m, const std::vector<int>& levs)
1469 {
1470   return new MEDCurveLinearMeshMultiLev(m,levs);
1471 }
1472
1473 MEDCurveLinearMeshMultiLev *MEDCurveLinearMeshMultiLev::New(const MEDFileCurveLinearMesh *m, const std::vector<INTERP_KERNEL::NormalizedCellType>& gts, const std::vector<const DataArrayInt *>& pfls, const std::vector<int>& nbEntities)
1474 {
1475   return new MEDCurveLinearMeshMultiLev(m,gts,pfls,nbEntities);
1476 }
1477
1478 MEDCurveLinearMeshMultiLev::MEDCurveLinearMeshMultiLev(const MEDFileCurveLinearMesh *m, const std::vector<int>& levs):MEDStructuredMeshMultiLev(m,levs)
1479 {
1480   if(!m)
1481     throw INTERP_KERNEL::Exception("MEDCurveLinearMeshMultiLev constructor : null input pointer !");
1482   if(levs.size()!=1 || levs[0]!=0)
1483     throw INTERP_KERNEL::Exception("MEDCurveLinearMeshMultiLev constructor : levels supported is 0 only !");
1484   DataArrayDouble *coords(const_cast<DataArrayDouble *>(m->getMesh()->getCoords()));
1485   if(!coords)
1486     throw INTERP_KERNEL::Exception("MEDCurveLinearMeshMultiLev constructor 2 : no coords set !");
1487   coords->incrRef();
1488   _coords=coords;
1489   _structure=m->getMesh()->getNodeGridStructure();
1490 }
1491
1492 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,m->getNumberOfNodes(),gts,pfls,nbEntities)
1493 {
1494   if(!m)
1495     throw INTERP_KERNEL::Exception("MEDCurveLinearMeshMultiLev constructor 2 : null input pointer !");
1496   if(gts.size()!=1 || pfls.size()!=1)
1497     throw INTERP_KERNEL::Exception("MEDCurveLinearMeshMultiLev constructor 2 : lengthes of gts and pfls must be equal to one !");
1498   INTERP_KERNEL::NormalizedCellType gt(MEDCouplingStructuredMesh::GetGeoTypeGivenMeshDimension(m->getMeshDimension()));
1499   if(gt==gts[0])
1500     {
1501       DataArrayDouble *coords(const_cast<DataArrayDouble *>(m->getMesh()->getCoords()));
1502       if(!coords)
1503         throw INTERP_KERNEL::Exception("MEDCurveLinearMeshMultiLev constructor 2 : no coords set !");
1504       coords->incrRef();
1505       _coords=coords;
1506       _structure=m->getMesh()->getNodeGridStructure();
1507     }
1508   else
1509     dealWithImplicitUnstructuredMesh(m);
1510 }
1511
1512 MEDCurveLinearMeshMultiLev::MEDCurveLinearMeshMultiLev(const MEDCurveLinearMeshMultiLev& other):MEDStructuredMeshMultiLev(other),_coords(other._coords),_structure(other._structure)
1513 {
1514 }
1515
1516 std::vector<int> MEDCurveLinearMeshMultiLev::getNodeGridStructure() const
1517 {
1518   return _structure;
1519 }
1520
1521 MEDMeshMultiLev *MEDCurveLinearMeshMultiLev::prepare() const
1522 {
1523   MEDMeshMultiLev *retSpecific(0);
1524   if(prepareForImplicitUnstructuredMeshCase(retSpecific))
1525     return retSpecific;
1526   const DataArrayInt *pfl(0),*nr(_node_reduction);
1527   if(!_pfls.empty())
1528     pfl=_pfls[0];
1529   MEDCouplingAutoRefCountObjectPtr<DataArrayInt> nnr;
1530   std::vector<int> cgs,ngs(getNodeGridStructure());
1531   cgs.resize(ngs.size());
1532   std::transform(ngs.begin(),ngs.end(),cgs.begin(),std::bind2nd(std::plus<int>(),-1));
1533   if(pfl)
1534     {
1535       std::vector< std::pair<int,int> > cellParts,nodeParts;
1536       MEDCouplingAutoRefCountObjectPtr<MEDMeshMultiLev> ret2;
1537       if(MEDCouplingStructuredMesh::IsPartStructured(pfl->begin(),pfl->end(),cgs,cellParts))
1538         {
1539           nodeParts=cellParts;
1540           std::vector<int> st(ngs.size());
1541           for(std::size_t i=0;i<ngs.size();i++)
1542             {
1543               nodeParts[i].second++;
1544               st[i]=nodeParts[i].second-nodeParts[i].first;
1545             }
1546           MEDCouplingAutoRefCountObjectPtr<DataArrayInt> p(MEDCouplingStructuredMesh::BuildExplicitIdsFrom(ngs,nodeParts));
1547           MEDCouplingAutoRefCountObjectPtr<MEDCurveLinearMeshMultiLev> ret(new MEDCurveLinearMeshMultiLev(*this));
1548           ret->_is_internal=false;
1549           if(nr)
1550             { nnr=nr->deepCpy(); nnr->sort(true); ret->setNodeReduction(nnr); }
1551           ret->_nb_entities[0]=pfl->getNumberOfTuples();
1552           ret->_pfls[0]=0;
1553           ret->_coords=_coords->selectByTupleIdSafe(p->begin(),p->end());
1554           ret->_structure=st;
1555           ret2=(MEDCurveLinearMeshMultiLev *)ret; ret2->incrRef();
1556         }
1557       else
1558         {
1559           MEDCouplingAutoRefCountObjectPtr<MEDCouplingCurveLinearMesh> m(MEDCouplingCurveLinearMesh::New());
1560           m->setCoords(_coords); m->setNodeGridStructure(&_structure[0],&_structure[0]+_structure.size());
1561           MEDCouplingAutoRefCountObjectPtr<MEDCoupling1SGTUMesh> m2(m->build1SGTUnstructured());
1562           MEDCouplingAutoRefCountObjectPtr<MEDCoupling1GTUMesh> m3=dynamic_cast<MEDCoupling1GTUMesh *>(m2->buildPartOfMySelfKeepCoords(pfl->begin(),pfl->end()));
1563           MEDCouplingAutoRefCountObjectPtr<MEDUMeshMultiLev> ret(new MEDUMeshMultiLev(*this,m3));
1564           if(nr)
1565             { m3->zipCoords(); nnr=nr->deepCpy(); nnr->sort(true); ret->setNodeReduction(nnr); }
1566           ret2=(MEDUMeshMultiLev *)ret; ret2->incrRef();
1567         }
1568       const DataArrayInt *famIds(_cell_fam_ids),*numIds(_cell_num_ids);
1569       if(famIds)
1570         {
1571           MEDCouplingAutoRefCountObjectPtr<DataArrayInt> tmp(famIds->selectByTupleIdSafe(pfl->begin(),pfl->end()));
1572           ret2->setFamilyIdsOnCells(tmp,false);
1573         }
1574       if(numIds)
1575         {
1576           MEDCouplingAutoRefCountObjectPtr<DataArrayInt> tmp(numIds->selectByTupleIdSafe(pfl->begin(),pfl->end()));
1577           ret2->setNumberIdsOnCells(tmp,false);
1578         }
1579       return ret2.retn();
1580     }
1581   else
1582     {
1583       MEDCouplingAutoRefCountObjectPtr<MEDCurveLinearMeshMultiLev> ret(new MEDCurveLinearMeshMultiLev(*this));
1584       if(nr)
1585         { nnr=nr->deepCpy(); nnr->sort(true); ret->setNodeReduction(nnr); }
1586       return ret.retn();
1587     }
1588 }
1589
1590 void MEDCurveLinearMeshMultiLev::buildVTUArrays(DataArrayDouble *&coords, std::vector<int>& nodeStrct, bool& isInternal) const
1591 {
1592   isInternal=_is_internal;
1593   nodeStrct=_structure;
1594   const DataArrayDouble *coo(_coords);
1595   if(!coo)
1596     throw INTERP_KERNEL::Exception("MEDCurveLinearMeshMultiLev::buildVTUArrays : null pointer on coordinates !");
1597   coords=const_cast<DataArrayDouble *>(coo); coords->incrRef();
1598 }
1599
1600 //=
1601
1602 MEDFileField1TSStructItem2::MEDFileField1TSStructItem2()
1603 {
1604 }
1605
1606 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)
1607 {
1608   _pfl->setName(c.c_str());
1609 }
1610
1611 void MEDFileField1TSStructItem2::checkWithMeshStructForCells(const MEDFileMeshStruct *mst, const MEDFileFieldGlobsReal *globs)
1612 {
1613   if(!mst->doesManageGeoType(_geo_type))
1614     {
1615       MEDFileMeshStruct *mstUnConstCasted(const_cast<MEDFileMeshStruct *>(mst));
1616       mstUnConstCasted->appendIfImplicitType(_geo_type);
1617     }
1618   int nbOfEnt=mst->getNumberOfElemsOfGeoType(_geo_type);
1619   checkInRange(nbOfEnt,1,globs);
1620 }
1621
1622 void MEDFileField1TSStructItem2::checkWithMeshStructForGaussNE(const MEDFileMeshStruct *mst, const MEDFileFieldGlobsReal *globs)
1623 {
1624   int nbOfEnt=mst->getNumberOfElemsOfGeoType(_geo_type);
1625   const INTERP_KERNEL::CellModel& cm=INTERP_KERNEL::CellModel::GetCellModel(_geo_type);
1626   checkInRange(nbOfEnt,(int)cm.getNumberOfNodes(),globs);
1627 }
1628
1629 void MEDFileField1TSStructItem2::checkWithMeshStructForGaussPT(const MEDFileMeshStruct *mst, const MEDFileFieldGlobsReal *globs)
1630 {
1631   if(!globs)
1632     throw INTERP_KERNEL::Exception("MEDFileField1TSStructItem2::checkWithMeshStructForGaussPT : no globals specified !");
1633   if(_loc.empty())
1634     throw INTERP_KERNEL::Exception("MEDFileField1TSStructItem2::checkWithMeshStructForGaussPT : no localization specified !");
1635   const MEDFileFieldLoc& loc=globs->getLocalization(_loc.c_str());
1636   int nbOfEnt=mst->getNumberOfElemsOfGeoType(_geo_type);
1637   checkInRange(nbOfEnt,loc.getNumberOfGaussPoints(),globs);
1638 }
1639
1640 int MEDFileField1TSStructItem2::getNbOfIntegrationPts(const MEDFileFieldGlobsReal *globs) const
1641 {
1642   if(_loc.empty())
1643     {
1644       if(getPflName().empty())
1645         return (_start_end.second-_start_end.first)/_nb_of_entity;
1646       else
1647         return (_start_end.second-_start_end.first)/getPfl(globs)->getNumberOfTuples();
1648     }
1649   else
1650     {
1651       const MEDFileFieldLoc& loc(globs->getLocalization(_loc.c_str()));
1652       return loc.getNumberOfGaussPoints();
1653     }
1654 }
1655
1656 std::string MEDFileField1TSStructItem2::getPflName() const
1657 {
1658   return _pfl->getName();
1659 }
1660
1661 const DataArrayInt *MEDFileField1TSStructItem2::getPfl(const MEDFileFieldGlobsReal *globs) const
1662 {
1663   if(!_pfl->isAllocated())
1664     {
1665       if(_pfl->getName().empty())
1666         return 0;
1667       else
1668         return globs->getProfile(_pfl->getName().c_str());
1669     }
1670   else
1671     return _pfl;
1672 }
1673
1674 /*!
1675  * \param [in] nbOfEntity - number of entity that can be either cells or nodes. Not other possiblity.
1676  * \param [in] nip - number of integration points. 1 for ON_CELLS and NO_NODES
1677  */
1678 void MEDFileField1TSStructItem2::checkInRange(int nbOfEntity, int nip, const MEDFileFieldGlobsReal *globs)
1679 {
1680   _nb_of_entity=nbOfEntity;
1681   if(_pfl->getName().empty())
1682     {
1683       if(nbOfEntity!=(_start_end.second-_start_end.first)/nip)
1684         throw INTERP_KERNEL::Exception("MEDFileField1TSStructItem2::checkInRange : Mismatch between number of entities and size of node field !");
1685       return ;
1686     }
1687   else
1688     {
1689       if(!globs)
1690         throw INTERP_KERNEL::Exception("MEDFileField1TSStructItem2::checkInRange : Presence of a profile on field whereas no globals found in file !");
1691       const DataArrayInt *pfl=globs->getProfile(_pfl->getName().c_str());
1692       if(!pfl)
1693         throw INTERP_KERNEL::Exception("MEDFileField1TSStructItem2::checkInRange : Presence of a profile on field whereas no such profile found in file !");
1694       pfl->checkAllIdsInRange(0,nbOfEntity);
1695     }
1696 }
1697
1698 bool MEDFileField1TSStructItem2::isFastlyEqual(int& startExp, INTERP_KERNEL::NormalizedCellType gt, const std::string& pflName) const
1699 {
1700   if(startExp!=_start_end.first)
1701     return false;
1702   if(gt!=_geo_type)
1703     return false;
1704   if(getPflName()!=pflName)
1705     return false;
1706   startExp=_start_end.second;
1707   return true;
1708 }
1709
1710 bool MEDFileField1TSStructItem2::operator==(const MEDFileField1TSStructItem2& other) const
1711 {
1712   //_nb_of_entity is not taken into account here. It is not a bug, because no mesh consideration needed here to perform fast compare.
1713   //idem for _loc. It is not an effective attribute for support comparison.
1714   return _geo_type==other._geo_type && _start_end==other._start_end && _pfl->getName()==other._pfl->getName();
1715 }
1716
1717 bool MEDFileField1TSStructItem2::isCellSupportEqual(const MEDFileField1TSStructItem2& other, const MEDFileFieldGlobsReal *globs) const
1718 {
1719   if(_geo_type!=other._geo_type)
1720     return false;
1721   if(_nb_of_entity!=other._nb_of_entity)
1722     return false;
1723   if((_pfl->getName().empty() && !other._pfl->getName().empty()) || (!_pfl->getName().empty() && other._pfl->getName().empty()))
1724     return false;
1725   if(_pfl->getName().empty() && other._pfl->getName().empty())
1726     return true;
1727   const DataArrayInt *pfl1(getPfl(globs)),*pfl2(other.getPfl(globs));
1728   return pfl1->isEqualWithoutConsideringStr(*pfl2);
1729 }
1730
1731 bool MEDFileField1TSStructItem2::isNodeSupportEqual(const MEDFileField1TSStructItem2& other, const MEDFileFieldGlobsReal *globs) const
1732 {
1733   return isCellSupportEqual(other,globs);
1734 }
1735
1736 /*!
1737  * \a objs must be non empty. \a objs should contain items having same geometric type.
1738  */
1739 MEDFileField1TSStructItem2 MEDFileField1TSStructItem2::BuildAggregationOf(const std::vector<const MEDFileField1TSStructItem2 *>& objs, const MEDFileFieldGlobsReal *globs)
1740 {
1741   if(objs.empty())
1742     throw INTERP_KERNEL::Exception("MEDFileField1TSStructItem2::BuildAggregationOf : empty input !");
1743   if(objs.size()==1)
1744     return MEDFileField1TSStructItem2(*objs[0]);
1745   INTERP_KERNEL::NormalizedCellType gt(objs[0]->_geo_type);
1746   int nbEntityRef(objs[0]->_nb_of_entity);
1747   std::size_t sz(objs.size());
1748   std::vector<const DataArrayInt *> arrs(sz);
1749   for(std::size_t i=0;i<sz;i++)
1750     {
1751       const MEDFileField1TSStructItem2 *obj(objs[i]);
1752       if(gt!=obj->_geo_type)
1753         throw INTERP_KERNEL::Exception("MEDFileField1TSStructItem2::BuildAggregationOf : invalid situation ! All input must have the same geo type !");
1754       if(nbEntityRef!=obj->_nb_of_entity)
1755         throw INTERP_KERNEL::Exception("MEDFileField1TSStructItem2::BuildAggregationOf : invalid situation ! All input must have the global nb of entity !");
1756       if(obj->_pfl->getName().empty())
1757         throw INTERP_KERNEL::Exception("MEDFileField1TSStructItem2::BuildAggregationOf : invalid situation ! Several same geo type chunk must all lie on profiles !");
1758       arrs[i]=globs->getProfile(obj->_pfl->getName().c_str());
1759     }
1760   MEDCouplingAutoRefCountObjectPtr<DataArrayInt> arr(DataArrayInt::Aggregate(arrs));
1761   arr->sort();
1762   int oldNbTuples(arr->getNumberOfTuples());
1763   arr=arr->buildUnique();
1764   if(oldNbTuples!=arr->getNumberOfTuples())
1765     throw INTERP_KERNEL::Exception("MEDFileField1TSStructItem2::BuildAggregationOf : some entities are present several times !");
1766   if(arr->isIdentity() && oldNbTuples==nbEntityRef)
1767     {
1768       std::pair<int,int> p(0,nbEntityRef);
1769       std::string a,b;
1770       MEDFileField1TSStructItem2 ret(gt,p,a,b);
1771       ret._nb_of_entity=nbEntityRef;
1772       return ret;
1773     }
1774   else
1775     {
1776       arr->setName(NEWLY_CREATED_PFL_NAME);
1777       std::pair<int,int> p(0,oldNbTuples);
1778       std::string a,b;
1779       MEDFileField1TSStructItem2 ret(gt,p,a,b);
1780       ret._nb_of_entity=nbEntityRef;
1781       ret._pfl=arr;
1782       return ret;
1783     }
1784 }
1785
1786 std::size_t MEDFileField1TSStructItem2::getHeapMemorySizeWithoutChildren() const
1787 {
1788   std::size_t ret(_loc.capacity());
1789   return ret;
1790 }
1791
1792 std::vector<const BigMemoryObject *> MEDFileField1TSStructItem2::getDirectChildren() const
1793 {
1794   std::vector<const BigMemoryObject *> ret;
1795   const DataArrayInt *pfl(_pfl);
1796   if(pfl)
1797     ret.push_back(pfl);
1798   return ret;
1799 }
1800
1801 //=
1802
1803 MEDFileField1TSStructItem::MEDFileField1TSStructItem(TypeOfField a, const std::vector< MEDFileField1TSStructItem2 >& b):_computed(false),_type(a),_items(b)
1804 {
1805 }
1806
1807 void MEDFileField1TSStructItem::checkWithMeshStruct(const MEDFileMeshStruct *mst, const MEDFileFieldGlobsReal *globs)
1808 {
1809   switch(_type)
1810   {
1811     case ON_NODES:
1812       {
1813         int nbOfEnt=mst->getNumberOfNodes();
1814         if(_items.size()!=1)
1815           throw INTERP_KERNEL::Exception("MEDFileField1TSStructItem::checkWithMeshStruct : for nodes field only one subdivision supported !");
1816         _items[0].checkInRange(nbOfEnt,1,globs);
1817         break ;
1818       }
1819     case ON_CELLS:
1820       {
1821         for(std::vector< MEDFileField1TSStructItem2 >::iterator it=_items.begin();it!=_items.end();it++)
1822           (*it).checkWithMeshStructForCells(mst,globs);
1823         break;
1824       }
1825     case ON_GAUSS_NE:
1826       {
1827         for(std::vector< MEDFileField1TSStructItem2 >::iterator it=_items.begin();it!=_items.end();it++)
1828           (*it).checkWithMeshStructForGaussNE(mst,globs);
1829         break;
1830       }
1831     case ON_GAUSS_PT:
1832       {
1833         for(std::vector< MEDFileField1TSStructItem2 >::iterator it=_items.begin();it!=_items.end();it++)
1834           (*it).checkWithMeshStructForGaussPT(mst,globs);
1835         break;
1836       }
1837     default:
1838       throw INTERP_KERNEL::Exception("MEDFileField1TSStructItem::checkWithMeshStruct : not managed field type !");
1839   }
1840 }
1841
1842 bool MEDFileField1TSStructItem::operator==(const MEDFileField1TSStructItem& other) const
1843 {
1844   if(_type!=other._type)
1845     return false;
1846   if(_items.size()!=other._items.size())
1847     return false;
1848   for(std::size_t i=0;i<_items.size();i++)
1849     if(!(_items[i]==other._items[i]))
1850       return false;
1851   return true;
1852 }
1853
1854 bool MEDFileField1TSStructItem::isCellSupportEqual(const MEDFileField1TSStructItem& other, const MEDFileFieldGlobsReal *globs) const
1855 {
1856   if(_type!=other._type)
1857     return false;
1858   if(_items.size()!=other._items.size())
1859     return false;
1860   for(std::size_t i=0;i<_items.size();i++)
1861     if(!(_items[i].isCellSupportEqual(other._items[i],globs)))
1862       return false;
1863   return true;
1864 }
1865
1866 bool MEDFileField1TSStructItem::isNodeSupportEqual(const MEDFileField1TSStructItem& other, const MEDFileFieldGlobsReal *globs) const
1867 {
1868   if(_type!=other._type)
1869     return false;
1870   if(_items.size()!=other._items.size())
1871     return false;
1872   for(std::size_t i=0;i<_items.size();i++)
1873     if(!(_items[i].isNodeSupportEqual(other._items[i],globs)))
1874       return false;
1875   return true;
1876 }
1877
1878 bool MEDFileField1TSStructItem::isEntityCell() const
1879 {
1880   if(_type==ON_NODES)
1881     return false;
1882   else
1883     return true;
1884 }
1885
1886 class CmpGeo
1887 {
1888 public:
1889   CmpGeo(INTERP_KERNEL::NormalizedCellType geoTyp):_geo_type(geoTyp) { }
1890   bool operator()(const std::pair< INTERP_KERNEL::NormalizedCellType, std::vector<std::size_t> > & v) const { return _geo_type==v.first; }
1891 private:
1892   INTERP_KERNEL::NormalizedCellType _geo_type;
1893 };
1894
1895 MEDFileField1TSStructItem MEDFileField1TSStructItem::simplifyMeOnCellEntity(const MEDFileFieldGlobsReal *globs) const
1896 {
1897   if(!isEntityCell())
1898     throw INTERP_KERNEL::Exception("MEDFileField1TSStructItem::simplifyMeOnCellEntity : must be on ON_CELLS, ON_GAUSS_NE or ON_GAUSS_PT !");
1899   std::vector< std::pair< INTERP_KERNEL::NormalizedCellType, std::vector<std::size_t> > > m;
1900   std::size_t i=0;
1901   for(std::vector< MEDFileField1TSStructItem2 >::const_iterator it=_items.begin();it!=_items.end();it++,i++)
1902     {
1903       std::vector< std::pair< INTERP_KERNEL::NormalizedCellType, std::vector<std::size_t> > >::iterator it0(std::find_if(m.begin(),m.end(),CmpGeo((*it).getGeo())));
1904       if(it0==m.end())
1905         m.push_back(std::pair< INTERP_KERNEL::NormalizedCellType, std::vector<std::size_t> >((*it).getGeo(),std::vector<std::size_t>(1,i)));
1906       else
1907         (*it0).second.push_back(i);
1908     }
1909   if(m.size()==_items.size())
1910     {
1911       MEDFileField1TSStructItem ret(*this);
1912       ret._type=ON_CELLS;
1913       return ret;
1914     }
1915   std::size_t sz(m.size());
1916   std::vector< MEDFileField1TSStructItem2 > items(sz);
1917   for(i=0;i<sz;i++)
1918     {
1919       const std::vector<std::size_t>& ids=m[i].second;
1920       std::vector<const MEDFileField1TSStructItem2 *>objs(ids.size());
1921       for(std::size_t j=0;j<ids.size();j++)
1922         objs[j]=&_items[ids[j]];
1923       items[i]=MEDFileField1TSStructItem2::BuildAggregationOf(objs,globs);
1924     }
1925   MEDFileField1TSStructItem ret(ON_CELLS,items);
1926   ret._computed=true;
1927   return ret;
1928 }
1929
1930 /*!
1931  * \a this is expected to be ON_CELLS and simplified.
1932  */
1933 bool MEDFileField1TSStructItem::isCompatibleWithNodesDiscr(const MEDFileField1TSStructItem& other, const MEDFileMeshStruct *meshSt, const MEDFileFieldGlobsReal *globs) const
1934 {
1935   if(other._type!=ON_NODES)
1936     throw INTERP_KERNEL::Exception("MEDFileField1TSStructItem::isCompatibleWithNodesDiscr : other must be on nodes !");
1937   if(other._items.size()!=1)
1938     throw INTERP_KERNEL::Exception("MEDFileField1TSStructItem::isCompatibleWithNodesDiscr : other is on nodes but number of subparts !");
1939   int theFirstLevFull;
1940   bool ret0=isFullyOnOneLev(meshSt,theFirstLevFull);
1941   const MEDFileField1TSStructItem2& otherNodeIt(other._items[0]);
1942   if(otherNodeIt.getPflName().empty())
1943     {//on all nodes
1944       if(!ret0)
1945         return false;
1946       return theFirstLevFull==0;
1947     }
1948   else
1949     {
1950       const DataArrayInt *pfl=globs->getProfile(otherNodeIt.getPflName().c_str());
1951       MEDCouplingAutoRefCountObjectPtr<DataArrayInt> cpyPfl(pfl->deepCpy());
1952       cpyPfl->sort();
1953       int nbOfNodes(meshSt->getNumberOfNodes());
1954       if(cpyPfl->isIdentity() && cpyPfl->getNumberOfTuples()==nbOfNodes)
1955         {//on all nodes also !
1956           if(!ret0)
1957             return false;
1958           return theFirstLevFull==0;
1959         }
1960       std::vector<bool> nodesFetched(nbOfNodes,false);
1961       meshSt->getTheMesh()->whichAreNodesFetched(*this,globs,nodesFetched);
1962       return cpyPfl->isFittingWith(nodesFetched);
1963     }
1964 }
1965
1966 bool MEDFileField1TSStructItem::isFullyOnOneLev(const MEDFileMeshStruct *meshSt, int& theFirstLevFull) const
1967 {
1968   if(_type!=ON_CELLS)
1969     throw INTERP_KERNEL::Exception("MEDFileField1TSStructItem::isFullyOnOneLev : works only for ON_CELLS discretization !");
1970   if(_items.empty())
1971     throw INTERP_KERNEL::Exception("MEDFileField1TSStructItem::isFullyOnOneLev : items vector is empty !");
1972   int nbOfLevs(meshSt->getNumberOfLevs());
1973   if(nbOfLevs==0)
1974     throw INTERP_KERNEL::Exception("MEDFileField1TSStructItem::isFullyOnOneLev : no levels in input mesh structure !");
1975   std::vector<int> levs(nbOfLevs);
1976   theFirstLevFull=1;
1977   std::set<INTERP_KERNEL::NormalizedCellType> gts;
1978   for(std::vector< MEDFileField1TSStructItem2 >::const_iterator it=_items.begin();it!=_items.end();it++)
1979     {
1980       if(!(*it).getPflName().empty())
1981         return false;
1982       INTERP_KERNEL::NormalizedCellType gt((*it).getGeo());
1983       if(gts.find(gt)!=gts.end())
1984         throw INTERP_KERNEL::Exception("MEDFileField1TSStructItem::isFullyOnOneLev : internal error !");
1985       gts.insert(gt);
1986       int pos(meshSt->getLevelOfGeoType((*it).getGeo()));
1987       levs[-pos]++;
1988     }
1989   for(int i=0;i<nbOfLevs;i++)
1990     if(meshSt->getNumberOfGeoTypesInLev(-i)==levs[i])
1991       { theFirstLevFull=-i; return true; }
1992   return false;
1993 }
1994
1995 const MEDFileField1TSStructItem2& MEDFileField1TSStructItem::operator[](std::size_t i) const
1996 {
1997   if(i>=_items.size())
1998     throw INTERP_KERNEL::Exception("MEDFileField1TSStructItem::operator[] : input is not in valid range !");
1999   return _items[i];
2000 }
2001
2002 std::size_t MEDFileField1TSStructItem::getHeapMemorySizeWithoutChildren() const
2003 {
2004   std::size_t ret(_items.size()*sizeof(MEDFileField1TSStructItem2));
2005   return ret;
2006 }
2007
2008 std::vector<const BigMemoryObject *> MEDFileField1TSStructItem::getDirectChildren() const
2009 {
2010   std::vector<const BigMemoryObject *> ret;
2011   for(std::vector< MEDFileField1TSStructItem2 >::const_iterator it=_items.begin();it!=_items.end();it++)
2012     ret.push_back(&(*it));
2013   return ret;
2014 }
2015
2016 MEDMeshMultiLev *MEDFileField1TSStructItem::buildFromScratchDataSetSupportOnCells(const MEDFileMeshStruct *mst, const MEDFileFieldGlobsReal *globs) const
2017 {
2018   std::size_t sz(_items.size());
2019   std::vector<INTERP_KERNEL::NormalizedCellType> a0(sz);
2020   std::vector<const DataArrayInt *> a1(sz);
2021   std::vector<int> a2(sz);
2022   std::size_t i(0);
2023   for(std::vector< MEDFileField1TSStructItem2 >::const_iterator it=_items.begin();it!=_items.end();it++,i++)
2024     {
2025       a0[i]=(*it).getGeo();
2026       a1[i]=(*it).getPfl(globs);
2027       a2[i]=mst->getNumberOfElemsOfGeoType((*it).getGeo());
2028     }
2029   return MEDMeshMultiLev::New(mst->getTheMesh(),a0,a1,a2);
2030 }
2031
2032 std::vector<INTERP_KERNEL::NormalizedCellType> MEDFileField1TSStructItem::getGeoTypes(const MEDFileMesh *m) const
2033 {
2034   std::vector<INTERP_KERNEL::NormalizedCellType> ret;
2035   if(_type==ON_NODES)
2036     {
2037       if(!_items.empty() && _items[0].getPflName().empty())
2038         {
2039           if(m)
2040             return m->getAllGeoTypes();
2041           else
2042             return ret;
2043         }
2044       else
2045         return ret;
2046     }
2047   for(std::vector< MEDFileField1TSStructItem2 >::const_iterator it=_items.begin();it!=_items.end();it++)
2048     {
2049       INTERP_KERNEL::NormalizedCellType elt((*it).getGeo());
2050       std::vector<INTERP_KERNEL::NormalizedCellType>::iterator it2(std::find(ret.begin(),ret.end(),elt));
2051       if(it2==ret.end())
2052         ret.push_back(elt);
2053     }
2054   return ret;
2055 }
2056
2057 MEDFileField1TSStructItem MEDFileField1TSStructItem::BuildItemFrom(const MEDFileAnyTypeField1TS *ref, const MEDFileMeshStruct *meshSt)
2058 {
2059   TypeOfField atype;
2060   std::vector< MEDFileField1TSStructItem2 > anItems;
2061   //
2062   std::vector< std::vector<std::string> > pfls,locs;
2063   std::vector< std::vector<TypeOfField> > typesF;
2064   std::vector<INTERP_KERNEL::NormalizedCellType> geoTypes;
2065   std::vector< std::vector<std::pair<int,int> > > strtEnds=ref->getFieldSplitedByType(std::string(),geoTypes,typesF,pfls,locs);
2066   std::size_t nbOfGeoTypes(geoTypes.size());
2067   if(nbOfGeoTypes==0)
2068     throw INTERP_KERNEL::Exception("MEDFileField1TSStruct : not null by empty ref  !");
2069   bool isFirst=true;
2070   for(std::size_t i=0;i<nbOfGeoTypes;i++)
2071     {
2072       std::size_t sz=typesF[i].size();
2073       if(strtEnds[i].size()<1 || sz<1 || pfls[i].size()<1)
2074         throw INTERP_KERNEL::Exception("MEDFileField1TSStruct : internal error #1 !");
2075       //
2076       if(isFirst)
2077         atype=typesF[i][0];
2078       isFirst=false;
2079       //
2080       for(std::size_t j=0;j<sz;j++)
2081         {
2082           if(atype==typesF[i][j])
2083             anItems.push_back(MEDFileField1TSStructItem2(geoTypes[i],strtEnds[i][j],pfls[i][j],locs[i][j]));
2084           else
2085             throw INTERP_KERNEL::Exception("MEDFileField1TSStruct : can be applied only on single spatial discretization fields ! Call SplitPerDiscretization method !");
2086         }
2087     }
2088   MEDFileField1TSStructItem ret(atype,anItems);
2089   ret.checkWithMeshStruct(meshSt,ref);
2090   return ret;
2091 }
2092
2093 //=
2094
2095 MEDFileField1TSStruct *MEDFileField1TSStruct::New(const MEDFileAnyTypeField1TS *ref, MEDFileMeshStruct *mst)
2096 {
2097   return new MEDFileField1TSStruct(ref,mst);
2098 }
2099
2100 MEDFileField1TSStruct::MEDFileField1TSStruct(const MEDFileAnyTypeField1TS *ref, MEDFileMeshStruct *mst)
2101 {
2102   _already_checked.push_back(MEDFileField1TSStructItem::BuildItemFrom(ref,mst));
2103 }
2104
2105 void MEDFileField1TSStruct::checkWithMeshStruct(MEDFileMeshStruct *mst, const MEDFileFieldGlobsReal *globs)
2106 {
2107   if(_already_checked.empty())
2108     throw INTERP_KERNEL::Exception("MEDFileField1TSStruct::checkWithMeshStruct : not correctly initialized !");
2109   _already_checked.back().checkWithMeshStruct(mst,globs);
2110 }
2111
2112 bool MEDFileField1TSStruct::isEqualConsideringThePast(const MEDFileAnyTypeField1TS *other, const MEDFileMeshStruct *mst) const
2113 {
2114   MEDFileField1TSStructItem b(MEDFileField1TSStructItem::BuildItemFrom(other,mst));
2115   for(std::vector<MEDFileField1TSStructItem>::const_iterator it=_already_checked.begin();it!=_already_checked.end();it++)
2116     {
2117       if((*it)==b)
2118         return true;
2119     }
2120   return false;
2121 }
2122
2123 /*!
2124  * Not const because \a other structure will be added to the \c _already_checked attribute in case of success.
2125  */
2126 bool MEDFileField1TSStruct::isSupportSameAs(const MEDFileAnyTypeField1TS *other, const MEDFileMeshStruct *meshSt)
2127 {
2128   if(_already_checked.empty())
2129     throw INTERP_KERNEL::Exception("MEDFileField1TSStruct::isSupportSameAs : no ref !");
2130   MEDFileField1TSStructItem b(MEDFileField1TSStructItem::BuildItemFrom(other,meshSt));
2131   if(!_already_checked[0].isEntityCell() || !b.isEntityCell())
2132     throw INTERP_KERNEL::Exception("MEDFileField1TSStruct::isSupportSameAs : only available on cell entities !");
2133   MEDFileField1TSStructItem other1(b.simplifyMeOnCellEntity(other));
2134   int found=-1,i=0;
2135   for(std::vector<MEDFileField1TSStructItem>::const_iterator it=_already_checked.begin();it!=_already_checked.end();it++,i++)
2136     if((*it).isComputed())
2137       { found=i; break; }
2138   bool ret(false);
2139   if(found==-1)
2140     {
2141       MEDFileField1TSStructItem this1(_already_checked[0].simplifyMeOnCellEntity(other));
2142       ret=this1.isCellSupportEqual(other1,other);
2143       if(ret)
2144         _already_checked.push_back(this1);
2145     }
2146   else
2147     ret=_already_checked[found].isCellSupportEqual(other1,other);
2148   if(ret)
2149     _already_checked.push_back(b);
2150   return ret;
2151 }
2152
2153 /*!
2154  * \param [in] other - a field with only one spatial discretization : ON_NODES.
2155  */
2156 bool MEDFileField1TSStruct::isCompatibleWithNodesDiscr(const MEDFileAnyTypeField1TS *other, const MEDFileMeshStruct *meshSt)
2157 {
2158   if(_already_checked.empty())
2159     throw INTERP_KERNEL::Exception("MEDFileField1TSStruct::isCompatibleWithNodesDiscr : no ref !");
2160   MEDFileField1TSStructItem other1(MEDFileField1TSStructItem::BuildItemFrom(other,meshSt));
2161   if(_already_checked[0].isEntityCell())
2162     {
2163       int found=-1,i=0;
2164       for(std::vector<MEDFileField1TSStructItem>::const_iterator it=_already_checked.begin();it!=_already_checked.end();it++,i++)
2165         if((*it).isComputed())
2166           { found=i; break; }
2167       bool ret(false);
2168       if(found==-1)
2169         {
2170           MEDFileField1TSStructItem this1(_already_checked[0].simplifyMeOnCellEntity(other));
2171           ret=this1.isCompatibleWithNodesDiscr(other1,meshSt,other);
2172           if(ret)
2173             _already_checked.push_back(this1);
2174         }
2175       else
2176         ret=_already_checked[found].isCompatibleWithNodesDiscr(other1,meshSt,other);
2177       if(ret)
2178         _already_checked.push_back(other1);
2179       return ret;
2180     }
2181   else
2182     return _already_checked[0].isNodeSupportEqual(other1,other);
2183 }
2184
2185 std::size_t MEDFileField1TSStruct::getHeapMemorySizeWithoutChildren() const
2186 {
2187   std::size_t ret(_already_checked.capacity()*sizeof(MEDFileField1TSStructItem));
2188   return ret;
2189 }
2190
2191 std::vector<const BigMemoryObject *> MEDFileField1TSStruct::getDirectChildren() const
2192 {
2193   std::vector<const BigMemoryObject *> ret;
2194   for(std::vector<MEDFileField1TSStructItem>::const_iterator it=_already_checked.begin();it!=_already_checked.end();it++)
2195     ret.push_back(&(*it));
2196   return ret;
2197 }
2198
2199 MEDMeshMultiLev *MEDFileField1TSStruct::buildFromScratchDataSetSupport(const MEDFileMeshStruct *mst, const MEDFileFieldGlobsReal *globs) const
2200 {
2201   if(_already_checked.empty())
2202     throw INTERP_KERNEL::Exception("MEDFileField1TSStruct::buildFromScratchDataSetSupport : No outline structure in this !");
2203   int pos0(-1),pos1(-1);
2204   if(presenceOfCellDiscr(pos0))
2205     {
2206       MEDCouplingAutoRefCountObjectPtr<MEDMeshMultiLev> ret(_already_checked[pos0].buildFromScratchDataSetSupportOnCells(mst,globs));
2207       if(presenceOfPartialNodeDiscr(pos1))
2208         ret->setNodeReduction(_already_checked[pos1][0].getPfl(globs));
2209       return ret.retn();
2210     }
2211   else
2212     {
2213       if(!presenceOfPartialNodeDiscr(pos1))
2214         {//we have only all nodes, no cell definition info -> all existing levels !;
2215           return MEDMeshMultiLev::New(mst->getTheMesh(),mst->getTheMesh()->getNonEmptyLevels());
2216         }
2217       else
2218         return MEDMeshMultiLev::NewOnlyOnNode(mst->getTheMesh(),_already_checked[pos1][0].getPfl(globs));
2219     }
2220 }
2221
2222 bool MEDFileField1TSStruct::isDataSetSupportFastlyEqualTo(const MEDFileField1TSStruct& other, const MEDFileFieldGlobsReal *globs) const
2223 {
2224   int b0,b1;
2225   bool a0(presenceOfCellDiscr(b0)),a1(presenceOfPartialNodeDiscr(b1));
2226   int d0,d1;
2227   bool c0(other.presenceOfCellDiscr(d0)),c1(other.presenceOfPartialNodeDiscr(d1)); 
2228   if(a0!=c0 || a1!=c1)
2229     return false;
2230   if(a0)
2231     if(!_already_checked[b0].isCellSupportEqual(other._already_checked[d0],globs))
2232       return false;
2233   if(a1)
2234     if(!_already_checked[b1].isNodeSupportEqual(other._already_checked[d1],globs))
2235       return false;
2236   return true;
2237 }
2238
2239 std::vector<INTERP_KERNEL::NormalizedCellType> MEDFileField1TSStruct::getGeoTypes(const MEDFileMesh *m) const
2240 {
2241   std::vector<INTERP_KERNEL::NormalizedCellType> ret;
2242   for(std::vector<MEDFileField1TSStructItem>::const_iterator it=_already_checked.begin();it!=_already_checked.end();it++)
2243     {
2244       std::vector<INTERP_KERNEL::NormalizedCellType> ret2((*it).getGeoTypes(m));
2245       for(std::vector<INTERP_KERNEL::NormalizedCellType>::const_iterator it2=ret2.begin();it2!=ret2.end();it2++)
2246         {
2247           if(*it2==INTERP_KERNEL::NORM_ERROR)
2248             continue;
2249           std::vector<INTERP_KERNEL::NormalizedCellType>::iterator it3(std::find(ret.begin(),ret.end(),*it2));
2250           if(it3==ret.end())
2251             ret.push_back(*it2);
2252         }
2253     }
2254   return ret;
2255 }
2256
2257 /*!
2258  * Returns true if presence in \a this of discretization ON_CELLS, ON_GAUSS_PT, ON_GAUSS_NE.
2259  * 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.
2260  */
2261 bool MEDFileField1TSStruct::presenceOfCellDiscr(int& pos) const
2262 {
2263   std::size_t refSz(std::numeric_limits<std::size_t>::max());
2264   bool ret(false);
2265   int i(0);
2266   for(std::vector<MEDFileField1TSStructItem>::const_iterator it=_already_checked.begin();it!=_already_checked.end();it++,i++)
2267     {
2268       if((*it).getType()!=ON_NODES)
2269         {
2270           ret=true;
2271           std::size_t sz((*it).getNumberOfItems());
2272           if(refSz>sz)
2273             { pos=i; refSz=sz; }
2274         }
2275     }
2276   if(refSz==0)
2277     throw INTERP_KERNEL::Exception("MEDFileField1TSStruct::presenceOfCellDiscr : an element in this on entity CELL is empty !");
2278   return ret;
2279 }
2280
2281 /*!
2282  * Returns true if presence in \a this of discretization ON_NODES.
2283  * If true is returned the pos of the first element containing the single subpart.
2284  */
2285 bool MEDFileField1TSStruct::presenceOfPartialNodeDiscr(int& pos) const
2286 {
2287   int i(0);
2288   for(std::vector<MEDFileField1TSStructItem>::const_iterator it=_already_checked.begin();it!=_already_checked.end();it++,i++)
2289     {
2290       if((*it).getType()==ON_NODES)
2291         {
2292           std::size_t sz((*it).getNumberOfItems());
2293           if(sz==1)
2294             {
2295               if(!(*it)[0].getPflName().empty())
2296                 { pos=i; return true; }
2297             }
2298           else
2299             throw INTERP_KERNEL::Exception("MEDFileField1TSStruct::presenceOfPartialNodeDiscr : an element in this on entity NODE is split into several parts !");
2300         }
2301     }
2302   return false;
2303 }
2304
2305 //=
2306
2307 MEDFileFastCellSupportComparator *MEDFileFastCellSupportComparator::New(const MEDFileMeshStruct *m, const MEDFileAnyTypeFieldMultiTS *ref)
2308 {
2309   return new MEDFileFastCellSupportComparator(m,ref);
2310 }
2311
2312 MEDFileFastCellSupportComparator::MEDFileFastCellSupportComparator(const MEDFileMeshStruct *m, const MEDFileAnyTypeFieldMultiTS *ref)
2313 {
2314   if(!m)
2315     throw INTERP_KERNEL::Exception("MEDFileFastCellSupportComparator constructor : null input mesh struct !");
2316   _mesh_comp=const_cast<MEDFileMeshStruct *>(m); _mesh_comp->incrRef();
2317   int nbPts=ref->getNumberOfTS();
2318   _f1ts_cmps.resize(nbPts);
2319   for(int i=0;i<nbPts;i++)
2320     {
2321       MEDCouplingAutoRefCountObjectPtr<MEDFileAnyTypeField1TS> elt=ref->getTimeStepAtPos(i);
2322       _f1ts_cmps[i]=MEDFileField1TSStruct::New(elt,_mesh_comp);
2323       _f1ts_cmps[i]->checkWithMeshStruct(_mesh_comp,elt);
2324     }
2325 }
2326
2327 std::size_t MEDFileFastCellSupportComparator::getHeapMemorySizeWithoutChildren() const
2328 {
2329   std::size_t ret(_f1ts_cmps.capacity()*sizeof(MEDCouplingAutoRefCountObjectPtr<MEDFileField1TSStruct>));
2330   return ret;
2331 }
2332
2333 std::vector<const BigMemoryObject *> MEDFileFastCellSupportComparator::getDirectChildren() const
2334 {
2335   std::vector<const BigMemoryObject *> ret;
2336   const MEDFileMeshStruct *mst(_mesh_comp);
2337   if(mst)
2338     ret.push_back(mst);
2339   for(std::vector< MEDCouplingAutoRefCountObjectPtr<MEDFileField1TSStruct> >::const_iterator it=_f1ts_cmps.begin();it!=_f1ts_cmps.end();it++)
2340     {
2341       const MEDFileField1TSStruct *cur(*it);
2342       if(cur)
2343         ret.push_back(cur);
2344     }
2345   return ret;
2346 }
2347
2348 bool MEDFileFastCellSupportComparator::isEqual(const MEDFileAnyTypeFieldMultiTS *other)
2349 {
2350   int nbPts=other->getNumberOfTS();
2351   if(nbPts!=(int)_f1ts_cmps.size())
2352     {
2353       std::ostringstream oss; oss << "MEDFileFastCellSupportComparator::isEqual : unexpected nb of time steps in  input ! Should be " << _f1ts_cmps.size() << " it is in reality " << nbPts << " !";
2354       throw INTERP_KERNEL::Exception(oss.str().c_str());
2355     }
2356   for(int i=0;i<nbPts;i++)
2357     {
2358       MEDCouplingAutoRefCountObjectPtr<MEDFileAnyTypeField1TS> elt=other->getTimeStepAtPos(i);
2359       if(!_f1ts_cmps[i]->isEqualConsideringThePast(elt,_mesh_comp))
2360         if(!_f1ts_cmps[i]->isSupportSameAs(elt,_mesh_comp))
2361           return false;
2362     }
2363   return true;
2364 }
2365
2366 bool MEDFileFastCellSupportComparator::isCompatibleWithNodesDiscr(const MEDFileAnyTypeFieldMultiTS *other)
2367 {
2368   int nbPts=other->getNumberOfTS();
2369   if(nbPts!=(int)_f1ts_cmps.size())
2370     {
2371       std::ostringstream oss; oss << "MEDFileFastCellSupportComparator::isCompatibleWithNodesDiscr : unexpected nb of time steps in  input ! Should be " << _f1ts_cmps.size() << " it is in reality " << nbPts << " !";
2372       throw INTERP_KERNEL::Exception(oss.str().c_str());
2373     }
2374   for(int i=0;i<nbPts;i++)
2375     {
2376       MEDCouplingAutoRefCountObjectPtr<MEDFileAnyTypeField1TS> elt=other->getTimeStepAtPos(i);
2377       if(!_f1ts_cmps[i]->isCompatibleWithNodesDiscr(elt,_mesh_comp))
2378         return false;
2379     }
2380   return true;
2381 }
2382
2383 MEDMeshMultiLev *MEDFileFastCellSupportComparator::buildFromScratchDataSetSupport(int timeStepId, const MEDFileFieldGlobsReal *globs) const
2384 {
2385   if(timeStepId<0 || timeStepId>=(int)_f1ts_cmps.size())
2386     {
2387       std::ostringstream oss; oss << "MEDFileFastCellSupportComparator::buildFromScratchDataSetSupport : requested time step id #" << timeStepId << " is not in [0," << _f1ts_cmps.size() << ") !";
2388       throw INTERP_KERNEL::Exception(oss.str().c_str());
2389     }
2390   const MEDFileField1TSStruct *obj(_f1ts_cmps[timeStepId]);
2391   if(!obj)
2392     {
2393       std::ostringstream oss; oss << "MEDFileFastCellSupportComparator::buildFromScratchDataSetSupport : at time step id #" << timeStepId << " no field structure overview defined !";
2394       throw INTERP_KERNEL::Exception(oss.str().c_str());
2395     }
2396   return obj->buildFromScratchDataSetSupport(_mesh_comp,globs);
2397 }
2398
2399 bool MEDFileFastCellSupportComparator::isDataSetSupportEqualToThePreviousOne(int timeStepId, const MEDFileFieldGlobsReal *globs) const
2400 {
2401   if(timeStepId<=0 || timeStepId>=(int)_f1ts_cmps.size())
2402     {
2403       std::ostringstream oss; oss << "MEDFileFastCellSupportComparator::isDataSetSupportEqualToThePreviousOne : requested time step id #" << timeStepId << " is not in [1," << _f1ts_cmps.size() << ") !";
2404       throw INTERP_KERNEL::Exception(oss.str().c_str());
2405     }
2406   const MEDFileField1TSStruct *obj(_f1ts_cmps[timeStepId]);
2407   const MEDFileField1TSStruct *objRef(_f1ts_cmps[timeStepId-1]);
2408   return objRef->isDataSetSupportFastlyEqualTo(*obj,globs);
2409 }
2410
2411 int MEDFileFastCellSupportComparator::getNumberOfTS() const
2412 {
2413   return _f1ts_cmps.size();
2414 }
2415
2416 std::vector<INTERP_KERNEL::NormalizedCellType> MEDFileFastCellSupportComparator::getGeoTypesAt(int timeStepId, const MEDFileMesh *m) const
2417 {
2418   if(timeStepId<0 || timeStepId>=(int)_f1ts_cmps.size())
2419     {
2420       std::ostringstream oss; oss << "MEDFileFastCellSupportComparator::getGeoTypesAt : requested time step id #" << timeStepId << " is not in [0," << _f1ts_cmps.size() << ") !";
2421       throw INTERP_KERNEL::Exception(oss.str().c_str());
2422     }
2423   const MEDFileField1TSStruct *elt(_f1ts_cmps[timeStepId]);
2424   if(!elt)
2425     {
2426       std::ostringstream oss; oss << "MEDFileFastCellSupportComparator::getGeoTypesAt : requested time step id #" << timeStepId << " points to a NULL pointer !";
2427       throw INTERP_KERNEL::Exception(oss.str().c_str());
2428     }
2429   return elt->getGeoTypes(m);
2430 }