Salome HOME
Management of lev -1 even for cell fields on structured meshes
[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   MEDCoupling1GTUMesh *facesIfPresent((static_cast<const MEDFileStructuredMesh *>(_mesh))->getImplicitFaceMesh());
1255   if(!facesIfPresent)
1256     return false;
1257   const DataArrayInt *pfl(0),*nr(_node_reduction);
1258   if(!_pfls.empty())
1259     pfl=_pfls[0];
1260   MEDCouplingAutoRefCountObjectPtr<MEDCoupling1GTUMesh> facesIfPresent2(facesIfPresent); facesIfPresent->incrRef();
1261   MEDCouplingAutoRefCountObjectPtr<MEDUMeshMultiLev> ret2(new MEDUMeshMultiLev(*this,facesIfPresent2));
1262   if(pfl)
1263     throw INTERP_KERNEL::Exception("MEDStructuredMeshMultiLev::prepareForImplicitUnstructuredMeshCase : case is not treated yet for profile on implicit unstructured mesh.");
1264   if(nr)
1265     throw INTERP_KERNEL::Exception("MEDStructuredMeshMultiLev::prepareForImplicitUnstructuredMeshCase : case is not treated yet for node reduction on implicit unstructured mesh.");
1266   ret=ret2.retn();
1267   return true;
1268 }
1269
1270 void MEDStructuredMeshMultiLev::dealWithImplicitUnstructuredMesh(const MEDFileMesh *m)
1271 {
1272   _cell_fam_ids_nocpy=true; _cell_num_ids_nocpy=true;
1273   const DataArrayInt *tmp(0);
1274   tmp=m->getFamilyFieldAtLevel(-1);
1275   if(tmp)
1276     {
1277       tmp->incrRef();
1278       _cell_fam_ids=const_cast<DataArrayInt *>(tmp);
1279     }
1280   tmp=m->getNumberFieldAtLevel(-1);
1281   if(tmp)
1282     {
1283       tmp->incrRef();
1284       _cell_num_ids=const_cast<DataArrayInt *>(tmp);
1285     }
1286 }
1287
1288 void MEDStructuredMeshMultiLev::selectPartOfNodes(const DataArrayInt *pflNodes)
1289 {
1290   if(!pflNodes || !pflNodes->isAllocated())
1291     return ;
1292   std::vector<int> ngs(getNodeGridStructure());
1293   MEDCouplingAutoRefCountObjectPtr<DataArrayInt> conn(MEDCouplingStructuredMesh::Build1GTNodalConnectivity(&ngs[0],&ngs[0]+ngs.size()));
1294   MEDCouplingAutoRefCountObjectPtr<MEDCoupling1SGTUMesh> m(MEDCoupling1SGTUMesh::New("",MEDCouplingStructuredMesh::GetGeoTypeGivenMeshDimension(ngs.size())));
1295   m->setNodalConnectivity(conn);
1296   const DataArrayInt *pfl(_pfls[0]);
1297   if(pfl)
1298     {
1299       m=dynamic_cast<MEDCoupling1SGTUMesh *>(m->buildPartOfMySelfKeepCoords(pfl->begin(),pfl->end()));
1300     }
1301   DataArrayInt *cellIds=0;
1302   m->fillCellIdsToKeepFromNodeIds(pflNodes->begin(),pflNodes->end(),true,cellIds);
1303   MEDCouplingAutoRefCountObjectPtr<DataArrayInt> cellIdsSafe(cellIds);
1304   MEDCouplingAutoRefCountObjectPtr<MEDCouplingPointSet> m2(m->buildPartOfMySelfKeepCoords(cellIds->begin(),cellIds->end()));
1305   int tmp=-1;
1306   _node_reduction=m2->getNodeIdsInUse(tmp);
1307   if(pfl)
1308     _pfls[0]=pfl->selectByTupleIdSafe(cellIds->begin(),cellIds->end());
1309   else
1310     _pfls[0]=cellIdsSafe;
1311 }
1312
1313 //=
1314
1315 MEDCMeshMultiLev *MEDCMeshMultiLev::New(const MEDFileCMesh *m, const std::vector<int>& levs)
1316 {
1317   return new MEDCMeshMultiLev(m,levs);
1318 }
1319
1320 MEDCMeshMultiLev *MEDCMeshMultiLev::New(const MEDFileCMesh *m, const std::vector<INTERP_KERNEL::NormalizedCellType>& gts, const std::vector<const DataArrayInt *>& pfls, const std::vector<int>& nbEntities)
1321 {
1322   return new MEDCMeshMultiLev(m,gts,pfls,nbEntities);
1323 }
1324
1325 MEDCMeshMultiLev::MEDCMeshMultiLev(const MEDFileCMesh *m, const std::vector<int>& levs):MEDStructuredMeshMultiLev(m,levs)
1326 {
1327   if(!m)
1328     throw INTERP_KERNEL::Exception("MEDCMeshMultiLev constructor : null input pointer !");
1329   if(levs.size()!=1 || levs[0]!=0)
1330     throw INTERP_KERNEL::Exception("MEDCMeshMultiLev constructor : levels supported is 0 only !");
1331   int sdim(m->getSpaceDimension());
1332   _coords.resize(sdim);
1333   for(int i=0;i<sdim;i++)
1334     {
1335       DataArrayDouble *elt(const_cast<DataArrayDouble *>(m->getMesh()->getCoordsAt(i)));
1336       if(!elt)
1337         throw INTERP_KERNEL::Exception("MEDCMeshMultiLev constructor 2 : presence of null pointer for an vector of double along an axis !");
1338       elt->incrRef();
1339       _coords[i]=elt;
1340     }
1341 }
1342
1343 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)
1344 {
1345   if(!m)
1346     throw INTERP_KERNEL::Exception("MEDCMeshMultiLev constructor 2 : null input pointer !");
1347   if(gts.size()!=1 || pfls.size()!=1)
1348     throw INTERP_KERNEL::Exception("MEDCMeshMultiLev constructor 2 : lengthes of gts and pfls must be equal to one !");
1349   int mdim(m->getMeshDimension());
1350   INTERP_KERNEL::NormalizedCellType gt(MEDCouplingStructuredMesh::GetGeoTypeGivenMeshDimension(mdim));
1351   if(gt==gts[0])
1352     {
1353       _coords.resize(mdim);
1354       for(int i=0;i<mdim;i++)
1355         {
1356           DataArrayDouble *elt(const_cast<DataArrayDouble *>(m->getMesh()->getCoordsAt(i)));
1357           if(!elt)
1358             throw INTERP_KERNEL::Exception("MEDCMeshMultiLev constructor 2 : presence of null pointer for an vector of double along an axis !");
1359           _coords[i]=elt; _coords[i]->incrRef();
1360         }
1361     }
1362   else
1363     dealWithImplicitUnstructuredMesh(m);
1364 }
1365
1366 MEDCMeshMultiLev::MEDCMeshMultiLev(const MEDCMeshMultiLev& other):MEDStructuredMeshMultiLev(other),_coords(other._coords)
1367 {
1368 }
1369
1370 std::vector<int> MEDCMeshMultiLev::getNodeGridStructure() const
1371 {
1372   std::vector<int> ret(_coords.size());
1373   for(std::size_t i=0;i<_coords.size();i++)
1374     ret[i]=_coords[i]->getNumberOfTuples();
1375   return ret;
1376 }
1377
1378 MEDMeshMultiLev *MEDCMeshMultiLev::prepare() const
1379 {
1380   MEDMeshMultiLev *retSpecific(0);
1381   if(prepareForImplicitUnstructuredMeshCase(retSpecific))
1382     return retSpecific;
1383   const DataArrayInt *pfl(0),*nr(_node_reduction);
1384   if(!_pfls.empty())
1385     pfl=_pfls[0];
1386   MEDCouplingAutoRefCountObjectPtr<DataArrayInt> nnr;
1387   std::vector<int> cgs,ngs(getNodeGridStructure());
1388   cgs.resize(ngs.size());
1389   std::transform(ngs.begin(),ngs.end(),cgs.begin(),std::bind2nd(std::plus<int>(),-1));
1390   if(pfl)
1391     {
1392       std::vector< std::pair<int,int> > cellParts;
1393       MEDCouplingAutoRefCountObjectPtr<MEDMeshMultiLev> ret2;
1394       if(MEDCouplingStructuredMesh::IsPartStructured(pfl->begin(),pfl->end(),cgs,cellParts))
1395         {
1396           MEDCouplingAutoRefCountObjectPtr<MEDCMeshMultiLev> ret(new MEDCMeshMultiLev(*this));
1397           ret->_is_internal=false;
1398           if(nr)
1399             { nnr=nr->deepCpy(); nnr->sort(true); ret->setNodeReduction(nnr); }
1400           ret->_nb_entities[0]=pfl->getNumberOfTuples();
1401           ret->_pfls[0]=0;
1402           std::vector< MEDCouplingAutoRefCountObjectPtr<DataArrayDouble> > coords(_coords.size());
1403           for(std::size_t i=0;i<_coords.size();i++)
1404             coords[i]=_coords[i]->selectByTupleId2(cellParts[i].first,cellParts[i].second+1,1);
1405           ret->_coords=coords;
1406           ret2=(MEDCMeshMultiLev *)ret; ret2->incrRef();
1407         }
1408       else
1409         {
1410           MEDCouplingAutoRefCountObjectPtr<MEDCouplingCMesh> m(MEDCouplingCMesh::New());
1411           for(std::size_t i=0;i<ngs.size();i++)
1412             m->setCoordsAt(i,_coords[i]);
1413           MEDCouplingAutoRefCountObjectPtr<MEDCoupling1SGTUMesh> m2(m->build1SGTUnstructured());
1414           MEDCouplingAutoRefCountObjectPtr<MEDCoupling1GTUMesh> m3=dynamic_cast<MEDCoupling1GTUMesh *>(m2->buildPartOfMySelfKeepCoords(pfl->begin(),pfl->end()));
1415           MEDCouplingAutoRefCountObjectPtr<MEDUMeshMultiLev> ret(new MEDUMeshMultiLev(*this,m3));
1416           if(nr)
1417             { m3->zipCoords(); nnr=nr->deepCpy(); nnr->sort(true); ret->setNodeReduction(nnr); }
1418           ret2=(MEDUMeshMultiLev *)ret; ret2->incrRef();
1419         }
1420       const DataArrayInt *famIds(_cell_fam_ids),*numIds(_cell_num_ids);
1421       if(famIds)
1422         {
1423           MEDCouplingAutoRefCountObjectPtr<DataArrayInt> tmp(famIds->selectByTupleIdSafe(pfl->begin(),pfl->end()));
1424           ret2->setFamilyIdsOnCells(tmp,false);
1425         }
1426       if(numIds)
1427         {
1428           MEDCouplingAutoRefCountObjectPtr<DataArrayInt> tmp(numIds->selectByTupleIdSafe(pfl->begin(),pfl->end()));
1429           ret2->setNumberIdsOnCells(tmp,false);
1430         }
1431       return ret2.retn();
1432       
1433     }
1434   else
1435     {
1436       MEDCouplingAutoRefCountObjectPtr<MEDCMeshMultiLev> ret(new MEDCMeshMultiLev(*this));
1437       if(nr)
1438         { nnr=nr->deepCpy(); nnr->sort(true); ret->setNodeReduction(nnr); }
1439       return ret.retn();
1440     }
1441 }
1442
1443 /*!
1444  * \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.
1445  */
1446 std::vector< DataArrayDouble * > MEDCMeshMultiLev::buildVTUArrays(bool& isInternal) const
1447 {
1448   isInternal=_is_internal;
1449   std::size_t sz(_coords.size());
1450   std::vector< DataArrayDouble * > ret(sz);
1451   for(std::size_t i=0;i<sz;i++)
1452     {
1453       ret[i]=const_cast<DataArrayDouble *>((const DataArrayDouble *)_coords[i]);
1454       ret[i]->incrRef();
1455     }
1456   return ret;
1457 }
1458
1459 //=
1460
1461 MEDCurveLinearMeshMultiLev *MEDCurveLinearMeshMultiLev::New(const MEDFileCurveLinearMesh *m, const std::vector<int>& levs)
1462 {
1463   return new MEDCurveLinearMeshMultiLev(m,levs);
1464 }
1465
1466 MEDCurveLinearMeshMultiLev *MEDCurveLinearMeshMultiLev::New(const MEDFileCurveLinearMesh *m, const std::vector<INTERP_KERNEL::NormalizedCellType>& gts, const std::vector<const DataArrayInt *>& pfls, const std::vector<int>& nbEntities)
1467 {
1468   return new MEDCurveLinearMeshMultiLev(m,gts,pfls,nbEntities);
1469 }
1470
1471 MEDCurveLinearMeshMultiLev::MEDCurveLinearMeshMultiLev(const MEDFileCurveLinearMesh *m, const std::vector<int>& levs):MEDStructuredMeshMultiLev(m,levs)
1472 {
1473   if(!m)
1474     throw INTERP_KERNEL::Exception("MEDCurveLinearMeshMultiLev constructor : null input pointer !");
1475   if(levs.size()!=1 || levs[0]!=0)
1476     throw INTERP_KERNEL::Exception("MEDCurveLinearMeshMultiLev constructor : levels supported is 0 only !");
1477   DataArrayDouble *coords(const_cast<DataArrayDouble *>(m->getMesh()->getCoords()));
1478   if(!coords)
1479     throw INTERP_KERNEL::Exception("MEDCurveLinearMeshMultiLev constructor 2 : no coords set !");
1480   coords->incrRef();
1481   _coords=coords;
1482   _structure=m->getMesh()->getNodeGridStructure();
1483 }
1484
1485 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)
1486 {
1487   if(!m)
1488     throw INTERP_KERNEL::Exception("MEDCurveLinearMeshMultiLev constructor 2 : null input pointer !");
1489   if(gts.size()!=1 || pfls.size()!=1)
1490     throw INTERP_KERNEL::Exception("MEDCurveLinearMeshMultiLev constructor 2 : lengthes of gts and pfls must be equal to one !");
1491   INTERP_KERNEL::NormalizedCellType gt(MEDCouplingStructuredMesh::GetGeoTypeGivenMeshDimension(m->getMeshDimension()));
1492   if(gt==gts[0])
1493     {
1494       DataArrayDouble *coords(const_cast<DataArrayDouble *>(m->getMesh()->getCoords()));
1495       if(!coords)
1496         throw INTERP_KERNEL::Exception("MEDCurveLinearMeshMultiLev constructor 2 : no coords set !");
1497       coords->incrRef();
1498       _coords=coords;
1499       _structure=m->getMesh()->getNodeGridStructure();
1500     }
1501   else
1502     dealWithImplicitUnstructuredMesh(m);
1503 }
1504
1505 MEDCurveLinearMeshMultiLev::MEDCurveLinearMeshMultiLev(const MEDCurveLinearMeshMultiLev& other):MEDStructuredMeshMultiLev(other),_coords(other._coords),_structure(other._structure)
1506 {
1507 }
1508
1509 std::vector<int> MEDCurveLinearMeshMultiLev::getNodeGridStructure() const
1510 {
1511   return _structure;
1512 }
1513
1514 MEDMeshMultiLev *MEDCurveLinearMeshMultiLev::prepare() const
1515 {
1516   MEDMeshMultiLev *retSpecific(0);
1517   if(prepareForImplicitUnstructuredMeshCase(retSpecific))
1518     return retSpecific;
1519   const DataArrayInt *pfl(0),*nr(_node_reduction);
1520   if(!_pfls.empty())
1521     pfl=_pfls[0];
1522   MEDCouplingAutoRefCountObjectPtr<DataArrayInt> nnr;
1523   std::vector<int> cgs,ngs(getNodeGridStructure());
1524   cgs.resize(ngs.size());
1525   std::transform(ngs.begin(),ngs.end(),cgs.begin(),std::bind2nd(std::plus<int>(),-1));
1526   if(pfl)
1527     {
1528       std::vector< std::pair<int,int> > cellParts,nodeParts;
1529       MEDCouplingAutoRefCountObjectPtr<MEDMeshMultiLev> ret2;
1530       if(MEDCouplingStructuredMesh::IsPartStructured(pfl->begin(),pfl->end(),cgs,cellParts))
1531         {
1532           nodeParts=cellParts;
1533           std::vector<int> st(ngs.size());
1534           for(std::size_t i=0;i<ngs.size();i++)
1535             {
1536               nodeParts[i].second++;
1537               st[i]=nodeParts[i].second-nodeParts[i].first;
1538             }
1539           MEDCouplingAutoRefCountObjectPtr<DataArrayInt> p(MEDCouplingStructuredMesh::BuildExplicitIdsFrom(ngs,nodeParts));
1540           MEDCouplingAutoRefCountObjectPtr<MEDCurveLinearMeshMultiLev> ret(new MEDCurveLinearMeshMultiLev(*this));
1541           ret->_is_internal=false;
1542           if(nr)
1543             { nnr=nr->deepCpy(); nnr->sort(true); ret->setNodeReduction(nnr); }
1544           ret->_nb_entities[0]=pfl->getNumberOfTuples();
1545           ret->_pfls[0]=0;
1546           ret->_coords=_coords->selectByTupleIdSafe(p->begin(),p->end());
1547           ret->_structure=st;
1548           ret2=(MEDCurveLinearMeshMultiLev *)ret; ret2->incrRef();
1549         }
1550       else
1551         {
1552           MEDCouplingAutoRefCountObjectPtr<MEDCouplingCurveLinearMesh> m(MEDCouplingCurveLinearMesh::New());
1553           m->setCoords(_coords); m->setNodeGridStructure(&_structure[0],&_structure[0]+_structure.size());
1554           MEDCouplingAutoRefCountObjectPtr<MEDCoupling1SGTUMesh> m2(m->build1SGTUnstructured());
1555           MEDCouplingAutoRefCountObjectPtr<MEDCoupling1GTUMesh> m3=dynamic_cast<MEDCoupling1GTUMesh *>(m2->buildPartOfMySelfKeepCoords(pfl->begin(),pfl->end()));
1556           MEDCouplingAutoRefCountObjectPtr<MEDUMeshMultiLev> ret(new MEDUMeshMultiLev(*this,m3));
1557           if(nr)
1558             { m3->zipCoords(); nnr=nr->deepCpy(); nnr->sort(true); ret->setNodeReduction(nnr); }
1559           ret2=(MEDUMeshMultiLev *)ret; ret2->incrRef();
1560         }
1561       const DataArrayInt *famIds(_cell_fam_ids),*numIds(_cell_num_ids);
1562       if(famIds)
1563         {
1564           MEDCouplingAutoRefCountObjectPtr<DataArrayInt> tmp(famIds->selectByTupleIdSafe(pfl->begin(),pfl->end()));
1565           ret2->setFamilyIdsOnCells(tmp,false);
1566         }
1567       if(numIds)
1568         {
1569           MEDCouplingAutoRefCountObjectPtr<DataArrayInt> tmp(numIds->selectByTupleIdSafe(pfl->begin(),pfl->end()));
1570           ret2->setNumberIdsOnCells(tmp,false);
1571         }
1572       return ret2.retn();
1573     }
1574   else
1575     {
1576       MEDCouplingAutoRefCountObjectPtr<MEDCurveLinearMeshMultiLev> ret(new MEDCurveLinearMeshMultiLev(*this));
1577       if(nr)
1578         { nnr=nr->deepCpy(); nnr->sort(true); ret->setNodeReduction(nnr); }
1579       return ret.retn();
1580     }
1581 }
1582
1583 void MEDCurveLinearMeshMultiLev::buildVTUArrays(DataArrayDouble *&coords, std::vector<int>& nodeStrct, bool& isInternal) const
1584 {
1585   isInternal=_is_internal;
1586   nodeStrct=_structure;
1587   const DataArrayDouble *coo(_coords);
1588   if(!coo)
1589     throw INTERP_KERNEL::Exception("MEDCurveLinearMeshMultiLev::buildVTUArrays : null pointer on coordinates !");
1590   coords=const_cast<DataArrayDouble *>(coo); coords->incrRef();
1591 }
1592
1593 //=
1594
1595 MEDFileField1TSStructItem2::MEDFileField1TSStructItem2()
1596 {
1597 }
1598
1599 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)
1600 {
1601   _pfl->setName(c.c_str());
1602 }
1603
1604 void MEDFileField1TSStructItem2::checkWithMeshStructForCells(const MEDFileMeshStruct *mst, const MEDFileFieldGlobsReal *globs)
1605 {
1606   if(!mst->doesManageGeoType(_geo_type))
1607     {
1608       MEDFileMeshStruct *mstUnConstCasted(const_cast<MEDFileMeshStruct *>(mst));
1609       mstUnConstCasted->appendIfImplicitType(_geo_type);
1610     }
1611   int nbOfEnt=mst->getNumberOfElemsOfGeoType(_geo_type);
1612   checkInRange(nbOfEnt,1,globs);
1613 }
1614
1615 void MEDFileField1TSStructItem2::checkWithMeshStructForGaussNE(const MEDFileMeshStruct *mst, const MEDFileFieldGlobsReal *globs)
1616 {
1617   int nbOfEnt=mst->getNumberOfElemsOfGeoType(_geo_type);
1618   const INTERP_KERNEL::CellModel& cm=INTERP_KERNEL::CellModel::GetCellModel(_geo_type);
1619   checkInRange(nbOfEnt,(int)cm.getNumberOfNodes(),globs);
1620 }
1621
1622 void MEDFileField1TSStructItem2::checkWithMeshStructForGaussPT(const MEDFileMeshStruct *mst, const MEDFileFieldGlobsReal *globs)
1623 {
1624   if(!globs)
1625     throw INTERP_KERNEL::Exception("MEDFileField1TSStructItem2::checkWithMeshStructForGaussPT : no globals specified !");
1626   if(_loc.empty())
1627     throw INTERP_KERNEL::Exception("MEDFileField1TSStructItem2::checkWithMeshStructForGaussPT : no localization specified !");
1628   const MEDFileFieldLoc& loc=globs->getLocalization(_loc.c_str());
1629   int nbOfEnt=mst->getNumberOfElemsOfGeoType(_geo_type);
1630   checkInRange(nbOfEnt,loc.getNumberOfGaussPoints(),globs);
1631 }
1632
1633 int MEDFileField1TSStructItem2::getNbOfIntegrationPts(const MEDFileFieldGlobsReal *globs) const
1634 {
1635   if(_loc.empty())
1636     {
1637       if(getPflName().empty())
1638         return (_start_end.second-_start_end.first)/_nb_of_entity;
1639       else
1640         return (_start_end.second-_start_end.first)/getPfl(globs)->getNumberOfTuples();
1641     }
1642   else
1643     {
1644       const MEDFileFieldLoc& loc(globs->getLocalization(_loc.c_str()));
1645       return loc.getNumberOfGaussPoints();
1646     }
1647 }
1648
1649 std::string MEDFileField1TSStructItem2::getPflName() const
1650 {
1651   return _pfl->getName();
1652 }
1653
1654 const DataArrayInt *MEDFileField1TSStructItem2::getPfl(const MEDFileFieldGlobsReal *globs) const
1655 {
1656   if(!_pfl->isAllocated())
1657     {
1658       if(_pfl->getName().empty())
1659         return 0;
1660       else
1661         return globs->getProfile(_pfl->getName().c_str());
1662     }
1663   else
1664     return _pfl;
1665 }
1666
1667 /*!
1668  * \param [in] nbOfEntity - number of entity that can be either cells or nodes. Not other possiblity.
1669  * \param [in] nip - number of integration points. 1 for ON_CELLS and NO_NODES
1670  */
1671 void MEDFileField1TSStructItem2::checkInRange(int nbOfEntity, int nip, const MEDFileFieldGlobsReal *globs)
1672 {
1673   _nb_of_entity=nbOfEntity;
1674   if(_pfl->getName().empty())
1675     {
1676       if(nbOfEntity!=(_start_end.second-_start_end.first)/nip)
1677         throw INTERP_KERNEL::Exception("MEDFileField1TSStructItem2::checkInRange : Mismatch between number of entities and size of node field !");
1678       return ;
1679     }
1680   else
1681     {
1682       if(!globs)
1683         throw INTERP_KERNEL::Exception("MEDFileField1TSStructItem2::checkInRange : Presence of a profile on field whereas no globals found in file !");
1684       const DataArrayInt *pfl=globs->getProfile(_pfl->getName().c_str());
1685       if(!pfl)
1686         throw INTERP_KERNEL::Exception("MEDFileField1TSStructItem2::checkInRange : Presence of a profile on field whereas no such profile found in file !");
1687       pfl->checkAllIdsInRange(0,nbOfEntity);
1688     }
1689 }
1690
1691 bool MEDFileField1TSStructItem2::isFastlyEqual(int& startExp, INTERP_KERNEL::NormalizedCellType gt, const std::string& pflName) const
1692 {
1693   if(startExp!=_start_end.first)
1694     return false;
1695   if(gt!=_geo_type)
1696     return false;
1697   if(getPflName()!=pflName)
1698     return false;
1699   startExp=_start_end.second;
1700   return true;
1701 }
1702
1703 bool MEDFileField1TSStructItem2::operator==(const MEDFileField1TSStructItem2& other) const throw(INTERP_KERNEL::Exception)
1704 {
1705   //_nb_of_entity is not taken into account here. It is not a bug, because no mesh consideration needed here to perform fast compare.
1706   //idem for _loc. It is not an effective attribute for support comparison.
1707   return _geo_type==other._geo_type && _start_end==other._start_end && _pfl->getName()==other._pfl->getName();
1708 }
1709
1710 bool MEDFileField1TSStructItem2::isCellSupportEqual(const MEDFileField1TSStructItem2& other, const MEDFileFieldGlobsReal *globs) const
1711 {
1712   if(_geo_type!=other._geo_type)
1713     return false;
1714   if(_nb_of_entity!=other._nb_of_entity)
1715     return false;
1716   if((_pfl->getName().empty() && !other._pfl->getName().empty()) || (!_pfl->getName().empty() && other._pfl->getName().empty()))
1717     return false;
1718   if(_pfl->getName().empty() && other._pfl->getName().empty())
1719     return true;
1720   const DataArrayInt *pfl1(getPfl(globs)),*pfl2(other.getPfl(globs));
1721   return pfl1->isEqualWithoutConsideringStr(*pfl2);
1722 }
1723
1724 bool MEDFileField1TSStructItem2::isNodeSupportEqual(const MEDFileField1TSStructItem2& other, const MEDFileFieldGlobsReal *globs) const
1725 {
1726   return isCellSupportEqual(other,globs);
1727 }
1728
1729 /*!
1730  * \a objs must be non empty. \a objs should contain items having same geometric type.
1731  */
1732 MEDFileField1TSStructItem2 MEDFileField1TSStructItem2::BuildAggregationOf(const std::vector<const MEDFileField1TSStructItem2 *>& objs, const MEDFileFieldGlobsReal *globs)
1733 {
1734   if(objs.empty())
1735     throw INTERP_KERNEL::Exception("MEDFileField1TSStructItem2::BuildAggregationOf : empty input !");
1736   if(objs.size()==1)
1737     return MEDFileField1TSStructItem2(*objs[0]);
1738   INTERP_KERNEL::NormalizedCellType gt(objs[0]->_geo_type);
1739   int nbEntityRef(objs[0]->_nb_of_entity);
1740   std::size_t sz(objs.size());
1741   std::vector<const DataArrayInt *> arrs(sz);
1742   for(std::size_t i=0;i<sz;i++)
1743     {
1744       const MEDFileField1TSStructItem2 *obj(objs[i]);
1745       if(gt!=obj->_geo_type)
1746         throw INTERP_KERNEL::Exception("MEDFileField1TSStructItem2::BuildAggregationOf : invalid situation ! All input must have the same geo type !");
1747       if(nbEntityRef!=obj->_nb_of_entity)
1748         throw INTERP_KERNEL::Exception("MEDFileField1TSStructItem2::BuildAggregationOf : invalid situation ! All input must have the global nb of entity !");
1749       if(obj->_pfl->getName().empty())
1750         throw INTERP_KERNEL::Exception("MEDFileField1TSStructItem2::BuildAggregationOf : invalid situation ! Several same geo type chunk must all lie on profiles !");
1751       arrs[i]=globs->getProfile(obj->_pfl->getName().c_str());
1752     }
1753   MEDCouplingAutoRefCountObjectPtr<DataArrayInt> arr(DataArrayInt::Aggregate(arrs));
1754   arr->sort();
1755   int oldNbTuples(arr->getNumberOfTuples());
1756   arr=arr->buildUnique();
1757   if(oldNbTuples!=arr->getNumberOfTuples())
1758     throw INTERP_KERNEL::Exception("MEDFileField1TSStructItem2::BuildAggregationOf : some entities are present several times !");
1759   if(arr->isIdentity() && oldNbTuples==nbEntityRef)
1760     {
1761       std::pair<int,int> p(0,nbEntityRef);
1762       std::string a,b;
1763       MEDFileField1TSStructItem2 ret(gt,p,a,b);
1764       ret._nb_of_entity=nbEntityRef;
1765       return ret;
1766     }
1767   else
1768     {
1769       arr->setName(NEWLY_CREATED_PFL_NAME);
1770       std::pair<int,int> p(0,oldNbTuples);
1771       std::string a,b;
1772       MEDFileField1TSStructItem2 ret(gt,p,a,b);
1773       ret._nb_of_entity=nbEntityRef;
1774       ret._pfl=arr;
1775       return ret;
1776     }
1777 }
1778
1779 std::size_t MEDFileField1TSStructItem2::getHeapMemorySizeWithoutChildren() const
1780 {
1781   std::size_t ret(_loc.capacity());
1782   return ret;
1783 }
1784
1785 std::vector<const BigMemoryObject *> MEDFileField1TSStructItem2::getDirectChildren() const
1786 {
1787   std::vector<const BigMemoryObject *> ret;
1788   const DataArrayInt *pfl(_pfl);
1789   if(pfl)
1790     ret.push_back(pfl);
1791   return ret;
1792 }
1793
1794 //=
1795
1796 MEDFileField1TSStructItem::MEDFileField1TSStructItem(TypeOfField a, const std::vector< MEDFileField1TSStructItem2 >& b):_computed(false),_type(a),_items(b)
1797 {
1798 }
1799
1800 void MEDFileField1TSStructItem::checkWithMeshStruct(const MEDFileMeshStruct *mst, const MEDFileFieldGlobsReal *globs)
1801 {
1802   switch(_type)
1803     {
1804     case ON_NODES:
1805       {
1806         int nbOfEnt=mst->getNumberOfNodes();
1807         if(_items.size()!=1)
1808           throw INTERP_KERNEL::Exception("MEDFileField1TSStructItem::checkWithMeshStruct : for nodes field only one subdivision supported !");
1809         _items[0].checkInRange(nbOfEnt,1,globs);
1810         break ;
1811       }
1812     case ON_CELLS:
1813       {
1814         for(std::vector< MEDFileField1TSStructItem2 >::iterator it=_items.begin();it!=_items.end();it++)
1815           (*it).checkWithMeshStructForCells(mst,globs);
1816         break;
1817       }
1818     case ON_GAUSS_NE:
1819       {
1820         for(std::vector< MEDFileField1TSStructItem2 >::iterator it=_items.begin();it!=_items.end();it++)
1821           (*it).checkWithMeshStructForGaussNE(mst,globs);
1822         break;
1823       }
1824     case ON_GAUSS_PT:
1825       {
1826         for(std::vector< MEDFileField1TSStructItem2 >::iterator it=_items.begin();it!=_items.end();it++)
1827           (*it).checkWithMeshStructForGaussPT(mst,globs);
1828         break;
1829       }
1830     default:
1831       throw INTERP_KERNEL::Exception("MEDFileField1TSStructItem::checkWithMeshStruct : not managed field type !");
1832     }
1833 }
1834
1835 bool MEDFileField1TSStructItem::operator==(const MEDFileField1TSStructItem& other) const throw(INTERP_KERNEL::Exception)
1836 {
1837   if(_type!=other._type)
1838     return false;
1839   if(_items.size()!=other._items.size())
1840     return false;
1841   for(std::size_t i=0;i<_items.size();i++)
1842     if(!(_items[i]==other._items[i]))
1843       return false;
1844   return true;
1845 }
1846
1847 bool MEDFileField1TSStructItem::isCellSupportEqual(const MEDFileField1TSStructItem& other, const MEDFileFieldGlobsReal *globs) const
1848 {
1849   if(_type!=other._type)
1850     return false;
1851   if(_items.size()!=other._items.size())
1852     return false;
1853   for(std::size_t i=0;i<_items.size();i++)
1854     if(!(_items[i].isCellSupportEqual(other._items[i],globs)))
1855       return false;
1856   return true;
1857 }
1858
1859 bool MEDFileField1TSStructItem::isNodeSupportEqual(const MEDFileField1TSStructItem& other, const MEDFileFieldGlobsReal *globs) const
1860 {
1861   if(_type!=other._type)
1862     return false;
1863   if(_items.size()!=other._items.size())
1864     return false;
1865   for(std::size_t i=0;i<_items.size();i++)
1866     if(!(_items[i].isNodeSupportEqual(other._items[i],globs)))
1867       return false;
1868   return true;
1869 }
1870
1871 bool MEDFileField1TSStructItem::isEntityCell() const
1872 {
1873   if(_type==ON_NODES)
1874     return false;
1875   else
1876     return true;
1877 }
1878
1879 class CmpGeo
1880 {
1881 public:
1882   CmpGeo(INTERP_KERNEL::NormalizedCellType geoTyp):_geo_type(geoTyp) { }
1883   bool operator()(const std::pair< INTERP_KERNEL::NormalizedCellType, std::vector<std::size_t> > & v) const { return _geo_type==v.first; }
1884 private:
1885   INTERP_KERNEL::NormalizedCellType _geo_type;
1886 };
1887
1888 MEDFileField1TSStructItem MEDFileField1TSStructItem::simplifyMeOnCellEntity(const MEDFileFieldGlobsReal *globs) const
1889 {
1890   if(!isEntityCell())
1891     throw INTERP_KERNEL::Exception("MEDFileField1TSStructItem::simplifyMeOnCellEntity : must be on ON_CELLS, ON_GAUSS_NE or ON_GAUSS_PT !");
1892   std::vector< std::pair< INTERP_KERNEL::NormalizedCellType, std::vector<std::size_t> > > m;
1893   std::size_t i=0;
1894   for(std::vector< MEDFileField1TSStructItem2 >::const_iterator it=_items.begin();it!=_items.end();it++,i++)
1895     {
1896       std::vector< std::pair< INTERP_KERNEL::NormalizedCellType, std::vector<std::size_t> > >::iterator it0(std::find_if(m.begin(),m.end(),CmpGeo((*it).getGeo())));
1897       if(it0==m.end())
1898         m.push_back(std::pair< INTERP_KERNEL::NormalizedCellType, std::vector<std::size_t> >((*it).getGeo(),std::vector<std::size_t>(1,i)));
1899       else
1900         (*it0).second.push_back(i);
1901     }
1902   if(m.size()==_items.size())
1903     {
1904       MEDFileField1TSStructItem ret(*this);
1905       ret._type=ON_CELLS;
1906       return ret;
1907     }
1908   std::size_t sz(m.size());
1909   std::vector< MEDFileField1TSStructItem2 > items(sz);
1910   for(i=0;i<sz;i++)
1911     {
1912       const std::vector<std::size_t>& ids=m[i].second;
1913       std::vector<const MEDFileField1TSStructItem2 *>objs(ids.size());
1914       for(std::size_t j=0;j<ids.size();j++)
1915         objs[j]=&_items[ids[j]];
1916       items[i]=MEDFileField1TSStructItem2::BuildAggregationOf(objs,globs);
1917     }
1918   MEDFileField1TSStructItem ret(ON_CELLS,items);
1919   ret._computed=true;
1920   return ret;
1921 }
1922
1923 /*!
1924  * \a this is expected to be ON_CELLS and simplified.
1925  */
1926 bool MEDFileField1TSStructItem::isCompatibleWithNodesDiscr(const MEDFileField1TSStructItem& other, const MEDFileMeshStruct *meshSt, const MEDFileFieldGlobsReal *globs) const
1927 {
1928   if(other._type!=ON_NODES)
1929     throw INTERP_KERNEL::Exception("MEDFileField1TSStructItem::isCompatibleWithNodesDiscr : other must be on nodes !");
1930   if(other._items.size()!=1)
1931     throw INTERP_KERNEL::Exception("MEDFileField1TSStructItem::isCompatibleWithNodesDiscr : other is on nodes but number of subparts !");
1932   int theFirstLevFull;
1933   bool ret0=isFullyOnOneLev(meshSt,theFirstLevFull);
1934   const MEDFileField1TSStructItem2& otherNodeIt(other._items[0]);
1935   if(otherNodeIt.getPflName().empty())
1936     {//on all nodes
1937       if(!ret0)
1938         return false;
1939       return theFirstLevFull==0;
1940     }
1941   else
1942     {
1943       const DataArrayInt *pfl=globs->getProfile(otherNodeIt.getPflName().c_str());
1944       MEDCouplingAutoRefCountObjectPtr<DataArrayInt> cpyPfl(pfl->deepCpy());
1945       cpyPfl->sort();
1946       int nbOfNodes(meshSt->getNumberOfNodes());
1947       if(cpyPfl->isIdentity() && cpyPfl->getNumberOfTuples()==nbOfNodes)
1948         {//on all nodes also !
1949           if(!ret0)
1950             return false;
1951           return theFirstLevFull==0;
1952         }
1953       std::vector<bool> nodesFetched(nbOfNodes,false);
1954       meshSt->getTheMesh()->whichAreNodesFetched(*this,globs,nodesFetched);
1955       return cpyPfl->isFittingWith(nodesFetched);
1956     }
1957 }
1958
1959 bool MEDFileField1TSStructItem::isFullyOnOneLev(const MEDFileMeshStruct *meshSt, int& theFirstLevFull) const
1960 {
1961   if(_type!=ON_CELLS)
1962     throw INTERP_KERNEL::Exception("MEDFileField1TSStructItem::isFullyOnOneLev : works only for ON_CELLS discretization !");
1963   if(_items.empty())
1964     throw INTERP_KERNEL::Exception("MEDFileField1TSStructItem::isFullyOnOneLev : items vector is empty !");
1965   int nbOfLevs(meshSt->getNumberOfLevs());
1966   if(nbOfLevs==0)
1967     throw INTERP_KERNEL::Exception("MEDFileField1TSStructItem::isFullyOnOneLev : no levels in input mesh structure !");
1968   std::vector<int> levs(nbOfLevs);
1969   theFirstLevFull=1;
1970   std::set<INTERP_KERNEL::NormalizedCellType> gts;
1971   for(std::vector< MEDFileField1TSStructItem2 >::const_iterator it=_items.begin();it!=_items.end();it++)
1972     {
1973       if(!(*it).getPflName().empty())
1974         return false;
1975       INTERP_KERNEL::NormalizedCellType gt((*it).getGeo());
1976       if(gts.find(gt)!=gts.end())
1977         throw INTERP_KERNEL::Exception("MEDFileField1TSStructItem::isFullyOnOneLev : internal error !");
1978       gts.insert(gt);
1979       int pos(meshSt->getLevelOfGeoType((*it).getGeo()));
1980       levs[-pos]++;
1981     }
1982   for(int i=0;i<nbOfLevs;i++)
1983     if(meshSt->getNumberOfGeoTypesInLev(-i)==levs[i])
1984       { theFirstLevFull=-i; return true; }
1985   return false;
1986 }
1987
1988 const MEDFileField1TSStructItem2& MEDFileField1TSStructItem::operator[](std::size_t i) const throw(INTERP_KERNEL::Exception)
1989 {
1990   if(i>=_items.size())
1991     throw INTERP_KERNEL::Exception("MEDFileField1TSStructItem::operator[] : input is not in valid range !");
1992   return _items[i];
1993 }
1994
1995 std::size_t MEDFileField1TSStructItem::getHeapMemorySizeWithoutChildren() const
1996 {
1997   std::size_t ret(_items.size()*sizeof(MEDFileField1TSStructItem2));
1998   return ret;
1999 }
2000
2001 std::vector<const BigMemoryObject *> MEDFileField1TSStructItem::getDirectChildren() const
2002 {
2003   std::vector<const BigMemoryObject *> ret;
2004   for(std::vector< MEDFileField1TSStructItem2 >::const_iterator it=_items.begin();it!=_items.end();it++)
2005     ret.push_back(&(*it));
2006   return ret;
2007 }
2008
2009 MEDMeshMultiLev *MEDFileField1TSStructItem::buildFromScratchDataSetSupportOnCells(const MEDFileMeshStruct *mst, const MEDFileFieldGlobsReal *globs) const
2010 {
2011   std::size_t sz(_items.size());
2012   std::vector<INTERP_KERNEL::NormalizedCellType> a0(sz);
2013   std::vector<const DataArrayInt *> a1(sz);
2014   std::vector<int> a2(sz);
2015   std::size_t i(0);
2016   for(std::vector< MEDFileField1TSStructItem2 >::const_iterator it=_items.begin();it!=_items.end();it++,i++)
2017     {
2018       a0[i]=(*it).getGeo();
2019       a1[i]=(*it).getPfl(globs);
2020       a2[i]=mst->getNumberOfElemsOfGeoType((*it).getGeo());
2021     }
2022   return MEDMeshMultiLev::New(mst->getTheMesh(),a0,a1,a2);
2023 }
2024
2025 std::vector<INTERP_KERNEL::NormalizedCellType> MEDFileField1TSStructItem::getGeoTypes(const MEDFileMesh *m) const
2026 {
2027   std::vector<INTERP_KERNEL::NormalizedCellType> ret;
2028   if(_type==ON_NODES)
2029     {
2030       if(!_items.empty() && _items[0].getPflName().empty())
2031         {
2032           if(m)
2033             return m->getAllGeoTypes();
2034           else
2035             return ret;
2036         }
2037       else
2038         return ret;
2039     }
2040   for(std::vector< MEDFileField1TSStructItem2 >::const_iterator it=_items.begin();it!=_items.end();it++)
2041     {
2042       INTERP_KERNEL::NormalizedCellType elt((*it).getGeo());
2043       std::vector<INTERP_KERNEL::NormalizedCellType>::iterator it2(std::find(ret.begin(),ret.end(),elt));
2044       if(it2==ret.end())
2045         ret.push_back(elt);
2046     }
2047   return ret;
2048 }
2049
2050 MEDFileField1TSStructItem MEDFileField1TSStructItem::BuildItemFrom(const MEDFileAnyTypeField1TS *ref, const MEDFileMeshStruct *meshSt)
2051 {
2052   TypeOfField atype;
2053   std::vector< MEDFileField1TSStructItem2 > anItems;
2054   //
2055   std::vector< std::vector<std::string> > pfls,locs;
2056   std::vector< std::vector<TypeOfField> > typesF;
2057   std::vector<INTERP_KERNEL::NormalizedCellType> geoTypes;
2058   std::vector< std::vector<std::pair<int,int> > > strtEnds=ref->getFieldSplitedByType(std::string(),geoTypes,typesF,pfls,locs);
2059   std::size_t nbOfGeoTypes(geoTypes.size());
2060   if(nbOfGeoTypes==0)
2061     throw INTERP_KERNEL::Exception("MEDFileField1TSStruct : not null by empty ref  !");
2062   bool isFirst=true;
2063   for(std::size_t i=0;i<nbOfGeoTypes;i++)
2064     {
2065       std::size_t sz=typesF[i].size();
2066       if(strtEnds[i].size()<1 || sz<1 || pfls[i].size()<1)
2067         throw INTERP_KERNEL::Exception("MEDFileField1TSStruct : internal error #1 !");
2068       //
2069       if(isFirst)
2070         atype=typesF[i][0];
2071       isFirst=false;
2072       //
2073       for(std::size_t j=0;j<sz;j++)
2074         {
2075           if(atype==typesF[i][j])
2076             anItems.push_back(MEDFileField1TSStructItem2(geoTypes[i],strtEnds[i][j],pfls[i][j],locs[i][j]));
2077           else
2078             throw INTERP_KERNEL::Exception("MEDFileField1TSStruct : can be applied only on single spatial discretization fields ! Call SplitPerDiscretization method !");
2079         }
2080     }
2081   MEDFileField1TSStructItem ret(atype,anItems);
2082   ret.checkWithMeshStruct(meshSt,ref);
2083   return ret;
2084 }
2085
2086 //=
2087
2088 MEDFileField1TSStruct *MEDFileField1TSStruct::New(const MEDFileAnyTypeField1TS *ref, MEDFileMeshStruct *mst)
2089 {
2090   return new MEDFileField1TSStruct(ref,mst);
2091 }
2092
2093 MEDFileField1TSStruct::MEDFileField1TSStruct(const MEDFileAnyTypeField1TS *ref, MEDFileMeshStruct *mst)
2094 {
2095   _already_checked.push_back(MEDFileField1TSStructItem::BuildItemFrom(ref,mst));
2096 }
2097
2098 void MEDFileField1TSStruct::checkWithMeshStruct(MEDFileMeshStruct *mst, const MEDFileFieldGlobsReal *globs)
2099 {
2100   if(_already_checked.empty())
2101     throw INTERP_KERNEL::Exception("MEDFileField1TSStruct::checkWithMeshStruct : not correctly initialized !");
2102   _already_checked.back().checkWithMeshStruct(mst,globs);
2103 }
2104
2105 bool MEDFileField1TSStruct::isEqualConsideringThePast(const MEDFileAnyTypeField1TS *other, const MEDFileMeshStruct *mst) const
2106 {
2107   MEDFileField1TSStructItem b(MEDFileField1TSStructItem::BuildItemFrom(other,mst));
2108   for(std::vector<MEDFileField1TSStructItem>::const_iterator it=_already_checked.begin();it!=_already_checked.end();it++)
2109     {
2110       if((*it)==b)
2111         return true;
2112     }
2113   return false;
2114 }
2115
2116 /*!
2117  * Not const because \a other structure will be added to the \c _already_checked attribute in case of success.
2118  */
2119 bool MEDFileField1TSStruct::isSupportSameAs(const MEDFileAnyTypeField1TS *other, const MEDFileMeshStruct *meshSt)
2120 {
2121   if(_already_checked.empty())
2122     throw INTERP_KERNEL::Exception("MEDFileField1TSStruct::isSupportSameAs : no ref !");
2123   MEDFileField1TSStructItem b(MEDFileField1TSStructItem::BuildItemFrom(other,meshSt));
2124   if(!_already_checked[0].isEntityCell() || !b.isEntityCell())
2125     throw INTERP_KERNEL::Exception("MEDFileField1TSStruct::isSupportSameAs : only available on cell entities !");
2126   MEDFileField1TSStructItem other1(b.simplifyMeOnCellEntity(other));
2127   int found=-1,i=0;
2128   for(std::vector<MEDFileField1TSStructItem>::const_iterator it=_already_checked.begin();it!=_already_checked.end();it++,i++)
2129     if((*it).isComputed())
2130       { found=i; break; }
2131   bool ret(false);
2132   if(found==-1)
2133     {
2134       MEDFileField1TSStructItem this1(_already_checked[0].simplifyMeOnCellEntity(other));
2135       ret=this1.isCellSupportEqual(other1,other);
2136       if(ret)
2137         _already_checked.push_back(this1);
2138     }
2139   else
2140     ret=_already_checked[found].isCellSupportEqual(other1,other);
2141   if(ret)
2142     _already_checked.push_back(b);
2143   return ret;
2144 }
2145
2146 /*!
2147  * \param [in] other - a field with only one spatial discretization : ON_NODES.
2148  */
2149 bool MEDFileField1TSStruct::isCompatibleWithNodesDiscr(const MEDFileAnyTypeField1TS *other, const MEDFileMeshStruct *meshSt)
2150 {
2151   if(_already_checked.empty())
2152     throw INTERP_KERNEL::Exception("MEDFileField1TSStruct::isCompatibleWithNodesDiscr : no ref !");
2153   MEDFileField1TSStructItem other1(MEDFileField1TSStructItem::BuildItemFrom(other,meshSt));
2154   if(_already_checked[0].isEntityCell())
2155     {
2156       int found=-1,i=0;
2157       for(std::vector<MEDFileField1TSStructItem>::const_iterator it=_already_checked.begin();it!=_already_checked.end();it++,i++)
2158         if((*it).isComputed())
2159           { found=i; break; }
2160       bool ret(false);
2161       if(found==-1)
2162         {
2163           MEDFileField1TSStructItem this1(_already_checked[0].simplifyMeOnCellEntity(other));
2164           ret=this1.isCompatibleWithNodesDiscr(other1,meshSt,other);
2165           if(ret)
2166             _already_checked.push_back(this1);
2167         }
2168       else
2169         ret=_already_checked[found].isCompatibleWithNodesDiscr(other1,meshSt,other);
2170       if(ret)
2171         _already_checked.push_back(other1);
2172       return ret;
2173     }
2174   else
2175     return _already_checked[0].isNodeSupportEqual(other1,other);
2176 }
2177
2178 std::size_t MEDFileField1TSStruct::getHeapMemorySizeWithoutChildren() const
2179 {
2180   std::size_t ret(_already_checked.capacity()*sizeof(MEDFileField1TSStructItem));
2181   return ret;
2182 }
2183
2184 std::vector<const BigMemoryObject *> MEDFileField1TSStruct::getDirectChildren() const
2185 {
2186   std::vector<const BigMemoryObject *> ret;
2187   for(std::vector<MEDFileField1TSStructItem>::const_iterator it=_already_checked.begin();it!=_already_checked.end();it++)
2188     ret.push_back(&(*it));
2189   return ret;
2190 }
2191
2192 MEDMeshMultiLev *MEDFileField1TSStruct::buildFromScratchDataSetSupport(const MEDFileMeshStruct *mst, const MEDFileFieldGlobsReal *globs) const
2193 {
2194   if(_already_checked.empty())
2195     throw INTERP_KERNEL::Exception("MEDFileField1TSStruct::buildFromScratchDataSetSupport : No outline structure in this !");
2196   int pos0(-1),pos1(-1);
2197   if(presenceOfCellDiscr(pos0))
2198     {
2199       MEDCouplingAutoRefCountObjectPtr<MEDMeshMultiLev> ret(_already_checked[pos0].buildFromScratchDataSetSupportOnCells(mst,globs));
2200       if(presenceOfPartialNodeDiscr(pos1))
2201         ret->setNodeReduction(_already_checked[pos1][0].getPfl(globs));
2202       return ret.retn();
2203     }
2204   else
2205     {
2206       if(!presenceOfPartialNodeDiscr(pos1))
2207         {//we have only all nodes, no cell definition info -> all existing levels !;
2208           return MEDMeshMultiLev::New(mst->getTheMesh(),mst->getTheMesh()->getNonEmptyLevels());
2209         }
2210       else
2211         return MEDMeshMultiLev::NewOnlyOnNode(mst->getTheMesh(),_already_checked[pos1][0].getPfl(globs));
2212     }
2213 }
2214
2215 bool MEDFileField1TSStruct::isDataSetSupportFastlyEqualTo(const MEDFileField1TSStruct& other, const MEDFileFieldGlobsReal *globs) const
2216 {
2217   int b0,b1;
2218   bool a0(presenceOfCellDiscr(b0)),a1(presenceOfPartialNodeDiscr(b1));
2219   int d0,d1;
2220   bool c0(other.presenceOfCellDiscr(d0)),c1(other.presenceOfPartialNodeDiscr(d1)); 
2221   if(a0!=c0 || a1!=c1)
2222     return false;
2223   if(a0)
2224     if(!_already_checked[b0].isCellSupportEqual(other._already_checked[d0],globs))
2225       return false;
2226   if(a1)
2227     if(!_already_checked[b1].isNodeSupportEqual(other._already_checked[d1],globs))
2228       return false;
2229   return true;
2230 }
2231
2232 std::vector<INTERP_KERNEL::NormalizedCellType> MEDFileField1TSStruct::getGeoTypes(const MEDFileMesh *m) const
2233 {
2234   std::vector<INTERP_KERNEL::NormalizedCellType> ret;
2235   for(std::vector<MEDFileField1TSStructItem>::const_iterator it=_already_checked.begin();it!=_already_checked.end();it++)
2236     {
2237       std::vector<INTERP_KERNEL::NormalizedCellType> ret2((*it).getGeoTypes(m));
2238       for(std::vector<INTERP_KERNEL::NormalizedCellType>::const_iterator it2=ret2.begin();it2!=ret2.end();it2++)
2239         {
2240           if(*it2==INTERP_KERNEL::NORM_ERROR)
2241             continue;
2242           std::vector<INTERP_KERNEL::NormalizedCellType>::iterator it3(std::find(ret.begin(),ret.end(),*it2));
2243           if(it3==ret.end())
2244             ret.push_back(*it2);
2245         }
2246     }
2247   return ret;
2248 }
2249
2250 /*!
2251  * Returns true if presence in \a this of discretization ON_CELLS, ON_GAUSS_PT, ON_GAUSS_NE.
2252  * 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.
2253  */
2254 bool MEDFileField1TSStruct::presenceOfCellDiscr(int& pos) const
2255 {
2256   std::size_t refSz(std::numeric_limits<std::size_t>::max());
2257   bool ret(false);
2258   int i(0);
2259   for(std::vector<MEDFileField1TSStructItem>::const_iterator it=_already_checked.begin();it!=_already_checked.end();it++,i++)
2260     {
2261       if((*it).getType()!=ON_NODES)
2262         {
2263           ret=true;
2264           std::size_t sz((*it).getNumberOfItems());
2265           if(refSz>sz)
2266             { pos=i; refSz=sz; }
2267         }
2268     }
2269   if(refSz==0)
2270     throw INTERP_KERNEL::Exception("MEDFileField1TSStruct::presenceOfCellDiscr : an element in this on entity CELL is empty !");
2271   return ret;
2272 }
2273
2274 /*!
2275  * Returns true if presence in \a this of discretization ON_NODES.
2276  * If true is returned the pos of the first element containing the single subpart.
2277  */
2278 bool MEDFileField1TSStruct::presenceOfPartialNodeDiscr(int& pos) const
2279 {
2280   int i(0);
2281   for(std::vector<MEDFileField1TSStructItem>::const_iterator it=_already_checked.begin();it!=_already_checked.end();it++,i++)
2282     {
2283       if((*it).getType()==ON_NODES)
2284         {
2285           std::size_t sz((*it).getNumberOfItems());
2286           if(sz==1)
2287             {
2288               if(!(*it)[0].getPflName().empty())
2289                 { pos=i; return true; }
2290             }
2291           else
2292             throw INTERP_KERNEL::Exception("MEDFileField1TSStruct::presenceOfPartialNodeDiscr : an element in this on entity NODE is split into several parts !");
2293         }
2294     }
2295   return false;
2296 }
2297
2298 //=
2299
2300 MEDFileFastCellSupportComparator *MEDFileFastCellSupportComparator::New(const MEDFileMeshStruct *m, const MEDFileAnyTypeFieldMultiTS *ref)
2301 {
2302   return new MEDFileFastCellSupportComparator(m,ref);
2303 }
2304
2305 MEDFileFastCellSupportComparator::MEDFileFastCellSupportComparator(const MEDFileMeshStruct *m, const MEDFileAnyTypeFieldMultiTS *ref)
2306 {
2307   if(!m)
2308     throw INTERP_KERNEL::Exception("MEDFileFastCellSupportComparator constructor : null input mesh struct !");
2309   _mesh_comp=const_cast<MEDFileMeshStruct *>(m); _mesh_comp->incrRef();
2310   int nbPts=ref->getNumberOfTS();
2311   _f1ts_cmps.resize(nbPts);
2312   for(int i=0;i<nbPts;i++)
2313     {
2314       MEDCouplingAutoRefCountObjectPtr<MEDFileAnyTypeField1TS> elt=ref->getTimeStepAtPos(i);
2315       _f1ts_cmps[i]=MEDFileField1TSStruct::New(elt,_mesh_comp);
2316       _f1ts_cmps[i]->checkWithMeshStruct(_mesh_comp,elt);
2317     }
2318 }
2319
2320 std::size_t MEDFileFastCellSupportComparator::getHeapMemorySizeWithoutChildren() const
2321 {
2322   std::size_t ret(_f1ts_cmps.capacity()*sizeof(MEDCouplingAutoRefCountObjectPtr<MEDFileField1TSStruct>));
2323   return ret;
2324 }
2325
2326 std::vector<const BigMemoryObject *> MEDFileFastCellSupportComparator::getDirectChildren() const
2327 {
2328   std::vector<const BigMemoryObject *> ret;
2329   const MEDFileMeshStruct *mst(_mesh_comp);
2330   if(mst)
2331     ret.push_back(mst);
2332   for(std::vector< MEDCouplingAutoRefCountObjectPtr<MEDFileField1TSStruct> >::const_iterator it=_f1ts_cmps.begin();it!=_f1ts_cmps.end();it++)
2333     {
2334       const MEDFileField1TSStruct *cur(*it);
2335       if(cur)
2336         ret.push_back(cur);
2337     }
2338   return ret;
2339 }
2340
2341 bool MEDFileFastCellSupportComparator::isEqual(const MEDFileAnyTypeFieldMultiTS *other)
2342 {
2343   int nbPts=other->getNumberOfTS();
2344   if(nbPts!=(int)_f1ts_cmps.size())
2345     {
2346       std::ostringstream oss; oss << "MEDFileFastCellSupportComparator::isEqual : unexpected nb of time steps in  input ! Should be " << _f1ts_cmps.size() << " it is in reality " << nbPts << " !";
2347       throw INTERP_KERNEL::Exception(oss.str().c_str());
2348     }
2349   for(int i=0;i<nbPts;i++)
2350     {
2351       MEDCouplingAutoRefCountObjectPtr<MEDFileAnyTypeField1TS> elt=other->getTimeStepAtPos(i);
2352       if(!_f1ts_cmps[i]->isEqualConsideringThePast(elt,_mesh_comp))
2353         if(!_f1ts_cmps[i]->isSupportSameAs(elt,_mesh_comp))
2354           return false;
2355     }
2356   return true;
2357 }
2358
2359 bool MEDFileFastCellSupportComparator::isCompatibleWithNodesDiscr(const MEDFileAnyTypeFieldMultiTS *other)
2360 {
2361   int nbPts=other->getNumberOfTS();
2362   if(nbPts!=(int)_f1ts_cmps.size())
2363     {
2364       std::ostringstream oss; oss << "MEDFileFastCellSupportComparator::isCompatibleWithNodesDiscr : unexpected nb of time steps in  input ! Should be " << _f1ts_cmps.size() << " it is in reality " << nbPts << " !";
2365       throw INTERP_KERNEL::Exception(oss.str().c_str());
2366     }
2367   for(int i=0;i<nbPts;i++)
2368     {
2369       MEDCouplingAutoRefCountObjectPtr<MEDFileAnyTypeField1TS> elt=other->getTimeStepAtPos(i);
2370       if(!_f1ts_cmps[i]->isCompatibleWithNodesDiscr(elt,_mesh_comp))
2371         return false;
2372     }
2373   return true;
2374 }
2375
2376 MEDMeshMultiLev *MEDFileFastCellSupportComparator::buildFromScratchDataSetSupport(int timeStepId, const MEDFileFieldGlobsReal *globs) const
2377 {
2378   if(timeStepId<0 || timeStepId>=(int)_f1ts_cmps.size())
2379     {
2380       std::ostringstream oss; oss << "MEDFileFastCellSupportComparator::buildFromScratchDataSetSupport : requested time step id #" << timeStepId << " is not in [0," << _f1ts_cmps.size() << ") !";
2381       throw INTERP_KERNEL::Exception(oss.str().c_str());
2382     }
2383   const MEDFileField1TSStruct *obj(_f1ts_cmps[timeStepId]);
2384   if(!obj)
2385     {
2386       std::ostringstream oss; oss << "MEDFileFastCellSupportComparator::buildFromScratchDataSetSupport : at time step id #" << timeStepId << " no field structure overview defined !";
2387       throw INTERP_KERNEL::Exception(oss.str().c_str());
2388     }
2389   return obj->buildFromScratchDataSetSupport(_mesh_comp,globs);
2390 }
2391
2392 bool MEDFileFastCellSupportComparator::isDataSetSupportEqualToThePreviousOne(int timeStepId, const MEDFileFieldGlobsReal *globs) const
2393 {
2394   if(timeStepId<=0 || timeStepId>=(int)_f1ts_cmps.size())
2395     {
2396       std::ostringstream oss; oss << "MEDFileFastCellSupportComparator::isDataSetSupportEqualToThePreviousOne : requested time step id #" << timeStepId << " is not in [1," << _f1ts_cmps.size() << ") !";
2397       throw INTERP_KERNEL::Exception(oss.str().c_str());
2398     }
2399   const MEDFileField1TSStruct *obj(_f1ts_cmps[timeStepId]);
2400   const MEDFileField1TSStruct *objRef(_f1ts_cmps[timeStepId-1]);
2401   return objRef->isDataSetSupportFastlyEqualTo(*obj,globs);
2402 }
2403
2404 int MEDFileFastCellSupportComparator::getNumberOfTS() const
2405 {
2406   return _f1ts_cmps.size();
2407 }
2408
2409 std::vector<INTERP_KERNEL::NormalizedCellType> MEDFileFastCellSupportComparator::getGeoTypesAt(int timeStepId, const MEDFileMesh *m) const
2410 {
2411   if(timeStepId<0 || timeStepId>=(int)_f1ts_cmps.size())
2412     {
2413       std::ostringstream oss; oss << "MEDFileFastCellSupportComparator::getGeoTypesAt : requested time step id #" << timeStepId << " is not in [0," << _f1ts_cmps.size() << ") !";
2414       throw INTERP_KERNEL::Exception(oss.str().c_str());
2415     }
2416   const MEDFileField1TSStruct *elt(_f1ts_cmps[timeStepId]);
2417   if(!elt)
2418     {
2419       std::ostringstream oss; oss << "MEDFileFastCellSupportComparator::getGeoTypesAt : requested time step id #" << timeStepId << " points to a NULL pointer !";
2420       throw INTERP_KERNEL::Exception(oss.str().c_str());
2421     }
2422   return elt->getGeoTypes(m);
2423 }