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