Salome HOME
lack of display of geo types in the tree in new MEDReader. Add methods for informatio...
[modules/med.git] / src / MEDLoader / Swig / MEDLoaderCommon.i
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 %module MEDLoader
22
23 #define MEDCOUPLING_EXPORT
24 #define MEDLOADER_EXPORT
25
26 %include "MEDCouplingCommon.i"
27
28 %{
29 #include "MEDLoader.hxx"
30 #include "MEDFileMesh.hxx"
31 #include "MEDFileField.hxx"
32 #include "MEDFileParameter.hxx"
33 #include "MEDFileData.hxx"
34 #include "MEDFileMeshReadSelector.hxx"
35 #include "MEDFileFieldOverView.hxx"
36 #include "MEDLoaderTypemaps.i"
37 #include "SauvReader.hxx"
38 #include "SauvWriter.hxx"
39
40 using namespace ParaMEDMEM;
41 %}
42
43 #if SWIG_VERSION >= 0x010329
44 %template()  std::vector<std::string>;
45 #endif
46
47 %typemap(out) ParaMEDMEM::MEDFileMesh*
48 {
49   $result=convertMEDFileMesh($1,$owner);
50 }
51
52 %typemap(out) ParaMEDMEM::MEDFileParameter1TS*
53 {
54   $result=convertMEDFileParameter1TS($1,$owner);
55 }
56
57 %typemap(out) ParaMEDMEM::MEDFileAnyTypeFieldMultiTS*
58 {
59   $result=convertMEDFileFieldMultiTS($1,$owner);
60 }
61
62 %typemap(out) ParaMEDMEM::MEDFileAnyTypeField1TS*
63 {
64   $result=convertMEDFileField1TS($1,$owner);
65 }
66
67 %typemap(out) ParaMEDMEM::MEDMeshMultiLev*
68 {
69   $result=convertMEDMeshMultiLev($1,$owner);
70 }
71
72 %newobject MEDLoader::ReadUMeshFromFamilies;
73 %newobject MEDLoader::ReadUMeshFromGroups;
74 %newobject MEDLoader::ReadUMeshFromFile;
75 %newobject MEDLoader::ReadMeshFromFile;
76 %newobject MEDLoader::ReadField;
77 %newobject MEDLoader::ReadFieldCell;
78 %newobject MEDLoader::ReadFieldNode;
79 %newobject MEDLoader::ReadFieldGauss;
80 %newobject MEDLoader::ReadFieldGaussNE;
81 %newobject ParaMEDMEM::MEDFileMesh::New;
82 %newobject ParaMEDMEM::MEDFileMesh::createNewEmpty;
83 %newobject ParaMEDMEM::MEDFileMesh::deepCpy;
84 %newobject ParaMEDMEM::MEDFileMesh::shallowCpy;
85 %newobject ParaMEDMEM::MEDFileMesh::getGenMeshAtLevel;
86 %newobject ParaMEDMEM::MEDFileMesh::getGroupArr;
87 %newobject ParaMEDMEM::MEDFileMesh::getGroupsArr;
88 %newobject ParaMEDMEM::MEDFileMesh::getFamilyArr;
89 %newobject ParaMEDMEM::MEDFileMesh::getFamiliesArr;
90 %newobject ParaMEDMEM::MEDFileMesh::getNodeGroupArr;
91 %newobject ParaMEDMEM::MEDFileMesh::getNodeGroupsArr;
92 %newobject ParaMEDMEM::MEDFileMesh::getNodeFamilyArr;
93 %newobject ParaMEDMEM::MEDFileMesh::getNodeFamiliesArr;
94 %newobject ParaMEDMEM::MEDFileMesh::getAllFamiliesIdsReferenced;
95 %newobject ParaMEDMEM::MEDFileMesh::computeAllFamilyIdsInUse;
96 %newobject ParaMEDMEM::MEDFileUMesh::New;
97 %newobject ParaMEDMEM::MEDFileUMesh::getCoords;
98 %newobject ParaMEDMEM::MEDFileUMesh::getGroup;
99 %newobject ParaMEDMEM::MEDFileUMesh::getGroups;
100 %newobject ParaMEDMEM::MEDFileUMesh::getFamily;
101 %newobject ParaMEDMEM::MEDFileUMesh::getFamilies;
102 %newobject ParaMEDMEM::MEDFileUMesh::getMeshAtLevel;
103 %newobject ParaMEDMEM::MEDFileUMesh::getLevel0Mesh;
104 %newobject ParaMEDMEM::MEDFileUMesh::getLevelM1Mesh;
105 %newobject ParaMEDMEM::MEDFileUMesh::getLevelM2Mesh;
106 %newobject ParaMEDMEM::MEDFileUMesh::getLevelM3Mesh;
107 %newobject ParaMEDMEM::MEDFileUMesh::getDirectUndergroundSingleGeoTypeMesh;
108 %newobject ParaMEDMEM::MEDFileUMesh::extractFamilyFieldOnGeoType;
109 %newobject ParaMEDMEM::MEDFileUMesh::extractNumberFieldOnGeoType;
110 %newobject ParaMEDMEM::MEDFileUMesh::zipCoords;
111 %newobject ParaMEDMEM::MEDFileCMesh::New;
112 %newobject ParaMEDMEM::MEDFileCurveLinearMesh::New;
113 %newobject ParaMEDMEM::MEDFileMeshMultiTS::New;
114 %newobject ParaMEDMEM::MEDFileMeshMultiTS::deepCpy;
115 %newobject ParaMEDMEM::MEDFileMeshMultiTS::getOneTimeStep;
116 %newobject ParaMEDMEM::MEDFileMeshes::New;
117 %newobject ParaMEDMEM::MEDFileMeshes::deepCpy;
118 %newobject ParaMEDMEM::MEDFileMeshes::getMeshAtPos;
119 %newobject ParaMEDMEM::MEDFileMeshes::getMeshWithName;
120 %newobject ParaMEDMEM::MEDFileMeshes::__getitem__;
121 %newobject ParaMEDMEM::MEDFileMeshes::__iter__;
122
123 %newobject ParaMEDMEM::MEDFileFields::New;
124 %newobject ParaMEDMEM::MEDFileFields::deepCpy;
125 %newobject ParaMEDMEM::MEDFileFields::shallowCpy;
126 %newobject ParaMEDMEM::MEDFileFields::getFieldWithName;
127 %newobject ParaMEDMEM::MEDFileFields::getFieldAtPos;
128 %newobject ParaMEDMEM::MEDFileFields::partOfThisLyingOnSpecifiedMeshName;
129 %newobject ParaMEDMEM::MEDFileFields::partOfThisLyingOnSpecifiedTimeSteps;
130 %newobject ParaMEDMEM::MEDFileFields::partOfThisNotLyingOnSpecifiedTimeSteps;
131 %newobject ParaMEDMEM::MEDFileFields::__iter__;
132
133 %newobject ParaMEDMEM::MEDFileAnyTypeFieldMultiTS::New;
134 %newobject ParaMEDMEM::MEDFileAnyTypeFieldMultiTS::deepCpy;
135 %newobject ParaMEDMEM::MEDFileAnyTypeFieldMultiTS::shallowCpy;
136 %newobject ParaMEDMEM::MEDFileAnyTypeFieldMultiTS::getTimeStepAtPos;
137 %newobject ParaMEDMEM::MEDFileAnyTypeFieldMultiTS::getTimeStep;
138 %newobject ParaMEDMEM::MEDFileAnyTypeFieldMultiTS::getTimeStepGivenTime;
139 %newobject ParaMEDMEM::MEDFileAnyTypeFieldMultiTS::__iter__;
140 %newobject ParaMEDMEM::MEDFileFieldMultiTS::New;
141 %newobject ParaMEDMEM::MEDFileFieldMultiTS::getFieldAtLevel;
142 %newobject ParaMEDMEM::MEDFileFieldMultiTS::getFieldAtTopLevel;
143 %newobject ParaMEDMEM::MEDFileFieldMultiTS::getFieldOnMeshAtLevel;
144 %newobject ParaMEDMEM::MEDFileFieldMultiTS::getFieldAtLevelOld;
145 %newobject ParaMEDMEM::MEDFileFieldMultiTS::getUndergroundDataArray;
146 %newobject ParaMEDMEM::MEDFileFieldMultiTS::convertToInt;
147 %newobject ParaMEDMEM::MEDFileIntFieldMultiTS::New;
148 %newobject ParaMEDMEM::MEDFileIntFieldMultiTS::getUndergroundDataArray;
149 %newobject ParaMEDMEM::MEDFileIntFieldMultiTS::convertToDouble;
150
151 %newobject ParaMEDMEM::MEDFileAnyTypeField1TS::New;
152 %newobject ParaMEDMEM::MEDFileAnyTypeField1TS::shallowCpy;
153 %newobject ParaMEDMEM::MEDFileAnyTypeField1TS::deepCpy;
154 %newobject ParaMEDMEM::MEDFileField1TS::New;
155 %newobject ParaMEDMEM::MEDFileField1TS::getFieldAtLevel;
156 %newobject ParaMEDMEM::MEDFileField1TS::getFieldAtTopLevel;
157 %newobject ParaMEDMEM::MEDFileField1TS::getFieldOnMeshAtLevel;
158 %newobject ParaMEDMEM::MEDFileField1TS::getFieldAtLevelOld;
159 %newobject ParaMEDMEM::MEDFileField1TS::getUndergroundDataArray;
160 %newobject ParaMEDMEM::MEDFileField1TS::convertToInt;
161 %newobject ParaMEDMEM::MEDFileIntField1TS::New;
162 %newobject ParaMEDMEM::MEDFileIntField1TS::getUndergroundDataArray;
163 %newobject ParaMEDMEM::MEDFileIntField1TS::convertToDouble;
164
165 %newobject ParaMEDMEM::MEDFileData::New;
166 %newobject ParaMEDMEM::MEDFileData::deepCpy;
167 %newobject ParaMEDMEM::MEDFileData::getMeshes;
168 %newobject ParaMEDMEM::MEDFileData::getFields;
169 %newobject ParaMEDMEM::MEDFileData::getParams;
170
171 %newobject ParaMEDMEM::MEDFileParameterDouble1TS::New;
172 %newobject ParaMEDMEM::MEDFileParameterDouble1TS::deepCpy;
173 %newobject ParaMEDMEM::MEDFileParameterMultiTS::New;
174 %newobject ParaMEDMEM::MEDFileParameterMultiTS::deepCpy;
175 %newobject ParaMEDMEM::MEDFileParameterMultiTS::getTimeStepAtPos;
176 %newobject ParaMEDMEM::MEDFileParameterMultiTS::__getitem__;
177 %newobject ParaMEDMEM::MEDFileParameters::New;
178 %newobject ParaMEDMEM::MEDFileParameters::deepCpy;
179 %newobject ParaMEDMEM::MEDFileParameters::getParamAtPos;
180 %newobject ParaMEDMEM::MEDFileParameters::getParamWithName;
181 %newobject ParaMEDMEM::MEDFileParameters::__getitem__;
182
183 %newobject ParaMEDMEM::SauvWriter::New;
184 %newobject ParaMEDMEM::SauvReader::New;
185 %newobject ParaMEDMEM::SauvReader::loadInMEDFileDS;
186
187 %newobject ParaMEDMEM::MEDFileMeshStruct::New;
188 %newobject ParaMEDMEM::MEDMeshMultiLev::prepare;
189 %newobject ParaMEDMEM::MEDMeshMultiLev::buildDataArray;
190 %newobject ParaMEDMEM::MEDFileFastCellSupportComparator::New;
191 %newobject ParaMEDMEM::MEDFileFastCellSupportComparator::buildFromScratchDataSetSupport;
192
193 %feature("unref") MEDFileMesh "$this->decrRef();"
194 %feature("unref") MEDFileUMesh "$this->decrRef();"
195 %feature("unref") MEDFileCMesh "$this->decrRef();"
196 %feature("unref") MEDFileMeshMultiTS "$this->decrRef();"
197 %feature("unref") MEDFileMeshes "$this->decrRef();"
198 %feature("unref") MEDFileFieldLoc "$this->decrRef();"
199 %feature("unref") MEDFileAnyTypeField1TS "$this->decrRef();"
200 %feature("unref") MEDFileField1TS "$this->decrRef();"
201 %feature("unref") MEDFileIntField1TS "$this->decrRef();"
202 %feature("unref") MEDFileAnyTypeFieldMultiTS "$this->decrRef();"
203 %feature("unref") MEDFileFieldMultiTS "$this->decrRef();"
204 %feature("unref") MEDFileIntFieldMultiTS "$this->decrRef();"
205 %feature("unref") MEDFileFields "$this->decrRef();"
206 %feature("unref") MEDFileParameter1TS "$this->decrRef();"
207 %feature("unref") MEDFileParameterDouble1TSWTI "$this->decrRef();"
208 %feature("unref") MEDFileParameterDouble1TS "$this->decrRef();"
209 %feature("unref") MEDFileParameterMultiTS "$this->decrRef();"
210 %feature("unref") MEDFileParameters "$this->decrRef();"
211 %feature("unref") MEDFileData "$this->decrRef();"
212 %feature("unref") SauvReader "$this->decrRef();"
213 %feature("unref") SauvWriter "$this->decrRef();"
214 %feature("unref") MEDFileFastCellSupportComparator "$this->decrRef();"
215 %feature("unref") MEDMeshMultiLev "$this->decrRef();"
216 %feature("unref") MEDUMeshMultiLev "$this->decrRef();"
217 %feature("unref") MEDCMeshMultiLev "$this->decrRef();"
218 %feature("unref") MEDCurveLinearMeshMultiLev "$this->decrRef();"
219 %feature("unref") MEDFileMeshStruct "$this->decrRef();"
220
221 class MEDLoader
222 {
223 public:
224   static bool HasXDR();
225   static std::string MEDFileVersionStr();
226   static void SetEpsilonForNodeComp(double val) throw(INTERP_KERNEL::Exception);
227   static void SetCompPolicyForCell(int val) throw(INTERP_KERNEL::Exception);
228   static void SetTooLongStrPolicy(int val) throw(INTERP_KERNEL::Exception);
229   static void CheckFileForRead(const std::string& fileName) throw(INTERP_KERNEL::Exception);
230   static std::vector<std::string> GetMeshNames(const std::string& fileName) throw(INTERP_KERNEL::Exception);
231   static std::vector<std::string> GetMeshNamesOnField(const std::string& fileName, const std::string& fieldName) throw(INTERP_KERNEL::Exception);
232   static std::vector<std::string> GetMeshGroupsNames(const std::string& fileName, const std::string& meshName) throw(INTERP_KERNEL::Exception);
233   static std::vector<std::string> GetMeshFamiliesNames(const std::string& fileName, const std::string& meshName) throw(INTERP_KERNEL::Exception);
234   static std::vector<std::string> GetMeshFamiliesNamesOnGroup(const std::string& fileName, const std::string& meshName, const std::string& grpName) throw(INTERP_KERNEL::Exception);
235   static std::vector<std::string> GetMeshGroupsNamesOnFamily(const std::string& fileName, const std::string& meshName, const std::string& famName) throw(INTERP_KERNEL::Exception);
236   static std::vector<std::string> GetAllFieldNamesOnMesh(const std::string& fileName, const std::string& meshName) throw(INTERP_KERNEL::Exception);
237   static std::vector<std::string> GetAllFieldNames(const std::string& fileName) throw(INTERP_KERNEL::Exception);
238   static std::vector<std::string> GetFieldNamesOnMesh(ParaMEDMEM::TypeOfField type, const std::string& fileName, const std::string& meshName) throw(INTERP_KERNEL::Exception);
239   static std::vector<std::string> GetCellFieldNamesOnMesh(const std::string& fileName, const std::string& meshName) throw(INTERP_KERNEL::Exception);
240   static std::vector<std::string> GetNodeFieldNamesOnMesh(const std::string& fileName, const std::string& meshName) throw(INTERP_KERNEL::Exception);
241   static double GetTimeAttachedOnFieldIteration(const std::string& fileName, const std::string& fieldName, int iteration, int order) throw(INTERP_KERNEL::Exception);
242   static void AssignStaticWritePropertiesTo(ParaMEDMEM::MEDFileWritable& obj) throw(INTERP_KERNEL::Exception);
243   %extend
244      {
245        static PyObject *MEDFileVersion()
246        {
247          int major,minor,release;
248          MEDLoader::MEDFileVersion(major,minor,release);
249          PyObject *ret(PyTuple_New(3));
250          PyTuple_SetItem(ret,0,SWIG_From_int(major));
251          PyTuple_SetItem(ret,1,SWIG_From_int(minor));
252          PyTuple_SetItem(ret,2,SWIG_From_int(release));
253          return ret;
254        }
255
256        static PyObject *GetFieldIterations(ParaMEDMEM::TypeOfField type, const std::string& fileName, const std::string& meshName, const std::string& fieldName) throw(INTERP_KERNEL::Exception)
257        {
258          std::vector< std::pair<int,int> > res=MEDLoader::GetFieldIterations(type,fileName,meshName,fieldName);
259          PyObject *ret=PyList_New(res.size());
260          int rk=0;
261          for(std::vector< std::pair<int,int> >::const_iterator iter=res.begin();iter!=res.end();iter++,rk++)
262            {
263              PyObject *elt=PyTuple_New(2);
264              PyTuple_SetItem(elt,0,SWIG_From_int((*iter).first));
265              PyTuple_SetItem(elt,1,SWIG_From_int((*iter).second));
266              PyList_SetItem(ret,rk,elt);
267            }
268          return ret;
269        }
270
271        static PyObject *GetAllFieldIterations(const std::string& fileName, const std::string& fieldName) throw(INTERP_KERNEL::Exception)
272        {
273          std::vector< std::pair< std::pair<int,int>, double> > res=MEDLoader::GetAllFieldIterations(fileName,fieldName);
274          PyObject *ret=PyList_New(res.size());
275          int rk=0;
276          for(std::vector< std::pair< std::pair<int,int>, double> >::const_iterator iter=res.begin();iter!=res.end();iter++,rk++)
277            {
278              PyObject *elt=PyTuple_New(3);
279              PyTuple_SetItem(elt,0,SWIG_From_int((*iter).first.first));
280              PyTuple_SetItem(elt,1,SWIG_From_int((*iter).first.second));
281              PyTuple_SetItem(elt,2,SWIG_From_double((*iter).second));
282              PyList_SetItem(ret,rk,elt);
283            }
284          return ret;
285        }
286
287        static PyObject *GetCellFieldIterations(const std::string& fileName, const std::string& meshName, const std::string& fieldName) throw(INTERP_KERNEL::Exception)
288        {
289          std::vector< std::pair<int,int> > res=MEDLoader::GetCellFieldIterations(fileName,meshName,fieldName);
290          PyObject *ret=PyList_New(res.size());
291          int rk=0;
292          for(std::vector< std::pair<int,int> >::const_iterator iter=res.begin();iter!=res.end();iter++,rk++)
293            {
294              PyObject *elt=PyTuple_New(2);
295              PyTuple_SetItem(elt,0,SWIG_From_int((*iter).first));
296              PyTuple_SetItem(elt,1,SWIG_From_int((*iter).second));
297              PyList_SetItem(ret,rk,elt);
298            }
299          return ret;
300        }
301        static PyObject *GetNodeFieldIterations(const std::string& fileName, const std::string& meshName, const std::string& fieldName) throw(INTERP_KERNEL::Exception)
302        {
303          std::vector< std::pair<int,int> > res=MEDLoader::GetNodeFieldIterations(fileName,meshName,fieldName);
304          PyObject *ret=PyList_New(res.size());
305          int rk=0;
306          for(std::vector< std::pair<int,int> >::const_iterator iter=res.begin();iter!=res.end();iter++,rk++)
307            {
308              PyObject *elt=PyTuple_New(2);
309              PyTuple_SetItem(elt,0,SWIG_From_int((*iter).first));
310              PyTuple_SetItem(elt,1,SWIG_From_int((*iter).second));
311              PyList_SetItem(ret,rk,elt);
312            }
313          return ret;
314        }
315        static PyObject *GetComponentsNamesOfField(const std::string& fileName, const std::string& fieldName) throw(INTERP_KERNEL::Exception)
316        {
317          std::vector< std::pair<std::string,std::string> > res=MEDLoader::GetComponentsNamesOfField(fileName,fieldName);
318          PyObject *ret=PyList_New(res.size());
319          int rk=0;
320          for(std::vector< std::pair<std::string,std::string> >::const_iterator iter=res.begin();iter!=res.end();iter++,rk++)
321            {
322              PyObject *elt=PyTuple_New(2);
323              PyTuple_SetItem(elt,0,PyString_FromString((*iter).first.c_str()));
324              PyTuple_SetItem(elt,1,PyString_FromString((*iter).second.c_str()));
325              PyList_SetItem(ret,rk,elt);
326            }
327          return ret;
328        }
329        static PyObject *GetUMeshGlobalInfo(const std::string& fileName, const std::string& meshName) throw(INTERP_KERNEL::Exception)
330        {
331          int meshDim,spaceDim,numberOfNodes;
332          std::vector< std::vector< std::pair<INTERP_KERNEL::NormalizedCellType,int> > > res=MEDLoader::GetUMeshGlobalInfo(fileName,meshName,meshDim,spaceDim,numberOfNodes);
333          PyObject *ret=PyTuple_New(4);
334          PyObject *elt0=PyList_New(res.size());
335          int i=0;
336          for(std::vector< std::vector< std::pair<INTERP_KERNEL::NormalizedCellType,int> > >::const_iterator it=res.begin();it!=res.end();it++,i++)
337            {
338              const std::vector< std::pair<INTERP_KERNEL::NormalizedCellType,int> >&obj2=(*it);
339              int j=0;
340              PyObject *elt1=PyList_New(obj2.size());
341              for(std::vector< std::pair<INTERP_KERNEL::NormalizedCellType,int> >::const_iterator it2=obj2.begin();it2!=obj2.end();it2++,j++)
342                {
343                  PyObject *elt2=PyTuple_New(2);
344                  PyTuple_SetItem(elt2,0,SWIG_From_int((int)(*it2).first));
345                  PyTuple_SetItem(elt2,1,SWIG_From_int((*it2).second));
346                  PyList_SetItem(elt1,j,elt2);
347                }
348              PyList_SetItem(elt0,i,elt1);
349            }
350          PyTuple_SetItem(ret,0,elt0);
351          PyTuple_SetItem(ret,1,SWIG_From_int(meshDim));
352          PyTuple_SetItem(ret,2,SWIG_From_int(spaceDim));
353          PyTuple_SetItem(ret,3,SWIG_From_int(numberOfNodes));
354          return ret;
355        }
356        static PyObject *ReadFieldsOnSameMesh(ParaMEDMEM::TypeOfField type, const std::string& fileName, const std::string& meshName, int meshDimRelToMax,
357                                              const std::string& fieldName, PyObject *liIts) throw(INTERP_KERNEL::Exception)
358        {
359          std::vector<std::pair<int,int> > its=convertTimePairIdsFromPy(liIts);
360          std::vector<ParaMEDMEM::MEDCouplingFieldDouble *> res=MEDLoader::ReadFieldsOnSameMesh(type,fileName,meshName,meshDimRelToMax,fieldName,its);
361          return convertFieldDoubleVecToPy(res);
362        }
363        static void WriteUMeshesPartition(const std::string& fileName, const std::string& meshName, PyObject *li, bool writeFromScratch) throw(INTERP_KERNEL::Exception)
364        {
365          std::vector<const ParaMEDMEM::MEDCouplingUMesh *> v;
366          convertFromPyObjVectorOfObj<const ParaMEDMEM::MEDCouplingUMesh *>(li,SWIGTYPE_p_ParaMEDMEM__MEDCouplingUMesh,"MEDCouplingUMesh",v);
367          MEDLoader::WriteUMeshesPartition(fileName,meshName,v,writeFromScratch);
368        }
369        static void WriteUMeshesPartitionDep(const std::string& fileName, const std::string& meshName, PyObject *li, bool writeFromScratch) throw(INTERP_KERNEL::Exception)
370        {
371          std::vector<const ParaMEDMEM::MEDCouplingUMesh *> v;
372          convertFromPyObjVectorOfObj<const ParaMEDMEM::MEDCouplingUMesh *>(li,SWIGTYPE_p_ParaMEDMEM__MEDCouplingUMesh,"MEDCouplingUMesh",v);
373          MEDLoader::WriteUMeshesPartitionDep(fileName,meshName,v,writeFromScratch);
374        }
375        static void WriteUMeshes(const std::string& fileName, PyObject *li, bool writeFromScratch) throw(INTERP_KERNEL::Exception)
376        {
377          std::vector<const ParaMEDMEM::MEDCouplingUMesh *> v;
378          convertFromPyObjVectorOfObj<const ParaMEDMEM::MEDCouplingUMesh *>(li,SWIGTYPE_p_ParaMEDMEM__MEDCouplingUMesh,"MEDCouplingUMesh",v);
379          MEDLoader::WriteUMeshes(fileName,v,writeFromScratch);
380        }
381        static PyObject *GetTypesOfField(const std::string& fileName, const std::string& meshName, const std::string& fieldName) throw(INTERP_KERNEL::Exception)
382        {
383          std::vector< ParaMEDMEM::TypeOfField > v=MEDLoader::GetTypesOfField(fileName,meshName,fieldName);
384          int size=v.size();
385          PyObject *ret=PyList_New(size);
386          for(int i=0;i<size;i++)
387            PyList_SetItem(ret,i,PyInt_FromLong((int)v[i]));
388          return ret;
389        }
390        static ParaMEDMEM::MEDCouplingUMesh *ReadUMeshFromGroups(const std::string& fileName, const std::string& meshName, int meshDimRelToMax, PyObject *li) throw(INTERP_KERNEL::Exception)
391        {
392          std::vector<std::string> grps;
393          converPyListToVecString(li,grps);
394          return MEDLoader::ReadUMeshFromGroups(fileName,meshName,meshDimRelToMax,grps);
395        }
396        static ParaMEDMEM::MEDCouplingUMesh *ReadUMeshFromFamilies(const std::string& fileName, const std::string& meshName, int meshDimRelToMax, PyObject *li) throw(INTERP_KERNEL::Exception)
397        {
398          std::vector<std::string> fams;
399          converPyListToVecString(li,fams);
400          return MEDLoader::ReadUMeshFromFamilies(fileName,meshName,meshDimRelToMax,fams);
401        }
402      }
403   static ParaMEDMEM::MEDCouplingMesh *ReadMeshFromFile(const std::string& fileName, const std::string& meshName, int meshDimRelToMax=0) throw(INTERP_KERNEL::Exception);
404   static ParaMEDMEM::MEDCouplingMesh *ReadMeshFromFile(const std::string& fileName, int meshDimRelToMax=0) throw(INTERP_KERNEL::Exception);
405   static ParaMEDMEM::MEDCouplingUMesh *ReadUMeshFromFile(const std::string& fileName, const std::string& meshName, int meshDimRelToMax=0) throw(INTERP_KERNEL::Exception);
406   static ParaMEDMEM::MEDCouplingUMesh *ReadUMeshFromFile(const std::string& fileName, int meshDimRelToMax=0) throw(INTERP_KERNEL::Exception);
407   static int ReadUMeshDimFromFile(const std::string& fileName, const std::string& meshName) throw(INTERP_KERNEL::Exception);
408   static ParaMEDMEM::MEDCouplingFieldDouble *ReadField(ParaMEDMEM::TypeOfField type, const std::string& fileName, const std::string& meshName, int meshDimRelToMax, const std::string& fieldName, int iteration, int order) throw(INTERP_KERNEL::Exception);
409   static ParaMEDMEM::MEDCouplingFieldDouble *ReadFieldCell(const std::string& fileName, const std::string& meshName, int meshDimRelToMax, const std::string& fieldName, int iteration, int order) throw(INTERP_KERNEL::Exception);
410   static ParaMEDMEM::MEDCouplingFieldDouble *ReadFieldNode(const std::string& fileName, const std::string& meshName, int meshDimRelToMax, const std::string& fieldName, int iteration, int order) throw(INTERP_KERNEL::Exception);
411   static ParaMEDMEM::MEDCouplingFieldDouble *ReadFieldGauss(const std::string& fileName, const std::string& meshName, int meshDimRelToMax, const std::string& fieldName, int iteration, int order) throw(INTERP_KERNEL::Exception);
412   static ParaMEDMEM::MEDCouplingFieldDouble *ReadFieldGaussNE(const std::string& fileName, const std::string& meshName, int meshDimRelToMax, const std::string& fieldName, int iteration, int order) throw(INTERP_KERNEL::Exception);
413   static void WriteMesh(const std::string& fileName, const ParaMEDMEM::MEDCouplingMesh *mesh, bool writeFromScratch) throw(INTERP_KERNEL::Exception);
414   static void WriteUMesh(const std::string& fileName, const ParaMEDMEM::MEDCouplingUMesh *mesh, bool writeFromScratch) throw(INTERP_KERNEL::Exception);
415   static void WriteUMeshDep(const std::string& fileName, const ParaMEDMEM::MEDCouplingUMesh *mesh, bool writeFromScratch) throw(INTERP_KERNEL::Exception);
416   static void WriteField(const std::string& fileName, const ParaMEDMEM::MEDCouplingFieldDouble *f, bool writeFromScratch) throw(INTERP_KERNEL::Exception);
417   static void WriteFieldDep(const std::string& fileName, const ParaMEDMEM::MEDCouplingFieldDouble *f, bool writeFromScratch) throw(INTERP_KERNEL::Exception);
418   static void WriteFieldUsingAlreadyWrittenMesh(const std::string& fileName, const ParaMEDMEM::MEDCouplingFieldDouble *f) throw(INTERP_KERNEL::Exception);
419 };
420
421 namespace ParaMEDMEM
422 {
423   class MEDFileWritable
424   {
425   public:
426     void copyOptionsFrom(const MEDFileWritable& other) const;
427     int getTooLongStrPolicy() const throw(INTERP_KERNEL::Exception);
428     void setTooLongStrPolicy(int newVal) throw(INTERP_KERNEL::Exception);
429     int getZipConnPolicy() throw(INTERP_KERNEL::Exception);
430     void setZipConnPolicy(int newVal) throw(INTERP_KERNEL::Exception);
431   };
432
433   class MEDFileMeshReadSelector
434   {
435   public:
436     MEDFileMeshReadSelector();
437     MEDFileMeshReadSelector(unsigned int code);
438     unsigned int getCode() const;
439     void setCode(unsigned int newCode);
440     bool isCellFamilyFieldReading() const;
441     bool isNodeFamilyFieldReading() const;
442     bool isCellNameFieldReading() const;
443     bool isNodeNameFieldReading() const;
444     bool isCellNumFieldReading() const;
445     bool isNodeNumFieldReading() const;
446     void setCellFamilyFieldReading(bool b);
447     void setNodeFamilyFieldReading(bool b);
448     void setCellNameFieldReading(bool b);
449     void setNodeNameFieldReading(bool b);
450     void setCellNumFieldReading(bool b);
451     void setNodeNumFieldReading(bool b);
452     %extend
453     {
454       std::string __str__() const throw(INTERP_KERNEL::Exception)
455       {
456         std::ostringstream oss;
457         self->reprAll(oss);
458         return oss.str();
459       }
460       
461       std::string __repr__() const throw(INTERP_KERNEL::Exception)
462       {
463         std::ostringstream oss; oss << "MEDFileMeshReadSelector C++ instance at " << self << " (with code=" << self->getCode() << ").";
464         return oss.str();
465       }
466     }
467   };
468
469   class MEDFileMesh : public RefCountObject, public MEDFileWritable
470   {
471   public:
472     static MEDFileMesh *New(const std::string& fileName, MEDFileMeshReadSelector *mrs=0) throw(INTERP_KERNEL::Exception);
473     static MEDFileMesh *New(const std::string& fileName, const std::string& mName, int dt=-1, int it=-1, MEDFileMeshReadSelector *mrs=0) throw(INTERP_KERNEL::Exception);
474     virtual MEDFileMesh *createNewEmpty() const throw(INTERP_KERNEL::Exception);
475     virtual MEDFileMesh *deepCpy() const throw(INTERP_KERNEL::Exception);
476     virtual MEDFileMesh *shallowCpy() const throw(INTERP_KERNEL::Exception);
477     virtual void clearNonDiscrAttributes() const throw(INTERP_KERNEL::Exception);
478     void setName(const std::string& name);
479     std::string getName();
480     std::string getUnivName() const;
481     bool getUnivNameWrStatus() const;
482     void setUnivNameWrStatus(bool newStatus);
483     void setDescription(const std::string& name);
484     std::string getDescription() const;
485     void setOrder(int order);
486     int getOrder() const;
487     void setIteration(int it);
488     int getIteration();
489     void setTimeValue(double time);
490     void setTime(int dt, int it, double time);
491     double getTimeValue() const;
492     void setTimeUnit(const std::string& unit);
493     std::string getTimeUnit() const;
494     virtual int getNumberOfNodes() const throw(INTERP_KERNEL::Exception);
495     virtual std::vector<int> getFamArrNonEmptyLevelsExt() const throw(INTERP_KERNEL::Exception);
496     virtual std::vector<int> getNumArrNonEmptyLevelsExt() const throw(INTERP_KERNEL::Exception);
497     virtual std::vector<int> getNameArrNonEmptyLevelsExt() const throw(INTERP_KERNEL::Exception);
498     virtual std::vector<int> getDistributionOfTypes(int meshDimRelToMax) const throw(INTERP_KERNEL::Exception);
499     std::vector<int> getNonEmptyLevels() const throw(INTERP_KERNEL::Exception);
500     std::vector<int> getNonEmptyLevelsExt() const throw(INTERP_KERNEL::Exception);
501     void write(const std::string& fileName, int mode) const throw(INTERP_KERNEL::Exception);
502     int getSizeAtLevel(int meshDimRelToMaxExt) const throw(INTERP_KERNEL::Exception);
503     //
504     bool existsGroup(const std::string& groupName) const throw(INTERP_KERNEL::Exception);
505     bool existsFamily(int famId) const throw(INTERP_KERNEL::Exception);
506     bool existsFamily(const std::string& familyName) const throw(INTERP_KERNEL::Exception);
507     void setFamilyId(const std::string& familyName, int id) throw(INTERP_KERNEL::Exception);
508     void setFamilyIdUnique(const std::string& familyName, int id) throw(INTERP_KERNEL::Exception);
509     void addFamily(const std::string& familyName, int id) throw(INTERP_KERNEL::Exception);
510     void addFamilyOnGrp(const std::string& grpName, const std::string& famName) throw(INTERP_KERNEL::Exception);
511     virtual void createGroupOnAll(int meshDimRelToMaxExt, const std::string& groupName) throw(INTERP_KERNEL::Exception);
512     virtual bool keepFamIdsOnlyOnLevs(const std::vector<int>& famIds, const std::vector<int>& levs) throw(INTERP_KERNEL::Exception);
513     void copyFamGrpMapsFrom(const MEDFileMesh& other) throw(INTERP_KERNEL::Exception);
514     void clearGrpMap() throw(INTERP_KERNEL::Exception);
515     void clearFamMap() throw(INTERP_KERNEL::Exception);
516     void clearFamGrpMaps() throw(INTERP_KERNEL::Exception);
517     const std::map<std::string,int>& getFamilyInfo() const throw(INTERP_KERNEL::Exception);
518     const std::map<std::string, std::vector<std::string> >& getGroupInfo() const throw(INTERP_KERNEL::Exception);
519     std::vector<std::string> getFamiliesOnGroup(const std::string& name) const throw(INTERP_KERNEL::Exception);
520     std::vector<std::string> getFamiliesOnGroups(const std::vector<std::string>& grps) const throw(INTERP_KERNEL::Exception);
521     std::vector<int> getFamiliesIdsOnGroup(const std::string& name) const throw(INTERP_KERNEL::Exception);
522     void setFamiliesOnGroup(const std::string& name, const std::vector<std::string>& fams) throw(INTERP_KERNEL::Exception);
523     void setFamiliesIdsOnGroup(const std::string& name, const std::vector<int>& famIds) throw(INTERP_KERNEL::Exception);
524     std::vector<std::string> getGroupsOnFamily(const std::string& name) const throw(INTERP_KERNEL::Exception);
525     void setGroupsOnFamily(const std::string& famName, const std::vector<std::string>& grps) throw(INTERP_KERNEL::Exception);
526     std::vector<std::string> getGroupsNames() const throw(INTERP_KERNEL::Exception);
527     std::vector<std::string> getFamiliesNames() const throw(INTERP_KERNEL::Exception);
528     void assignFamilyNameWithGroupName() throw(INTERP_KERNEL::Exception);
529     std::vector<std::string> removeEmptyGroups() throw(INTERP_KERNEL::Exception);
530     void removeGroup(const std::string& name) throw(INTERP_KERNEL::Exception);
531     void removeFamily(const std::string& name) throw(INTERP_KERNEL::Exception);
532     std::vector<std::string> removeOrphanGroups() throw(INTERP_KERNEL::Exception);
533     std::vector<std::string> removeOrphanFamilies() throw(INTERP_KERNEL::Exception);
534     void changeGroupName(const std::string& oldName, const std::string& newName) throw(INTERP_KERNEL::Exception);
535     void changeFamilyName(const std::string& oldName, const std::string& newName) throw(INTERP_KERNEL::Exception);
536     void changeFamilyId(int oldId, int newId) throw(INTERP_KERNEL::Exception);
537     void changeAllGroupsContainingFamily(const std::string& familyNameToChange, const std::vector<std::string>& newFamiliesNames) throw(INTERP_KERNEL::Exception);
538     void setFamilyInfo(const std::map<std::string,int>& info);
539     void setGroupInfo(const std::map<std::string, std::vector<std::string> >&info);
540     int getFamilyId(const std::string& name) const throw(INTERP_KERNEL::Exception);
541     int getMaxAbsFamilyId() const throw(INTERP_KERNEL::Exception);
542     int getMaxFamilyId() const throw(INTERP_KERNEL::Exception);
543     int getMinFamilyId() const throw(INTERP_KERNEL::Exception);
544     int getTheMaxAbsFamilyId() const throw(INTERP_KERNEL::Exception);
545     int getTheMaxFamilyId() const throw(INTERP_KERNEL::Exception);
546     int getTheMinFamilyId() const throw(INTERP_KERNEL::Exception);
547     virtual int getMaxAbsFamilyIdInArrays() const throw(INTERP_KERNEL::Exception);
548     virtual int getMaxFamilyIdInArrays() const throw(INTERP_KERNEL::Exception);
549     virtual int getMinFamilyIdInArrays() const throw(INTERP_KERNEL::Exception);
550     DataArrayInt *getAllFamiliesIdsReferenced() const throw(INTERP_KERNEL::Exception);
551     DataArrayInt *computeAllFamilyIdsInUse() const throw(INTERP_KERNEL::Exception);
552     std::vector<int> getFamiliesIds(const std::vector<std::string>& famNames) const throw(INTERP_KERNEL::Exception);
553     std::string getFamilyNameGivenId(int id) const throw(INTERP_KERNEL::Exception);
554     bool ensureDifferentFamIdsPerLevel() throw(INTERP_KERNEL::Exception);
555     void normalizeFamIdsTrio() throw(INTERP_KERNEL::Exception);
556     void normalizeFamIdsMEDFile() throw(INTERP_KERNEL::Exception);
557     virtual int getMeshDimension() const throw(INTERP_KERNEL::Exception);
558     virtual std::string simpleRepr() const throw(INTERP_KERNEL::Exception);
559     virtual std::string advancedRepr() const throw(INTERP_KERNEL::Exception);
560     //
561     virtual MEDCouplingMesh *getGenMeshAtLevel(int meshDimRelToMax, bool renum=false) const throw(INTERP_KERNEL::Exception);
562     virtual void setFamilyFieldArr(int meshDimRelToMaxExt, DataArrayInt *famArr) throw(INTERP_KERNEL::Exception);
563     virtual void setRenumFieldArr(int meshDimRelToMaxExt, DataArrayInt *renumArr) throw(INTERP_KERNEL::Exception);
564     virtual void setNameFieldAtLevel(int meshDimRelToMaxExt, DataArrayAsciiChar *nameArr) throw(INTERP_KERNEL::Exception);
565     virtual DataArrayInt *getFamiliesArr(int meshDimRelToMaxExt, const std::vector<std::string>& fams, bool renum=false) const throw(INTERP_KERNEL::Exception);
566     virtual DataArrayInt *getGroupsArr(int meshDimRelToMaxExt, const std::vector<std::string>& grps, bool renum=false) const throw(INTERP_KERNEL::Exception);
567     virtual DataArrayInt *getGroupArr(int meshDimRelToMaxExt, const std::string& grp, bool renum=false) const throw(INTERP_KERNEL::Exception);
568     virtual DataArrayInt *getFamilyArr(int meshDimRelToMaxExt, const std::string& fam, bool renum=false) const throw(INTERP_KERNEL::Exception);
569     virtual DataArrayInt *getNodeGroupArr(const std::string& grp, bool renum=false) const throw(INTERP_KERNEL::Exception);
570     virtual DataArrayInt *getNodeGroupsArr(const std::vector<std::string>& grps, bool renum=false) const throw(INTERP_KERNEL::Exception);
571     virtual DataArrayInt *getNodeFamilyArr(const std::string& fam, bool renum=false) const throw(INTERP_KERNEL::Exception);
572     virtual DataArrayInt *getNodeFamiliesArr(const std::vector<std::string>& fams, bool renum=false) const throw(INTERP_KERNEL::Exception);
573     %extend
574        {
575          std::string __str__() const throw(INTERP_KERNEL::Exception)
576          {
577            return self->simpleRepr();
578          }
579
580          PyObject *getTime() throw(INTERP_KERNEL::Exception)
581          {
582            int tmp1,tmp2;
583            double tmp0=self->getTime(tmp1,tmp2);
584            PyObject *res = PyList_New(3);
585            PyList_SetItem(res,0,SWIG_From_int(tmp1));
586            PyList_SetItem(res,1,SWIG_From_int(tmp2));
587            PyList_SetItem(res,2,SWIG_From_double(tmp0));
588            return res;
589          }
590
591          virtual PyObject *isEqual(const MEDFileMesh *other, double eps) const throw(INTERP_KERNEL::Exception)
592          {
593            std::string what;
594            bool ret0=self->isEqual(other,eps,what);
595            PyObject *res=PyList_New(2);
596            PyObject *ret0Py=ret0?Py_True:Py_False;
597            Py_XINCREF(ret0Py);
598            PyList_SetItem(res,0,ret0Py);
599            PyList_SetItem(res,1,PyString_FromString(what.c_str()));
600            return res;
601          }
602          
603          PyObject *areFamsEqual(const MEDFileMesh *other) const throw(INTERP_KERNEL::Exception)
604          {
605            std::string what;
606            bool ret0=self->areFamsEqual(other,what);
607            PyObject *res=PyList_New(2);
608            PyObject *ret0Py=ret0?Py_True:Py_False;
609            Py_XINCREF(ret0Py);
610            PyList_SetItem(res,0,ret0Py);
611            PyList_SetItem(res,1,PyString_FromString(what.c_str()));
612            return res;
613          }
614
615          PyObject *areGrpsEqual(const MEDFileMesh *other) const throw(INTERP_KERNEL::Exception)
616          {
617            std::string what;
618            bool ret0=self->areGrpsEqual(other,what);
619            PyObject *res=PyList_New(2);
620            PyObject *ret0Py=ret0?Py_True:Py_False;
621            Py_XINCREF(ret0Py);
622            PyList_SetItem(res,0,ret0Py);
623            PyList_SetItem(res,1,PyString_FromString(what.c_str()));
624            return res;
625          }
626
627          PyObject *getAllGeoTypes() const throw(INTERP_KERNEL::Exception)
628          {
629            std::vector<INTERP_KERNEL::NormalizedCellType> result(self->getAllGeoTypes());
630            std::vector<INTERP_KERNEL::NormalizedCellType>::const_iterator iL=result.begin();
631            PyObject *res=PyList_New(result.size());
632            for(int i=0;iL!=result.end(); i++, iL++)
633              PyList_SetItem(res,i,PyInt_FromLong(*iL));
634            return res;
635          }
636
637          PyObject *getGeoTypesAtLevel(int meshDimRelToMax) const throw(INTERP_KERNEL::Exception)
638          {
639            std::vector<INTERP_KERNEL::NormalizedCellType> result(self->getGeoTypesAtLevel(meshDimRelToMax));
640            std::vector<INTERP_KERNEL::NormalizedCellType>::const_iterator iL=result.begin();
641            PyObject *res=PyList_New(result.size());
642            for(int i=0;iL!=result.end(); i++, iL++)
643              PyList_SetItem(res,i,PyInt_FromLong(*iL));
644            return res;
645          }
646
647          PyObject *getFamilyFieldAtLevel(int meshDimRelToMaxExt) const throw(INTERP_KERNEL::Exception)
648          {
649            const DataArrayInt *tmp=self->getFamilyFieldAtLevel(meshDimRelToMaxExt);
650            if(tmp)
651              tmp->incrRef();
652            return SWIG_NewPointerObj(SWIG_as_voidptr(tmp),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 );
653          }
654
655          PyObject *getNumberFieldAtLevel(int meshDimRelToMaxExt) const throw(INTERP_KERNEL::Exception)
656          {
657            const DataArrayInt *tmp=self->getNumberFieldAtLevel(meshDimRelToMaxExt);
658            if(tmp)
659              tmp->incrRef();
660            return SWIG_NewPointerObj(SWIG_as_voidptr(tmp),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 );
661          }
662          
663          PyObject *getNameFieldAtLevel(int meshDimRelToMaxExt) const throw(INTERP_KERNEL::Exception)
664          {
665            const DataArrayAsciiChar *tmp=self->getNameFieldAtLevel(meshDimRelToMaxExt);
666            if(tmp)
667              tmp->incrRef();
668            return SWIG_NewPointerObj(SWIG_as_voidptr(tmp),SWIGTYPE_p_ParaMEDMEM__DataArrayAsciiChar, SWIG_POINTER_OWN | 0 );
669          }
670
671          PyObject *findOrCreateAndGiveFamilyWithId(int id, bool& created) throw(INTERP_KERNEL::Exception)
672          {
673            bool ret1;
674            std::string ret0=self->findOrCreateAndGiveFamilyWithId(id,ret1);
675            PyObject *ret=PyTuple_New(2);
676            PyTuple_SetItem(ret,0,PyString_FromString(ret0.c_str()));
677            PyTuple_SetItem(ret,1,SWIG_From_bool(ret1));
678            return ret;
679          }
680          
681          PyObject *unPolyze() throw(INTERP_KERNEL::Exception)
682          {
683            DataArrayInt *ret3=0;
684            std::vector<int> ret1,ret2;
685            bool ret0=self->unPolyze(ret1,ret2,ret3);
686            PyObject *ret=PyTuple_New(4);
687            PyTuple_SetItem(ret,0,SWIG_From_bool(ret0));
688            //
689            PyObject *retLev1_0=PyList_New((int)ret1.size()/3);
690            for(int j=0;j<(int)ret1.size()/3;j++)
691              {
692                PyObject *retLev2=PyList_New(3);
693                PyList_SetItem(retLev2,0,SWIG_From_int(ret1[3*j]));
694                PyList_SetItem(retLev2,1,SWIG_From_int(ret1[3*j+1]));
695                PyList_SetItem(retLev2,2,SWIG_From_int(ret1[3*j+2]));
696                PyList_SetItem(retLev1_0,j,retLev2);
697              }
698            PyTuple_SetItem(ret,1,retLev1_0);
699            //
700            PyObject *retLev1_1=PyList_New((int)ret2.size()/3);
701            for(int j=0;j<(int)ret2.size()/3;j++)
702              {
703                PyObject *retLev2=PyList_New(3);
704                PyList_SetItem(retLev2,0,SWIG_From_int(ret2[3*j]));
705                PyList_SetItem(retLev2,1,SWIG_From_int(ret2[3*j+1]));
706                PyList_SetItem(retLev2,2,SWIG_From_int(ret2[3*j+2]));
707                PyList_SetItem(retLev1_1,j,retLev2);
708              }
709            PyTuple_SetItem(ret,2,retLev1_1);
710            //
711            PyTuple_SetItem(ret,3,SWIG_NewPointerObj(SWIG_as_voidptr(ret3),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
712            return ret;
713          }
714        }
715   };
716
717   class MEDFileUMesh : public MEDFileMesh
718   {
719   public:
720     static MEDFileUMesh *New(const std::string& fileName, const std::string& mName, int dt=-1, int it=-1, MEDFileMeshReadSelector *mrs=0) throw(INTERP_KERNEL::Exception);
721     static MEDFileUMesh *New(const std::string& fileName, MEDFileMeshReadSelector *mrs=0) throw(INTERP_KERNEL::Exception);
722     static MEDFileUMesh *New();
723     ~MEDFileUMesh();
724     int getSpaceDimension() const throw(INTERP_KERNEL::Exception);
725     //
726     std::vector<int> getGrpNonEmptyLevels(const std::string& grp) const throw(INTERP_KERNEL::Exception);
727     std::vector<int> getGrpNonEmptyLevelsExt(const std::string& grp) const throw(INTERP_KERNEL::Exception);
728     std::vector<int> getFamNonEmptyLevels(const std::string& fam) const throw(INTERP_KERNEL::Exception);
729     std::vector<int> getFamNonEmptyLevelsExt(const std::string& fam) const throw(INTERP_KERNEL::Exception);
730     std::vector<int> getGrpsNonEmptyLevels(const std::vector<std::string>& grps) const throw(INTERP_KERNEL::Exception);
731     std::vector<int> getGrpsNonEmptyLevelsExt(const std::vector<std::string>& grps) const throw(INTERP_KERNEL::Exception);
732     std::vector<int> getFamsNonEmptyLevels(const std::vector<std::string>& fams) const throw(INTERP_KERNEL::Exception);
733     std::vector<int> getFamsNonEmptyLevelsExt(const std::vector<std::string>& fams) const throw(INTERP_KERNEL::Exception);
734     std::vector<std::string> getGroupsOnSpecifiedLev(int meshDimRelToMaxExt) const throw(INTERP_KERNEL::Exception);
735     MEDCouplingUMesh *getGroup(int meshDimRelToMaxExt, const std::string& grp, bool renum=false) const throw(INTERP_KERNEL::Exception);
736     DataArrayInt *getGroupArr(int meshDimRelToMaxExt, const std::string& grp, bool renum=false) const throw(INTERP_KERNEL::Exception);
737     MEDCouplingUMesh *getGroups(int meshDimRelToMaxExt, const std::vector<std::string>& grps, bool renum=false) const throw(INTERP_KERNEL::Exception);
738     DataArrayInt *getGroupsArr(int meshDimRelToMaxExt, const std::vector<std::string>& grps, bool renum=false) const throw(INTERP_KERNEL::Exception);
739     MEDCouplingUMesh *getFamily(int meshDimRelToMaxExt, const std::string& fam, bool renum=false) const throw(INTERP_KERNEL::Exception);
740     DataArrayInt *getFamilyArr(int meshDimRelToMaxExt, const std::string& fam, bool renum=false) const throw(INTERP_KERNEL::Exception);
741     MEDCouplingUMesh *getFamilies(int meshDimRelToMaxExt, const std::vector<std::string>& fams, bool renum=false) const throw(INTERP_KERNEL::Exception);
742     DataArrayInt *getFamiliesArr(int meshDimRelToMaxExt, const std::vector<std::string>& fams, bool renum=false) const throw(INTERP_KERNEL::Exception);
743     DataArrayInt *getNodeGroupArr(const std::string& grp, bool renum=false) const throw(INTERP_KERNEL::Exception);
744     DataArrayInt *getNodeGroupsArr(const std::vector<std::string>& grps, bool renum=false) const throw(INTERP_KERNEL::Exception);
745     DataArrayInt *getNodeFamilyArr(const std::string& fam, bool renum=false) const throw(INTERP_KERNEL::Exception);
746     DataArrayInt *getNodeFamiliesArr(const std::vector<std::string>& fams, bool renum=false) const throw(INTERP_KERNEL::Exception);
747     MEDCouplingUMesh *getMeshAtLevel(int meshDimRelToMaxExt, bool renum=false) const throw(INTERP_KERNEL::Exception);
748     MEDCouplingUMesh *getLevel0Mesh(bool renum=false) const throw(INTERP_KERNEL::Exception);
749     MEDCouplingUMesh *getLevelM1Mesh(bool renum=false) const throw(INTERP_KERNEL::Exception);
750     MEDCouplingUMesh *getLevelM2Mesh(bool renum=false) const throw(INTERP_KERNEL::Exception);
751     MEDCouplingUMesh *getLevelM3Mesh(bool renum=false) const throw(INTERP_KERNEL::Exception);
752     void forceComputationOfParts() const throw(INTERP_KERNEL::Exception);
753     //
754     void setFamilyNameAttachedOnId(int id, const std::string& newFamName) throw(INTERP_KERNEL::Exception);
755     void setCoords(DataArrayDouble *coords) throw(INTERP_KERNEL::Exception);
756     void eraseGroupsAtLevel(int meshDimRelToMaxExt) throw(INTERP_KERNEL::Exception);
757     void addNodeGroup(const DataArrayInt *ids) throw(INTERP_KERNEL::Exception);
758     void addGroup(int meshDimRelToMaxExt, const DataArrayInt *ids) throw(INTERP_KERNEL::Exception);
759     void removeMeshAtLevel(int meshDimRelToMax) throw(INTERP_KERNEL::Exception);
760     void setMeshAtLevel(int meshDimRelToMax, MEDCoupling1GTUMesh *m) throw(INTERP_KERNEL::Exception);
761     void setMeshAtLevel(int meshDimRelToMax, MEDCouplingUMesh *m, bool newOrOld=false) throw(INTERP_KERNEL::Exception);
762     void optimizeFamilies() throw(INTERP_KERNEL::Exception);
763     DataArrayInt *zipCoords() throw(INTERP_KERNEL::Exception);
764     DataArrayInt *extractFamilyFieldOnGeoType(INTERP_KERNEL::NormalizedCellType gt) const throw(INTERP_KERNEL::Exception);
765     DataArrayInt *extractNumberFieldOnGeoType(INTERP_KERNEL::NormalizedCellType gt) const throw(INTERP_KERNEL::Exception);
766     %extend
767        { 
768          MEDFileUMesh(const std::string& fileName, const std::string& mName, int dt=-1, int it=-1, MEDFileMeshReadSelector *mrs=0) throw(INTERP_KERNEL::Exception)
769          {
770            return MEDFileUMesh::New(fileName,mName,dt,it,mrs);
771          }
772
773          MEDFileUMesh(const std::string& fileName, MEDFileMeshReadSelector *mrs=0) throw(INTERP_KERNEL::Exception)
774          {
775            return MEDFileUMesh::New(fileName,mrs);
776          }
777
778          MEDFileUMesh()
779          {
780            return MEDFileUMesh::New();
781          }
782          
783          PyObject *getRevNumberFieldAtLevel(int meshDimRelToMaxExt) const throw(INTERP_KERNEL::Exception)
784          {
785            const DataArrayInt *tmp=self->getRevNumberFieldAtLevel(meshDimRelToMaxExt);
786            if(tmp)
787              tmp->incrRef();
788            return SWIG_NewPointerObj(SWIG_as_voidptr(tmp),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 );
789          }
790          
791          void setGroupsAtLevel(int meshDimRelToMaxExt, PyObject *li, bool renum=false) throw(INTERP_KERNEL::Exception)
792          {
793            std::vector<const DataArrayInt *> grps;
794            convertFromPyObjVectorOfObj<const ParaMEDMEM::DataArrayInt *>(li,SWIGTYPE_p_ParaMEDMEM__DataArrayInt,"DataArrayInt",grps);
795            self->setGroupsAtLevel(meshDimRelToMaxExt,grps,renum);
796          }
797
798          void setMeshes(PyObject *li, bool renum=false) throw(INTERP_KERNEL::Exception)
799          {
800            std::vector<const MEDCouplingUMesh *> ms;
801            convertFromPyObjVectorOfObj<const ParaMEDMEM::MEDCouplingUMesh *>(li,SWIGTYPE_p_ParaMEDMEM__MEDCouplingUMesh,"MEDCouplingUMesh",ms);
802            self->setMeshes(ms,renum);
803          }
804
805          void setGroupsFromScratch(int meshDimRelToMax, PyObject *li, bool renum=false) throw(INTERP_KERNEL::Exception)
806          {
807            std::vector<const MEDCouplingUMesh *> ms;
808            convertFromPyObjVectorOfObj<const ParaMEDMEM::MEDCouplingUMesh *>(li,SWIGTYPE_p_ParaMEDMEM__MEDCouplingUMesh,"MEDCouplingUMesh",ms);
809            self->setGroupsFromScratch(meshDimRelToMax,ms,renum);
810          }
811          
812          void setGroupsOnSetMesh(int meshDimRelToMax, PyObject *li, bool renum=false) throw(INTERP_KERNEL::Exception)
813          {
814            std::vector<const MEDCouplingUMesh *> ms;
815            convertFromPyObjVectorOfObj<const ParaMEDMEM::MEDCouplingUMesh *>(li,SWIGTYPE_p_ParaMEDMEM__MEDCouplingUMesh,"MEDCouplingUMesh",ms);
816            self->setGroupsOnSetMesh(meshDimRelToMax,ms,renum);
817          }
818
819          DataArrayDouble *getCoords() const throw(INTERP_KERNEL::Exception)
820          {
821            DataArrayDouble *ret=self->getCoords();
822            if(ret)
823              ret->incrRef();
824            return ret;
825          }
826
827          PyObject *duplicateNodesOnM1Group(const std::string& grpNameM1) throw(INTERP_KERNEL::Exception)
828          {
829            DataArrayInt *ret0=0,*ret1=0,*ret2=0;
830            self->duplicateNodesOnM1Group(grpNameM1,ret0,ret1,ret2);
831            PyObject *ret=PyTuple_New(3);
832            PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(ret0),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
833            PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(ret1),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
834            PyTuple_SetItem(ret,2,SWIG_NewPointerObj(SWIG_as_voidptr(ret2),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
835            return ret;
836          }
837          
838          MEDCoupling1GTUMesh *getDirectUndergroundSingleGeoTypeMesh(INTERP_KERNEL::NormalizedCellType gt) const throw(INTERP_KERNEL::Exception)
839          {
840            MEDCoupling1GTUMesh *ret(self->getDirectUndergroundSingleGeoTypeMesh(gt));
841            if(ret)
842              ret->incrRef();
843            return ret;
844          }
845
846          PyObject *getDirectUndergroundSingleGeoTypeMeshes(int meshDimRelToMax) const throw(INTERP_KERNEL::Exception)
847          {
848            std::vector<MEDCoupling1GTUMesh *> tmp(self->getDirectUndergroundSingleGeoTypeMeshes(meshDimRelToMax));
849            std::size_t sz(tmp.size());
850            PyObject *ret=PyList_New(sz);
851            for(std::size_t i=0;i<sz;i++)
852              {
853                if(tmp[i])
854                  tmp[i]->incrRef();
855                PyList_SetItem(ret,i,convertMesh(tmp[i], SWIG_POINTER_OWN | 0 ));
856              }
857            return ret;
858          }
859        }
860   };
861
862   class MEDFileStructuredMesh : public MEDFileMesh
863   {
864   };
865
866   class MEDFileCMesh : public MEDFileStructuredMesh
867   {
868   public:
869     static MEDFileCMesh *New();
870     static MEDFileCMesh *New(const std::string& fileName, MEDFileMeshReadSelector *mrs=0) throw(INTERP_KERNEL::Exception);
871     static MEDFileCMesh *New(const std::string& fileName, const std::string& mName, int dt=-1, int it=-1, MEDFileMeshReadSelector *mrs=0) throw(INTERP_KERNEL::Exception);
872     void setMesh(MEDCouplingCMesh *m) throw(INTERP_KERNEL::Exception);
873     int getSpaceDimension() const throw(INTERP_KERNEL::Exception);
874     %extend
875        {
876          MEDFileCMesh()
877          {
878            return MEDFileCMesh::New();
879          }
880
881          MEDFileCMesh(const std::string& fileName, MEDFileMeshReadSelector *mrs=0) throw(INTERP_KERNEL::Exception)
882          {
883            return MEDFileCMesh::New(fileName,mrs);
884          }
885
886          MEDFileCMesh(const std::string& fileName, const std::string& mName, int dt=-1, int it=-1, MEDFileMeshReadSelector *mrs=0) throw(INTERP_KERNEL::Exception)
887          {
888            return MEDFileCMesh::New(fileName,mName,dt,it,mrs);
889          }
890          
891          PyObject *getMesh() const throw(INTERP_KERNEL::Exception)
892          {
893            const MEDCouplingCMesh *tmp=self->getMesh();
894            if(tmp)
895              tmp->incrRef();
896            return SWIG_NewPointerObj(SWIG_as_voidptr(tmp),SWIGTYPE_p_ParaMEDMEM__MEDCouplingCMesh, SWIG_POINTER_OWN | 0 );
897          }
898        }
899   };
900
901   class MEDFileCurveLinearMesh : public MEDFileStructuredMesh
902   {
903   public:
904     static MEDFileCurveLinearMesh *New();
905     static MEDFileCurveLinearMesh *New(const std::string& fileName, MEDFileMeshReadSelector *mrs=0) throw(INTERP_KERNEL::Exception);
906     static MEDFileCurveLinearMesh *New(const std::string& fileName, const std::string& mName, int dt=-1, int it=-1, MEDFileMeshReadSelector *mrs=0) throw(INTERP_KERNEL::Exception);
907     void setMesh(MEDCouplingCurveLinearMesh *m) throw(INTERP_KERNEL::Exception);
908     %extend
909        {
910          MEDFileCurveLinearMesh()
911          {
912            return MEDFileCurveLinearMesh::New();
913          }
914
915          MEDFileCurveLinearMesh(const std::string& fileName, MEDFileMeshReadSelector *mrs=0) throw(INTERP_KERNEL::Exception)
916          {
917            return MEDFileCurveLinearMesh::New(fileName,mrs);
918          }
919
920          MEDFileCurveLinearMesh(const std::string& fileName, const std::string& mName, int dt=-1, int it=-1, MEDFileMeshReadSelector *mrs=0) throw(INTERP_KERNEL::Exception)
921          {
922            return MEDFileCurveLinearMesh::New(fileName,mName,dt,it,mrs);
923          }
924          
925          PyObject *getMesh() const throw(INTERP_KERNEL::Exception)
926          {
927            const MEDCouplingCurveLinearMesh *tmp=self->getMesh();
928            if(tmp)
929              tmp->incrRef();
930            return SWIG_NewPointerObj(SWIG_as_voidptr(tmp),SWIGTYPE_p_ParaMEDMEM__MEDCouplingCurveLinearMesh, SWIG_POINTER_OWN | 0 );
931          }
932        }
933   };
934
935   class MEDFileMeshMultiTS : public RefCountObject, public MEDFileWritable
936   {
937   public:
938     static MEDFileMeshMultiTS *New();
939     static MEDFileMeshMultiTS *New(const std::string& fileName) throw(INTERP_KERNEL::Exception);
940     static MEDFileMeshMultiTS *New(const std::string& fileName, const std::string& mName) throw(INTERP_KERNEL::Exception);
941     MEDFileMeshMultiTS *deepCpy() const throw(INTERP_KERNEL::Exception);
942     std::string getName() const throw(INTERP_KERNEL::Exception);
943     void write(const std::string& fileName, int mode) const throw(INTERP_KERNEL::Exception);
944     void setOneTimeStep(MEDFileMesh *mesh1TimeStep) throw(INTERP_KERNEL::Exception);
945     %extend
946        { 
947          MEDFileMeshMultiTS()
948          {
949            return MEDFileMeshMultiTS::New();
950          }
951
952          MEDFileMeshMultiTS(const std::string& fileName) throw(INTERP_KERNEL::Exception)
953          {
954            return MEDFileMeshMultiTS::New(fileName);
955          }
956
957          MEDFileMeshMultiTS(const std::string& fileName, const std::string& mName) throw(INTERP_KERNEL::Exception)
958          {
959            return MEDFileMeshMultiTS::New(fileName,mName);
960          }
961
962          MEDFileMesh *getOneTimeStep() const throw(INTERP_KERNEL::Exception)
963            {
964              MEDFileMesh *ret=self->getOneTimeStep();
965              if(ret)
966                ret->incrRef();
967              return ret;
968            }
969        }
970   };
971
972   class MEDFileMeshesIterator
973   {
974   public:
975     %extend
976     {
977       PyObject *next() throw(INTERP_KERNEL::Exception)
978       {
979         MEDFileMesh *ret=self->nextt();
980         if(ret)
981           {
982             ret->incrRef();
983             return convertMEDFileMesh(ret,SWIG_POINTER_OWN | 0 );
984           }
985         else
986           {
987             PyErr_SetString(PyExc_StopIteration,"No more data.");
988             return 0;
989           }
990       }
991     }
992   };
993
994   class MEDFileMeshes : public RefCountObject, public MEDFileWritable
995   {
996   public:
997     static MEDFileMeshes *New();
998     static MEDFileMeshes *New(const std::string& fileName) throw(INTERP_KERNEL::Exception);
999     MEDFileMeshes *deepCpy() const throw(INTERP_KERNEL::Exception);
1000     void write(const std::string& fileName, int mode) const throw(INTERP_KERNEL::Exception);
1001     int getNumberOfMeshes() const throw(INTERP_KERNEL::Exception);
1002     std::vector<std::string> getMeshesNames() const throw(INTERP_KERNEL::Exception);
1003     //
1004     void resize(int newSize) throw(INTERP_KERNEL::Exception);
1005     void pushMesh(MEDFileMesh *mesh) throw(INTERP_KERNEL::Exception);
1006     void setMeshAtPos(int i, MEDFileMesh *mesh) throw(INTERP_KERNEL::Exception);
1007     void destroyMeshAtPos(int i) throw(INTERP_KERNEL::Exception);
1008     %extend
1009        {
1010          MEDFileMeshes()
1011          {
1012            return MEDFileMeshes::New();
1013          }
1014
1015          MEDFileMeshes(const std::string& fileName) throw(INTERP_KERNEL::Exception)
1016          {
1017            return MEDFileMeshes::New(fileName);
1018          }
1019
1020          std::string __str__() const throw(INTERP_KERNEL::Exception)
1021            {
1022              return self->simpleRepr();
1023            }
1024
1025          MEDFileMesh *__getitem__(PyObject *obj) throw(INTERP_KERNEL::Exception)
1026          {
1027            if(PyInt_Check(obj))
1028              {
1029                MEDFileMesh *ret=self->getMeshAtPos((int)PyInt_AS_LONG(obj));
1030                if(ret)
1031                  ret->incrRef();
1032                return ret;
1033              }
1034            else if(PyString_Check(obj))
1035              {
1036                MEDFileMesh *ret=self->getMeshWithName(PyString_AsString(obj));
1037                if(ret)
1038                  ret->incrRef();
1039                return ret;
1040              }
1041            else
1042              throw INTERP_KERNEL::Exception("MEDFileMeshes::__getitem__ : only integer or string with meshname supported !");
1043          }
1044
1045          MEDFileMeshes *__setitem__(int obj, MEDFileMesh *mesh) throw(INTERP_KERNEL::Exception)
1046          {
1047            self->setMeshAtPos(obj,mesh);
1048            return self;
1049          }
1050
1051          MEDFileMeshesIterator *__iter__() throw(INTERP_KERNEL::Exception)
1052          {
1053            return self->iterator();
1054          }
1055
1056          int __len__() const throw(INTERP_KERNEL::Exception)
1057          {
1058            return self->getNumberOfMeshes();
1059          }
1060          
1061          MEDFileMesh *getMeshAtPos(int i) const throw(INTERP_KERNEL::Exception)
1062            {
1063              MEDFileMesh *ret=self->getMeshAtPos(i);
1064              if(ret)
1065                ret->incrRef();
1066              return ret;
1067            }
1068          MEDFileMesh *getMeshWithName(const std::string& mname) const throw(INTERP_KERNEL::Exception)
1069            {
1070              MEDFileMesh *ret=self->getMeshWithName(mname);
1071              if(ret)
1072                ret->incrRef();
1073              return ret;
1074            }
1075        }
1076   };
1077
1078   class MEDFileFieldLoc : public RefCountObject
1079   {
1080   public:
1081     std::string getName() const;
1082     int getDimension() const;
1083     int getNumberOfGaussPoints() const;
1084     int getNumberOfPointsInCells() const;
1085     const std::vector<double>& getRefCoords() const;
1086     const std::vector<double>& getGaussCoords() const;
1087     const std::vector<double>& getGaussWeights() const;
1088     bool isEqual(const MEDFileFieldLoc& other, double eps) const throw(INTERP_KERNEL::Exception);
1089   %extend
1090     {
1091       std::string __str__() const throw(INTERP_KERNEL::Exception)
1092       {
1093         return self->repr();
1094       }
1095     }
1096   };
1097
1098   class MEDFileFieldGlobsReal
1099   {
1100   public:
1101     void resetContent();
1102     void shallowCpyGlobs(const MEDFileFieldGlobsReal& other) throw(INTERP_KERNEL::Exception);
1103     void deepCpyGlobs(const MEDFileFieldGlobsReal& other) throw(INTERP_KERNEL::Exception);
1104     void shallowCpyOnlyUsedGlobs(const MEDFileFieldGlobsReal& other) throw(INTERP_KERNEL::Exception);
1105     void deepCpyOnlyUsedGlobs(const MEDFileFieldGlobsReal& other) throw(INTERP_KERNEL::Exception);
1106     void appendGlobs(const MEDFileFieldGlobsReal& other, double eps) throw(INTERP_KERNEL::Exception);
1107     void checkGlobsCoherency() const throw(INTERP_KERNEL::Exception);
1108     void checkGlobsPflsPartCoherency() const throw(INTERP_KERNEL::Exception);
1109     void checkGlobsLocsPartCoherency() const throw(INTERP_KERNEL::Exception);
1110     std::vector<std::string> getPfls() const throw(INTERP_KERNEL::Exception);
1111     std::vector<std::string> getLocs() const throw(INTERP_KERNEL::Exception);
1112     bool existsPfl(const std::string& pflName) const throw(INTERP_KERNEL::Exception);
1113     bool existsLoc(const std::string& locName) const throw(INTERP_KERNEL::Exception);
1114     std::string createNewNameOfPfl() const throw(INTERP_KERNEL::Exception);
1115     std::string createNewNameOfLoc() const throw(INTERP_KERNEL::Exception);
1116     std::vector< std::vector<int> > whichAreEqualProfiles() const throw(INTERP_KERNEL::Exception);
1117     std::vector< std::vector<int> > whichAreEqualLocs(double eps) const throw(INTERP_KERNEL::Exception);
1118     virtual std::vector<std::string> getPflsReallyUsed() const throw(INTERP_KERNEL::Exception);
1119     virtual std::vector<std::string> getLocsReallyUsed() const throw(INTERP_KERNEL::Exception);
1120     virtual std::vector<std::string> getPflsReallyUsedMulti() const throw(INTERP_KERNEL::Exception);
1121     virtual std::vector<std::string> getLocsReallyUsedMulti() const throw(INTERP_KERNEL::Exception);
1122     void killProfileIds(const std::vector<int>& pflIds) throw(INTERP_KERNEL::Exception);
1123     void killLocalizationIds(const std::vector<int>& locIds) throw(INTERP_KERNEL::Exception);
1124     void changePflName(const std::string& oldName, const std::string& newName) throw(INTERP_KERNEL::Exception);
1125     void changeLocName(const std::string& oldName, const std::string& newName) throw(INTERP_KERNEL::Exception);
1126     int getNbOfGaussPtPerCell(int locId) const throw(INTERP_KERNEL::Exception);
1127     int getLocalizationId(const std::string& loc) const throw(INTERP_KERNEL::Exception);
1128   %extend
1129      {
1130        PyObject *getProfile(const std::string& pflName) const throw(INTERP_KERNEL::Exception)
1131        {
1132          const DataArrayInt *ret=self->getProfile(pflName);
1133          if(ret)
1134            ret->incrRef();
1135          return SWIG_NewPointerObj(SWIG_as_voidptr(ret),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 );
1136        }
1137
1138        PyObject *getProfileFromId(int pflId) const throw(INTERP_KERNEL::Exception)
1139        {
1140          const DataArrayInt *ret=self->getProfileFromId(pflId);
1141          if(ret)
1142            ret->incrRef();
1143          return SWIG_NewPointerObj(SWIG_as_voidptr(ret),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 );
1144        }
1145
1146        PyObject *getLocalizationFromId(int locId) const throw(INTERP_KERNEL::Exception)
1147        {
1148          const MEDFileFieldLoc *loc=&self->getLocalizationFromId(locId);
1149          if(loc)
1150            loc->incrRef();
1151          return SWIG_NewPointerObj(SWIG_as_voidptr(loc),SWIGTYPE_p_ParaMEDMEM__MEDFileFieldLoc, SWIG_POINTER_OWN | 0 );
1152        }
1153        
1154        PyObject *getLocalization(const std::string& locName) const throw(INTERP_KERNEL::Exception)
1155        {
1156          const MEDFileFieldLoc *loc=&self->getLocalization(locName);
1157          if(loc)
1158            loc->incrRef();
1159          return SWIG_NewPointerObj(SWIG_as_voidptr(loc),SWIGTYPE_p_ParaMEDMEM__MEDFileFieldLoc, SWIG_POINTER_OWN | 0 );
1160        }
1161        
1162        PyObject *zipPflsNames() throw(INTERP_KERNEL::Exception)
1163        {
1164          std::vector< std::pair<std::vector<std::string>, std::string > > ret=self->zipPflsNames();
1165          return convertVecPairVecStToPy(ret);
1166        }
1167
1168        PyObject *zipLocsNames(double eps) throw(INTERP_KERNEL::Exception)
1169        {
1170          std::vector< std::pair<std::vector<std::string>, std::string > > ret=self->zipLocsNames(eps);
1171          return convertVecPairVecStToPy(ret);
1172        }
1173
1174        void changePflsNames(PyObject *li) throw(INTERP_KERNEL::Exception)
1175        {
1176          std::vector< std::pair<std::vector<std::string>, std::string > > v=convertVecPairVecStFromPy(li);
1177          self->changePflsNames(v);
1178        }
1179
1180        void changePflsRefsNamesGen(PyObject *li) throw(INTERP_KERNEL::Exception)
1181        {
1182          std::vector< std::pair<std::vector<std::string>, std::string > > v=convertVecPairVecStFromPy(li);
1183          self->changePflsRefsNamesGen(v);
1184        }
1185
1186        void changePflsNamesInStruct(PyObject *li) throw(INTERP_KERNEL::Exception)
1187        {
1188          std::vector< std::pair<std::vector<std::string>, std::string > > v=convertVecPairVecStFromPy(li);
1189          self->changePflsNamesInStruct(v);
1190        }
1191
1192        void changeLocsNames(PyObject *li) throw(INTERP_KERNEL::Exception)
1193        {
1194          std::vector< std::pair<std::vector<std::string>, std::string > > v=convertVecPairVecStFromPy(li);
1195          self->changeLocsNames(v);
1196        }
1197
1198        void changeLocsRefsNamesGen(PyObject *li) throw(INTERP_KERNEL::Exception)
1199        {
1200          std::vector< std::pair<std::vector<std::string>, std::string > > v=convertVecPairVecStFromPy(li);
1201          self->changeLocsRefsNamesGen(v);
1202        }
1203        
1204        void changeLocsNamesInStruct(PyObject *li) throw(INTERP_KERNEL::Exception)
1205        {
1206          std::vector< std::pair<std::vector<std::string>, std::string > > v=convertVecPairVecStFromPy(li);
1207          self->changeLocsNamesInStruct(v);
1208        }
1209
1210        std::string simpleReprGlobs() const throw(INTERP_KERNEL::Exception)
1211        {
1212          std::ostringstream oss;
1213          self->simpleReprGlobs(oss);
1214          return oss.str();
1215        }
1216      }
1217   };
1218
1219   class MEDFileAnyTypeField1TS : public RefCountObject, public MEDFileFieldGlobsReal, public MEDFileWritable
1220   {
1221   public:
1222     static MEDFileAnyTypeField1TS *New(const std::string& fileName, bool loadAll=true) throw(INTERP_KERNEL::Exception);
1223     static MEDFileAnyTypeField1TS *New(const std::string& fileName, const std::string& fieldName, bool loadAll=true) throw(INTERP_KERNEL::Exception);
1224     static MEDFileAnyTypeField1TS *New(const std::string& fileName, const std::string& fieldName, int iteration, int order, bool loadAll=true) throw(INTERP_KERNEL::Exception);
1225     void write(const std::string& fileName, int mode) const throw(INTERP_KERNEL::Exception);
1226     void loadArrays() throw(INTERP_KERNEL::Exception);
1227     void loadArraysIfNecessary() throw(INTERP_KERNEL::Exception);
1228     void unloadArrays() throw(INTERP_KERNEL::Exception);
1229     int getDimension() const throw(INTERP_KERNEL::Exception);
1230     int getIteration() const throw(INTERP_KERNEL::Exception);
1231     int getOrder() const throw(INTERP_KERNEL::Exception);
1232     std::string getName() throw(INTERP_KERNEL::Exception);
1233     void setName(const std::string& name) throw(INTERP_KERNEL::Exception);
1234     std::string getMeshName() throw(INTERP_KERNEL::Exception);
1235     void setMeshName(const std::string& newMeshName) throw(INTERP_KERNEL::Exception);
1236     int getMeshIteration() const throw(INTERP_KERNEL::Exception);
1237     int getMeshOrder() const throw(INTERP_KERNEL::Exception);
1238     int getNumberOfComponents() const throw(INTERP_KERNEL::Exception);
1239     bool isDealingTS(int iteration, int order) const throw(INTERP_KERNEL::Exception);
1240     void setInfo(const std::vector<std::string>& infos) throw(INTERP_KERNEL::Exception);
1241     const std::vector<std::string>& getInfo() const throw(INTERP_KERNEL::Exception);
1242     void setTime(int iteration, int order, double val) throw(INTERP_KERNEL::Exception);
1243     virtual MEDFileAnyTypeField1TS *shallowCpy() const throw(INTERP_KERNEL::Exception);
1244     MEDFileAnyTypeField1TS *deepCpy() const throw(INTERP_KERNEL::Exception);
1245     std::string getDtUnit() const throw(INTERP_KERNEL::Exception);
1246     void setDtUnit(const std::string& dtUnit) throw(INTERP_KERNEL::Exception);
1247     %extend
1248     {
1249       PyObject *getTime() throw(INTERP_KERNEL::Exception)
1250       {
1251         int tmp1,tmp2;
1252         double tmp0=self->getTime(tmp1,tmp2);
1253         PyObject *res = PyList_New(3);
1254         PyList_SetItem(res,0,SWIG_From_int(tmp1));
1255         PyList_SetItem(res,1,SWIG_From_int(tmp2));
1256         PyList_SetItem(res,2,SWIG_From_double(tmp0));
1257         return res;
1258       }
1259
1260       PyObject *getDtIt() const throw(INTERP_KERNEL::Exception)
1261       {
1262         std::pair<int,int> res=self->getDtIt();
1263         PyObject *elt=PyTuple_New(2);
1264         PyTuple_SetItem(elt,0,SWIG_From_int(res.first));
1265         PyTuple_SetItem(elt,1,SWIG_From_int(res.second));
1266         return elt;
1267       }
1268
1269       void setProfileNameOnLeaf(INTERP_KERNEL::NormalizedCellType typ, int locId, const std::string& newPflName, bool forceRenameOnGlob=false) throw(INTERP_KERNEL::Exception)
1270       {
1271         self->setProfileNameOnLeaf(0,typ,locId,newPflName,forceRenameOnGlob);
1272       }
1273       
1274       void setLocNameOnLeaf(INTERP_KERNEL::NormalizedCellType typ, int locId, const std::string& newLocName, bool forceRenameOnGlob=false) throw(INTERP_KERNEL::Exception)
1275       {
1276         self->setLocNameOnLeaf(0,typ,locId,newLocName,forceRenameOnGlob);
1277       }
1278
1279       bool changeMeshNames(PyObject *li) throw(INTERP_KERNEL::Exception)
1280       {
1281         std::vector< std::pair<std::string,std::string> > modifTab=convertVecPairStStFromPy(li);
1282         return self->changeMeshNames(modifTab);
1283       }
1284       
1285       PyObject *getTypesOfFieldAvailable() const throw(INTERP_KERNEL::Exception)
1286       {
1287         std::vector<TypeOfField> ret=self->getTypesOfFieldAvailable();
1288         PyObject *ret2=PyList_New(ret.size());
1289         for(int i=0;i<(int)ret.size();i++)
1290           PyList_SetItem(ret2,i,SWIG_From_int(ret[i]));
1291         return ret2;
1292       }
1293
1294       PyObject *getNonEmptyLevels(const std::string& mname=std::string()) const throw(INTERP_KERNEL::Exception)
1295       {
1296         std::vector<int> ret1;
1297         int ret0=self->getNonEmptyLevels(mname,ret1);
1298         PyObject *elt=PyTuple_New(2);
1299         PyTuple_SetItem(elt,0,SWIG_From_int(ret0));
1300         PyTuple_SetItem(elt,1,convertIntArrToPyList2(ret1));
1301         return elt;
1302       }
1303
1304       PyObject *getFieldSplitedByType(const std::string& mname=std::string()) const throw(INTERP_KERNEL::Exception)
1305       {
1306         std::vector<INTERP_KERNEL::NormalizedCellType> types;
1307         std::vector< std::vector<TypeOfField> > typesF;
1308         std::vector< std::vector<std::string> > pfls;
1309         std::vector< std::vector<std::string> > locs;
1310         std::vector< std::vector< std::pair<int,int> > > ret=self->getFieldSplitedByType(mname,types,typesF,pfls,locs);
1311         int sz=ret.size();
1312         PyObject *ret2=PyList_New(sz);
1313            for(int i=0;i<sz;i++)
1314              {
1315                const std::vector< std::pair<int,int> >& dadsI=ret[i];
1316                const std::vector<TypeOfField>& typesFI=typesF[i];
1317                const std::vector<std::string>& pflsI=pfls[i];
1318                const std::vector<std::string>& locsI=locs[i];
1319                PyObject *elt=PyTuple_New(2);
1320                PyTuple_SetItem(elt,0,SWIG_From_int(types[i]));
1321                int sz2=ret[i].size();
1322                PyObject *elt2=PyList_New(sz2);
1323                for(int j=0;j<sz2;j++)
1324                  {
1325                    PyObject *elt3=PyTuple_New(4);
1326                    PyTuple_SetItem(elt3,0,SWIG_From_int(typesFI[j]));
1327                    PyObject *elt4=PyTuple_New(2); PyTuple_SetItem(elt4,0,SWIG_From_int(dadsI[j].first)); PyTuple_SetItem(elt4,1,SWIG_From_int(dadsI[j].second));
1328                    PyTuple_SetItem(elt3,1,elt4);
1329                    PyTuple_SetItem(elt3,2,PyString_FromString(pflsI[j].c_str()));
1330                    PyTuple_SetItem(elt3,3,PyString_FromString(locsI[j].c_str()));
1331                    PyList_SetItem(elt2,j,elt3);
1332                  }
1333                PyTuple_SetItem(elt,1,elt2);
1334                PyList_SetItem(ret2,i,elt);
1335              }
1336            return ret2;
1337       }
1338
1339       PyObject *splitComponents() const throw(INTERP_KERNEL::Exception)
1340       {
1341         std::vector< MEDCouplingAutoRefCountObjectPtr< MEDFileAnyTypeField1TS > > ret=self->splitComponents();
1342         std::size_t sz=ret.size();
1343         PyObject *retPy=PyList_New(sz);
1344         for(std::size_t i=0;i<sz;i++)
1345           PyList_SetItem(retPy,i,convertMEDFileField1TS(ret[i].retn(), SWIG_POINTER_OWN | 0 ));
1346         return retPy;
1347       }
1348
1349       PyObject *splitDiscretizations() const throw(INTERP_KERNEL::Exception)
1350       {
1351         std::vector< MEDCouplingAutoRefCountObjectPtr< MEDFileAnyTypeField1TS > > ret=self->splitDiscretizations();
1352         std::size_t sz=ret.size();
1353         PyObject *retPy=PyList_New(sz);
1354         for(std::size_t i=0;i<sz;i++)
1355           PyList_SetItem(retPy,i,convertMEDFileField1TS(ret[i].retn(), SWIG_POINTER_OWN | 0 ));
1356         return retPy;
1357       }
1358     }
1359   };
1360
1361   class MEDFileField1TS : public MEDFileAnyTypeField1TS
1362   {
1363   public:
1364     static MEDFileField1TS *New(const std::string& fileName, const std::string& fieldName, int iteration, int order, bool loadAll=true) throw(INTERP_KERNEL::Exception);
1365     static MEDFileField1TS *New(const std::string& fileName, const std::string& fieldName, bool loadAll=true) throw(INTERP_KERNEL::Exception);
1366     static MEDFileField1TS *New(const std::string& fileName, bool loadAll=true) throw(INTERP_KERNEL::Exception);
1367     static MEDFileField1TS *New();
1368     ParaMEDMEM::MEDFileIntField1TS *convertToInt(bool isDeepCpyGlobs=true) const throw(INTERP_KERNEL::Exception);
1369     MEDCouplingFieldDouble *getFieldAtLevel(TypeOfField type, int meshDimRelToMax, int renumPol=0) const throw(INTERP_KERNEL::Exception);
1370     MEDCouplingFieldDouble *getFieldAtTopLevel(TypeOfField type, int renumPol=0) const throw(INTERP_KERNEL::Exception);
1371     MEDCouplingFieldDouble *getFieldOnMeshAtLevel(TypeOfField type, const MEDCouplingMesh *mesh, int renumPol=0) const throw(INTERP_KERNEL::Exception);
1372     MEDCouplingFieldDouble *getFieldOnMeshAtLevel(TypeOfField type, int meshDimRelToMax, const MEDFileMesh *mesh, int renumPol=0) const throw(INTERP_KERNEL::Exception);
1373     MEDCouplingFieldDouble *getFieldAtLevelOld(TypeOfField type, const std::string& mname, int meshDimRelToMax, int renumPol=0) const throw(INTERP_KERNEL::Exception);
1374     //
1375     void setFieldNoProfileSBT(const MEDCouplingFieldDouble *field) throw(INTERP_KERNEL::Exception);
1376     void setFieldProfile(const MEDCouplingFieldDouble *field, const MEDFileMesh *mesh, int meshDimRelToMax, const DataArrayInt *profile) throw(INTERP_KERNEL::Exception);
1377     void setProfileNameOnLeaf(const std::string& mName, INTERP_KERNEL::NormalizedCellType typ, int locId, const std::string& newPflName, bool forceRenameOnGlob=false) throw(INTERP_KERNEL::Exception);
1378     void setLocNameOnLeaf(const std::string& mName, INTERP_KERNEL::NormalizedCellType typ, int locId, const std::string& newLocName, bool forceRenameOnGlob=false) throw(INTERP_KERNEL::Exception);
1379     %extend
1380        {
1381          MEDFileField1TS(const std::string& fileName, bool loadAll=true) throw(INTERP_KERNEL::Exception)
1382          {
1383            return MEDFileField1TS::New(fileName,loadAll);
1384          }
1385          
1386          MEDFileField1TS(const std::string& fileName, const std::string& fieldName, bool loadAll=true) throw(INTERP_KERNEL::Exception)
1387          {
1388            return MEDFileField1TS::New(fileName,fieldName,loadAll);
1389          }
1390
1391          MEDFileField1TS(const std::string& fileName, const std::string& fieldName, int iteration, int order, bool loadAll=true) throw(INTERP_KERNEL::Exception)
1392          {
1393            return MEDFileField1TS::New(fileName,fieldName,iteration,order,loadAll);
1394          }
1395
1396          MEDFileField1TS()
1397          {
1398            return MEDFileField1TS::New();
1399          }
1400
1401          void copyTinyInfoFrom(const MEDCouplingFieldDouble *field) throw(INTERP_KERNEL::Exception)
1402          {
1403            const DataArrayDouble *arr=0;
1404            if(field)
1405              arr=field->getArray();
1406            self->copyTinyInfoFrom(field,arr);
1407          }
1408          
1409          std::string __str__() const throw(INTERP_KERNEL::Exception)
1410          {
1411            return self->simpleRepr();
1412          }
1413          
1414          PyObject *getFieldWithProfile(TypeOfField type, int meshDimRelToMax, const MEDFileMesh *mesh) const throw(INTERP_KERNEL::Exception)
1415          {
1416            DataArrayInt *ret1=0;
1417            DataArrayDouble *ret0=self->getFieldWithProfile(type,meshDimRelToMax,mesh,ret1);
1418            PyObject *ret=PyTuple_New(2);
1419            PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(ret0),SWIGTYPE_p_ParaMEDMEM__DataArrayDouble, SWIG_POINTER_OWN | 0 ));
1420            PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(ret1),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
1421            return ret;
1422          }
1423
1424          PyObject *getFieldSplitedByType2(const std::string& mname=std::string()) const throw(INTERP_KERNEL::Exception)
1425          {
1426            std::vector<INTERP_KERNEL::NormalizedCellType> types;
1427            std::vector< std::vector<TypeOfField> > typesF;
1428            std::vector< std::vector<std::string> > pfls;
1429            std::vector< std::vector<std::string> > locs;
1430            std::vector< std::vector<DataArrayDouble *> > ret=self->getFieldSplitedByType2(mname,types,typesF,pfls,locs);
1431            int sz=ret.size();
1432            PyObject *ret2=PyList_New(sz);
1433            for(int i=0;i<sz;i++)
1434              {
1435                const std::vector<DataArrayDouble *>& dadsI=ret[i];
1436                const std::vector<TypeOfField>& typesFI=typesF[i];
1437                const std::vector<std::string>& pflsI=pfls[i];
1438                const std::vector<std::string>& locsI=locs[i];
1439                PyObject *elt=PyTuple_New(2);
1440                PyTuple_SetItem(elt,0,SWIG_From_int(types[i]));
1441                int sz2=ret[i].size();
1442                PyObject *elt2=PyList_New(sz2);
1443                for(int j=0;j<sz2;j++)
1444                  {
1445                    PyObject *elt3=PyTuple_New(4);
1446                    PyTuple_SetItem(elt3,0,SWIG_From_int(typesFI[j]));
1447                    PyTuple_SetItem(elt3,1,SWIG_NewPointerObj(SWIG_as_voidptr(dadsI[j]),SWIGTYPE_p_ParaMEDMEM__DataArrayDouble, SWIG_POINTER_OWN | 0 ));
1448                    PyTuple_SetItem(elt3,2,PyString_FromString(pflsI[j].c_str()));
1449                    PyTuple_SetItem(elt3,3,PyString_FromString(locsI[j].c_str()));
1450                    PyList_SetItem(elt2,j,elt3);
1451                  }
1452                PyTuple_SetItem(elt,1,elt2);
1453                PyList_SetItem(ret2,i,elt);
1454              }
1455            return ret2;
1456          }
1457
1458          DataArrayDouble *getUndergroundDataArray() const throw(INTERP_KERNEL::Exception)
1459          {
1460            DataArrayDouble *ret=self->getUndergroundDataArray();
1461            if(ret)
1462              ret->incrRef();
1463            return ret;
1464          }
1465
1466          PyObject *getUndergroundDataArrayExt() const throw(INTERP_KERNEL::Exception)
1467          {
1468            std::vector< std::pair<std::pair<INTERP_KERNEL::NormalizedCellType,int>,std::pair<int,int> > > elt1Cpp;
1469            DataArrayDouble *elt0=self->getUndergroundDataArrayExt(elt1Cpp);
1470            if(elt0)
1471              elt0->incrRef();
1472            PyObject *ret=PyTuple_New(2);
1473            PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(elt0),SWIGTYPE_p_ParaMEDMEM__DataArrayDouble, SWIG_POINTER_OWN | 0 ));
1474            std::size_t sz=elt1Cpp.size();
1475            PyObject *elt=PyList_New(sz);
1476            for(std::size_t i=0;i<sz;i++)
1477              {
1478                PyObject *elt1=PyTuple_New(2);
1479                PyObject *elt2=PyTuple_New(2);
1480                PyTuple_SetItem(elt2,0,SWIG_From_int((int)elt1Cpp[i].first.first));
1481                PyTuple_SetItem(elt2,1,SWIG_From_int(elt1Cpp[i].first.second));
1482                PyObject *elt3=PyTuple_New(2);
1483                PyTuple_SetItem(elt3,0,SWIG_From_int(elt1Cpp[i].second.first));
1484                PyTuple_SetItem(elt3,1,SWIG_From_int(elt1Cpp[i].second.second));
1485                PyTuple_SetItem(elt1,0,elt2);
1486                PyTuple_SetItem(elt1,1,elt3);
1487                PyList_SetItem(elt,i,elt1);
1488              }
1489            PyTuple_SetItem(ret,1,elt);
1490            return ret;
1491          }
1492        }
1493   };
1494
1495   class MEDFileIntField1TS : public MEDFileAnyTypeField1TS
1496   {
1497   public:
1498     static MEDFileIntField1TS *New();
1499     static MEDFileIntField1TS *New(const std::string& fileName, bool loadAll=true) throw(INTERP_KERNEL::Exception);
1500     static MEDFileIntField1TS *New(const std::string& fileName, const std::string& fieldName, bool loadAll=true) throw(INTERP_KERNEL::Exception);
1501     static MEDFileIntField1TS *New(const std::string& fileName, const std::string& fieldName, int iteration, int order, bool loadAll=true) throw(INTERP_KERNEL::Exception);
1502     ParaMEDMEM::MEDFileField1TS *convertToDouble(bool isDeepCpyGlobs=true) const throw(INTERP_KERNEL::Exception);
1503     //
1504     void setFieldNoProfileSBT(const MEDCouplingFieldDouble *field, const DataArrayInt *arrOfVals) throw(INTERP_KERNEL::Exception);
1505     void setFieldProfile(const MEDCouplingFieldDouble *field, const DataArrayInt *arrOfVals, const MEDFileMesh *mesh, int meshDimRelToMax, const DataArrayInt *profile) throw(INTERP_KERNEL::Exception);
1506     %extend
1507     {
1508       MEDFileIntField1TS() throw(INTERP_KERNEL::Exception)
1509       {
1510         return MEDFileIntField1TS::New();
1511       }
1512
1513       MEDFileIntField1TS(const std::string& fileName, bool loadAll=true) throw(INTERP_KERNEL::Exception)
1514       {
1515         return MEDFileIntField1TS::New(fileName,loadAll);
1516       }
1517
1518       MEDFileIntField1TS(const std::string& fileName, const std::string& fieldName, bool loadAll=true) throw(INTERP_KERNEL::Exception)
1519       {
1520         return MEDFileIntField1TS::New(fileName,fieldName,loadAll);
1521       }
1522
1523       MEDFileIntField1TS(const std::string& fileName, const std::string& fieldName, int iteration, int order, bool loadAll=true) throw(INTERP_KERNEL::Exception)
1524       {
1525         return MEDFileIntField1TS::New(fileName,fieldName,iteration,order,loadAll);
1526       }
1527
1528       std::string __str__() const throw(INTERP_KERNEL::Exception)
1529       {
1530         return self->simpleRepr();
1531       }
1532
1533       PyObject *getFieldAtLevel(TypeOfField type, int meshDimRelToMax, int renumPol=0) const throw(INTERP_KERNEL::Exception)
1534       {
1535         DataArrayInt *ret1=0;
1536         MEDCouplingFieldDouble *ret0=self->getFieldAtLevel(type,meshDimRelToMax,ret1,renumPol);
1537         PyObject *ret=PyTuple_New(2);
1538         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(ret0),SWIGTYPE_p_ParaMEDMEM__MEDCouplingFieldDouble, SWIG_POINTER_OWN | 0 ));
1539         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(ret1),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
1540         return ret;
1541       }
1542
1543       PyObject *getFieldAtTopLevel(TypeOfField type, int renumPol=0) const throw(INTERP_KERNEL::Exception)
1544       {
1545         DataArrayInt *ret1=0;
1546         MEDCouplingFieldDouble *ret0=self->getFieldAtTopLevel(type,ret1,renumPol);
1547         PyObject *ret=PyTuple_New(2);
1548         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(ret0),SWIGTYPE_p_ParaMEDMEM__MEDCouplingFieldDouble, SWIG_POINTER_OWN | 0 ));
1549         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(ret1),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
1550         return ret;
1551       }
1552
1553       PyObject *getFieldOnMeshAtLevel(TypeOfField type, int meshDimRelToMax, const MEDFileMesh *mesh, int renumPol=0) const throw(INTERP_KERNEL::Exception)
1554       {
1555         DataArrayInt *ret1=0;
1556         MEDCouplingFieldDouble *ret0=self->getFieldOnMeshAtLevel(type,meshDimRelToMax,mesh,ret1,renumPol);
1557         PyObject *ret=PyTuple_New(2);
1558         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(ret0),SWIGTYPE_p_ParaMEDMEM__MEDCouplingFieldDouble, SWIG_POINTER_OWN | 0 ));
1559         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(ret1),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
1560         return ret;
1561       }
1562       
1563       PyObject *getFieldOnMeshAtLevel(TypeOfField type, const MEDCouplingMesh *mesh, int renumPol=0) const throw(INTERP_KERNEL::Exception)
1564       {
1565         DataArrayInt *ret1=0;
1566         MEDCouplingFieldDouble *ret0=self->getFieldOnMeshAtLevel(type,mesh,ret1,renumPol);
1567         PyObject *ret=PyTuple_New(2);
1568         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(ret0),SWIGTYPE_p_ParaMEDMEM__MEDCouplingFieldDouble, SWIG_POINTER_OWN | 0 ));
1569         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(ret1),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
1570         return ret;
1571       }
1572       
1573       PyObject *getFieldAtLevelOld(TypeOfField type, const std::string& mname, int meshDimRelToMax, int renumPol=0) const throw(INTERP_KERNEL::Exception)
1574       {
1575         DataArrayInt *ret1=0;
1576         MEDCouplingFieldDouble *ret0=self->getFieldAtLevelOld(type,mname,meshDimRelToMax,ret1,renumPol);
1577         PyObject *ret=PyTuple_New(2);
1578         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(ret0),SWIGTYPE_p_ParaMEDMEM__MEDCouplingFieldDouble, SWIG_POINTER_OWN | 0 ));
1579         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(ret1),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
1580         return ret;
1581       }
1582
1583       PyObject *getFieldWithProfile(TypeOfField type, int meshDimRelToMax, const MEDFileMesh *mesh) const throw(INTERP_KERNEL::Exception)
1584       {
1585          DataArrayInt *ret1=0;
1586          DataArrayInt *ret0=self->getFieldWithProfile(type,meshDimRelToMax,mesh,ret1);
1587          PyObject *ret=PyTuple_New(2);
1588          PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(ret0),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
1589          PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(ret1),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
1590          return ret;
1591       }
1592       
1593       DataArrayInt *getUndergroundDataArray() const throw(INTERP_KERNEL::Exception)
1594       {
1595         DataArrayInt *ret=self->getUndergroundDataArray();
1596         if(ret)
1597           ret->incrRef();
1598         return ret;
1599       }
1600     }
1601   };
1602
1603   class MEDFileAnyTypeFieldMultiTSIterator
1604   {
1605   public:
1606     %extend
1607     {
1608       PyObject *next() throw(INTERP_KERNEL::Exception)
1609       {
1610         MEDFileAnyTypeField1TS *ret=self->nextt();
1611         if(ret)
1612           return convertMEDFileField1TS(ret, SWIG_POINTER_OWN | 0 );
1613         else
1614           {
1615             PyErr_SetString(PyExc_StopIteration,"No more data.");
1616             return 0;
1617           }
1618       }
1619     }
1620   };
1621
1622   class MEDFileAnyTypeFieldMultiTS : public RefCountObject, public MEDFileFieldGlobsReal, public MEDFileWritable
1623   {
1624   public:
1625     static MEDFileAnyTypeFieldMultiTS *New(const std::string& fileName, bool loadAll=true) throw(INTERP_KERNEL::Exception);
1626     static MEDFileAnyTypeFieldMultiTS *New(const std::string& fileName, const std::string& fieldName, bool loadAll=true) throw(INTERP_KERNEL::Exception);
1627     MEDFileAnyTypeFieldMultiTS *deepCpy() const throw(INTERP_KERNEL::Exception);
1628     virtual MEDFileAnyTypeFieldMultiTS *shallowCpy() const throw(INTERP_KERNEL::Exception);
1629     std::string getName() const throw(INTERP_KERNEL::Exception);
1630     void setName(const std::string& name) throw(INTERP_KERNEL::Exception);
1631     std::string getDtUnit() const throw(INTERP_KERNEL::Exception);
1632     void setDtUnit(const std::string& dtUnit) throw(INTERP_KERNEL::Exception);
1633     std::string getMeshName() const throw(INTERP_KERNEL::Exception);
1634     void setMeshName(const std::string& newMeshName) throw(INTERP_KERNEL::Exception);
1635     const std::vector<std::string>& getInfo() const throw(INTERP_KERNEL::Exception);
1636     int getNumberOfComponents() const throw(INTERP_KERNEL::Exception);
1637     int getNumberOfTS() const throw(INTERP_KERNEL::Exception);
1638     void eraseEmptyTS() throw(INTERP_KERNEL::Exception);
1639     int getPosOfTimeStep(int iteration, int order) const throw(INTERP_KERNEL::Exception);
1640     int getPosGivenTime(double time, double eps=1e-8) const throw(INTERP_KERNEL::Exception);
1641     void write(const std::string& fileName, int mode) const throw(INTERP_KERNEL::Exception);
1642     void loadArrays() throw(INTERP_KERNEL::Exception);
1643     void loadArraysIfNecessary() throw(INTERP_KERNEL::Exception);
1644     void unloadArrays() throw(INTERP_KERNEL::Exception);
1645     //
1646     virtual MEDFileAnyTypeField1TS *getTimeStepAtPos(int pos) const throw(INTERP_KERNEL::Exception);
1647     MEDFileAnyTypeField1TS *getTimeStep(int iteration, int order) const throw(INTERP_KERNEL::Exception);
1648     MEDFileAnyTypeField1TS *getTimeStepGivenTime(double time, double eps=1e-8) const throw(INTERP_KERNEL::Exception);
1649     void pushBackTimeStep(MEDFileAnyTypeField1TS *f1ts) throw(INTERP_KERNEL::Exception);
1650     void synchronizeNameScope() throw(INTERP_KERNEL::Exception);
1651     %extend
1652     {
1653       int __len__() const throw(INTERP_KERNEL::Exception)
1654       {
1655         return self->getNumberOfTS();
1656       }
1657
1658       int getTimeId(PyObject *elt0) const throw(INTERP_KERNEL::Exception)
1659       {
1660         if(elt0 && PyInt_Check(elt0))
1661           {//fmts[3]
1662             int pos=PyInt_AS_LONG(elt0);
1663             return pos;
1664           }
1665         else if(elt0 && PyTuple_Check(elt0))
1666           {
1667             if(PyTuple_Size(elt0)==2)
1668               {
1669                 PyObject *o0=PyTuple_GetItem(elt0,0);
1670                 PyObject *o1=PyTuple_GetItem(elt0,1);
1671                 if(PyInt_Check(o0) && PyInt_Check(o1))
1672                   {//fmts(1,-1)
1673                     int iter=PyInt_AS_LONG(o0);
1674                     int order=PyInt_AS_LONG(o1);
1675                     return self->getPosOfTimeStep(iter,order);
1676                   }
1677                 else
1678                   throw INTERP_KERNEL::Exception("MEDFileAnyTypeFieldMultiTS::__getitem__ : invalid input param ! input is a tuple of size 2 but two integers are expected in this tuple to request a time steps !");
1679               }
1680             else
1681               throw INTERP_KERNEL::Exception("MEDFileAnyTypeFieldMultiTS::__getitem__ : invalid input param ! input is a tuple of size != 2 ! two integers are expected in this tuple to request a time steps !");
1682           }
1683         else if(elt0 && PyFloat_Check(elt0))
1684           {
1685             double val=PyFloat_AS_DOUBLE(elt0);
1686             return self->getPosGivenTime(val);
1687           }
1688         else
1689           throw INTERP_KERNEL::Exception("MEDFileAnyTypeFieldMultiTS::__getitem__ : invalid input params ! expected fmts[int], fmts[int,int] or fmts[double] to request time step !");
1690       }
1691       
1692       PyObject *getIterations() const throw(INTERP_KERNEL::Exception)
1693       {
1694         std::vector< std::pair<int,int> > res=self->getIterations();
1695         PyObject *ret=PyList_New(res.size());
1696         int rk=0;
1697         for(std::vector< std::pair<int,int> >::const_iterator iter=res.begin();iter!=res.end();iter++,rk++)
1698           {
1699             PyObject *elt=PyTuple_New(2);
1700             PyTuple_SetItem(elt,0,SWIG_From_int((*iter).first));
1701             PyTuple_SetItem(elt,1,SWIG_From_int((*iter).second));
1702             PyList_SetItem(ret,rk,elt);
1703           }
1704         return ret;
1705       }
1706       
1707       PyObject *getTimeSteps() const throw(INTERP_KERNEL::Exception)
1708       {
1709         std::vector<double> ret1;
1710         std::vector< std::pair<int,int> > ret=self->getTimeSteps(ret1);
1711         std::size_t sz=ret.size();
1712         PyObject *ret2=PyList_New(sz);
1713         for(std::size_t i=0;i<sz;i++)
1714           {
1715             PyObject *elt=PyTuple_New(3);
1716             PyTuple_SetItem(elt,0,SWIG_From_int(ret[i].first));
1717             PyTuple_SetItem(elt,1,SWIG_From_int(ret[i].second));
1718             PyTuple_SetItem(elt,2,SWIG_From_double(ret1[i]));
1719             PyList_SetItem(ret2,i,elt);
1720           }
1721         return ret2;
1722       }
1723       
1724       PyObject *getTypesOfFieldAvailable() const throw(INTERP_KERNEL::Exception)
1725       {
1726         std::vector< std::vector<TypeOfField> > ret=self->getTypesOfFieldAvailable();
1727         PyObject *ret2=PyList_New(ret.size());
1728         for(int i=0;i<(int)ret.size();i++)
1729           {
1730             const std::vector<TypeOfField>& rett=ret[i];
1731             PyObject *ret3=PyList_New(rett.size());
1732             for(int j=0;j<(int)rett.size();j++)
1733               PyList_SetItem(ret3,j,SWIG_From_int(rett[j]));
1734             PyList_SetItem(ret2,i,ret3);
1735           }
1736         return ret2;
1737       }
1738       
1739       PyObject *getNonEmptyLevels(int iteration, int order, const std::string& mname=std::string()) const throw(INTERP_KERNEL::Exception)
1740       {
1741         std::vector<int> ret1;
1742         int ret0=self->getNonEmptyLevels(iteration,order,mname,ret1);
1743         PyObject *elt=PyTuple_New(2);
1744         PyTuple_SetItem(elt,0,SWIG_From_int(ret0));
1745         PyTuple_SetItem(elt,1,convertIntArrToPyList2(ret1));
1746         return elt;
1747       }
1748       
1749       PyObject *getFieldSplitedByType(int iteration, int order, const std::string& mname=std::string()) const throw(INTERP_KERNEL::Exception)
1750       {
1751         std::vector<INTERP_KERNEL::NormalizedCellType> types;
1752         std::vector< std::vector<TypeOfField> > typesF;
1753         std::vector< std::vector<std::string> > pfls;
1754         std::vector< std::vector<std::string> > locs;
1755         std::vector< std::vector< std::pair<int,int> > > ret=self->getFieldSplitedByType(iteration,order,mname,types,typesF,pfls,locs);
1756         int sz=ret.size();
1757         PyObject *ret2=PyList_New(sz);
1758         for(int i=0;i<sz;i++)
1759           {
1760             const std::vector< std::pair<int,int> >& dadsI=ret[i];
1761             const std::vector<TypeOfField>& typesFI=typesF[i];
1762             const std::vector<std::string>& pflsI=pfls[i];
1763             const std::vector<std::string>& locsI=locs[i];
1764             PyObject *elt=PyTuple_New(2);
1765             PyTuple_SetItem(elt,0,SWIG_From_int(types[i]));
1766             int sz2=ret[i].size();
1767             PyObject *elt2=PyList_New(sz2);
1768             for(int j=0;j<sz2;j++)
1769               {
1770                 PyObject *elt3=PyTuple_New(4);
1771                 PyTuple_SetItem(elt3,0,SWIG_From_int(typesFI[j]));
1772                 PyObject *elt4=PyTuple_New(2); PyTuple_SetItem(elt4,0,SWIG_From_int(dadsI[j].first)); PyTuple_SetItem(elt4,1,SWIG_From_int(dadsI[j].second));
1773                 PyTuple_SetItem(elt3,1,elt4);
1774                 PyTuple_SetItem(elt3,2,PyString_FromString(pflsI[j].c_str()));
1775                 PyTuple_SetItem(elt3,3,PyString_FromString(locsI[j].c_str()));
1776                 PyList_SetItem(elt2,j,elt3);
1777               }
1778             PyTuple_SetItem(elt,1,elt2);
1779             PyList_SetItem(ret2,i,elt);
1780           }
1781         return ret2;
1782       }
1783
1784       std::vector<int> getTimeIds(PyObject *elts) const throw(INTERP_KERNEL::Exception)
1785       {
1786         if(PyList_Check(elts))
1787           {
1788             int sz=PyList_Size(elts);
1789             std::vector<int> ret(sz);
1790             for(int i=0;i<sz;i++)
1791               {
1792                 PyObject *elt=PyList_GetItem(elts,i);
1793                 ret[i]=ParaMEDMEM_MEDFileAnyTypeFieldMultiTS_getTimeId(self,elt);
1794               }
1795             return ret;
1796           }
1797         else
1798           {
1799             std::vector<int> ret(1);
1800             ret[0]=ParaMEDMEM_MEDFileAnyTypeFieldMultiTS_getTimeId(self,elts);
1801             return ret;
1802           }
1803       }
1804       
1805       void __delitem__(PyObject *elts) throw(INTERP_KERNEL::Exception)
1806       {
1807         if(PySlice_Check(elts))
1808           {
1809             Py_ssize_t strt=2,stp=2,step=2;
1810             PySliceObject *oC=reinterpret_cast<PySliceObject *>(elts);
1811             if(PySlice_GetIndices(oC,self->getNumberOfTS(),&strt,&stp,&step)==0)
1812               {
1813                 self->eraseTimeStepIds2(strt,stp,step);
1814               }
1815             else
1816               throw INTERP_KERNEL::Exception("MEDFileAnyTypeFieldMultiTS.__delitem__ : error in input slice !");
1817           }
1818         else
1819           {
1820             std::vector<int> idsToRemove=ParaMEDMEM_MEDFileAnyTypeFieldMultiTS_getTimeIds(self,elts);
1821             if(!idsToRemove.empty())
1822               self->eraseTimeStepIds(&idsToRemove[0],&idsToRemove[0]+idsToRemove.size());
1823           }
1824       }
1825       
1826       void eraseTimeStepIds(PyObject *li) throw(INTERP_KERNEL::Exception)
1827       {
1828         int sw;
1829         int pos1;
1830         std::vector<int> pos2;
1831         DataArrayInt *pos3=0;
1832         DataArrayIntTuple *pos4=0;
1833         convertObjToPossibleCpp1(li,sw,pos1,pos2,pos3,pos4);
1834         switch(sw)
1835           {
1836           case 1:
1837             {
1838               self->eraseTimeStepIds(&pos1,&pos1+1);
1839               return;
1840             }
1841           case 2:
1842             {
1843               if(pos2.empty())
1844                 return;
1845               self->eraseTimeStepIds(&pos2[0],&pos2[0]+pos2.size());
1846               return ;
1847             }
1848           case 3:
1849             {
1850               self->eraseTimeStepIds(pos3->begin(),pos3->end());
1851               return ;
1852             }
1853           default:
1854             throw INTERP_KERNEL::Exception("MEDFileAnyTypeFieldMultiTS::eraseTimeStepIds : unexpected input array type recognized !");
1855           }
1856       }
1857
1858       MEDFileAnyTypeFieldMultiTSIterator *__iter__() throw(INTERP_KERNEL::Exception)
1859       {
1860         return self->iterator();
1861       }
1862
1863       PyObject *__getitem__(PyObject *elt0) const throw(INTERP_KERNEL::Exception)
1864       {
1865         if(elt0 && PyList_Check(elt0))
1866           {
1867             int sz=PyList_Size(elt0);
1868             MEDCouplingAutoRefCountObjectPtr<DataArrayInt> da=DataArrayInt::New(); da->alloc(sz,1);
1869             int *pt=da->getPointer();
1870             for(int i=0;i<sz;i++,pt++)
1871               {
1872                 PyObject *elt1=PyList_GetItem(elt0,i);
1873                 *pt=MEDFileAnyTypeFieldMultiTSgetitemSingleTS__(self,elt1);
1874               }
1875             return convertMEDFileFieldMultiTS(self->buildSubPart(da->begin(),da->end()),SWIG_POINTER_OWN | 0);
1876           }
1877         else if(elt0 && PySlice_Check(elt0))
1878           {
1879             Py_ssize_t strt=2,stp=2,step=2;
1880             PySliceObject *oC=reinterpret_cast<PySliceObject *>(elt0);
1881             if(PySlice_GetIndices(oC,self->getNumberOfTS(),&strt,&stp,&step)==0)
1882               return convertMEDFileFieldMultiTS(self->buildSubPartSlice(strt,stp,step),SWIG_POINTER_OWN | 0);
1883             else
1884               throw INTERP_KERNEL::Exception("MEDFileAnyTypeFieldMultiTS.__getitem__ : error in input slice !");
1885           }
1886         else
1887           return convertMEDFileField1TS(self->getTimeStepAtPos(MEDFileAnyTypeFieldMultiTSgetitemSingleTS__(self,elt0)),SWIG_POINTER_OWN | 0);
1888       }
1889
1890       bool changeMeshNames(PyObject *li) throw(INTERP_KERNEL::Exception)
1891       {
1892         std::vector< std::pair<std::string,std::string> > modifTab=convertVecPairStStFromPy(li);
1893         return self->changeMeshNames(modifTab);
1894       }
1895
1896       PyObject *splitComponents() const throw(INTERP_KERNEL::Exception)
1897       {
1898         std::vector< MEDCouplingAutoRefCountObjectPtr< MEDFileAnyTypeFieldMultiTS > > ret=self->splitComponents();
1899         std::size_t sz=ret.size();
1900         PyObject *retPy=PyList_New(sz);
1901         for(std::size_t i=0;i<sz;i++)
1902           PyList_SetItem(retPy,i,convertMEDFileFieldMultiTS(ret[i].retn(), SWIG_POINTER_OWN | 0 ));
1903         return retPy;
1904       }
1905
1906       PyObject *splitDiscretizations() const throw(INTERP_KERNEL::Exception)
1907       {
1908         std::vector< MEDCouplingAutoRefCountObjectPtr< MEDFileAnyTypeFieldMultiTS > > ret=self->splitDiscretizations();
1909         std::size_t sz=ret.size();
1910         PyObject *retPy=PyList_New(sz);
1911         for(std::size_t i=0;i<sz;i++)
1912           PyList_SetItem(retPy,i,convertMEDFileFieldMultiTS(ret[i].retn(), SWIG_POINTER_OWN | 0 ));
1913         return retPy;
1914       }
1915
1916       void pushBackTimeSteps(PyObject *li) throw(INTERP_KERNEL::Exception)
1917       {
1918         std::vector<MEDFileAnyTypeField1TS *> tmp;
1919         convertFromPyObjVectorOfObj<ParaMEDMEM::MEDFileAnyTypeField1TS *>(li,SWIGTYPE_p_ParaMEDMEM__MEDFileAnyTypeField1TS,"MEDFileAnyTypeField1TS",tmp);
1920         self->pushBackTimeSteps(tmp);
1921       }
1922
1923       static PyObject *MEDFileAnyTypeFieldMultiTS::SplitIntoCommonTimeSeries(PyObject *li) throw(INTERP_KERNEL::Exception)
1924       {
1925         std::vector<MEDFileAnyTypeFieldMultiTS *> vectFMTS;
1926         convertFromPyObjVectorOfObj<ParaMEDMEM::MEDFileAnyTypeFieldMultiTS *>(li,SWIGTYPE_p_ParaMEDMEM__MEDFileAnyTypeFieldMultiTS,"MEDFileAnyTypeFieldMultiTS",vectFMTS);
1927         std::vector< std::vector<MEDFileAnyTypeFieldMultiTS *> > ret=MEDFileAnyTypeFieldMultiTS::SplitIntoCommonTimeSeries(vectFMTS);
1928         std::size_t sz=ret.size();
1929         PyObject *retPy=PyList_New(sz);
1930         for(std::size_t i=0;i<sz;i++)
1931           {
1932             std::size_t sz2=ret[i].size();
1933             PyObject *ret1Py=PyList_New(sz2);
1934             for(std::size_t j=0;j<sz2;j++)
1935               {
1936                 MEDFileAnyTypeFieldMultiTS *elt(ret[i][j]);
1937                 if(elt)
1938                   elt->incrRef();
1939                 PyList_SetItem(ret1Py,j,convertMEDFileFieldMultiTS(elt,SWIG_POINTER_OWN | 0 ));
1940               }
1941             PyList_SetItem(retPy,i,ret1Py);
1942           }
1943         return retPy;
1944       }
1945       
1946       static PyObject *MEDFileAnyTypeFieldMultiTS::SplitPerCommonSupport(PyObject *li, const MEDFileMesh *mesh) throw(INTERP_KERNEL::Exception)
1947       {
1948         std::vector<MEDFileAnyTypeFieldMultiTS *> vectFMTS;
1949         convertFromPyObjVectorOfObj<ParaMEDMEM::MEDFileAnyTypeFieldMultiTS *>(li,SWIGTYPE_p_ParaMEDMEM__MEDFileAnyTypeFieldMultiTS,"MEDFileAnyTypeFieldMultiTS",vectFMTS);
1950         std::vector< MEDCouplingAutoRefCountObjectPtr<MEDFileFastCellSupportComparator> > ret2;
1951         std::vector< std::vector<MEDFileAnyTypeFieldMultiTS *> > ret=MEDFileAnyTypeFieldMultiTS::SplitPerCommonSupport(vectFMTS,mesh,ret2);
1952         if(ret2.size()!=ret.size())
1953           {
1954             std::ostringstream oss; oss << "MEDFileAnyTypeFieldMultiTS::SplitPerCommonSupport (PyWrap) : internal error ! Size of 2 vectors must match ! (" << ret.size() << "!=" << ret2.size() << ") !";
1955             throw INTERP_KERNEL::Exception(oss.str().c_str());
1956           }
1957         std::size_t sz=ret.size();
1958         PyObject *retPy=PyList_New(sz);
1959         for(std::size_t i=0;i<sz;i++)
1960           {
1961             std::size_t sz2=ret[i].size();
1962             PyObject *ret0Py=PyTuple_New(2);
1963             PyObject *ret1Py=PyList_New(sz2);
1964             for(std::size_t j=0;j<sz2;j++)
1965               {
1966                 MEDFileAnyTypeFieldMultiTS *elt(ret[i][j]);
1967                 if(elt)
1968                   elt->incrRef();
1969                 PyList_SetItem(ret1Py,j,convertMEDFileFieldMultiTS(elt,SWIG_POINTER_OWN | 0 ));
1970               }
1971             PyTuple_SetItem(ret0Py,0,ret1Py);
1972             PyTuple_SetItem(ret0Py,1,SWIG_NewPointerObj(SWIG_as_voidptr(ret2[i].retn()),SWIGTYPE_p_ParaMEDMEM__MEDFileFastCellSupportComparator, SWIG_POINTER_OWN | 0 ));
1973             PyList_SetItem(retPy,i,ret0Py);
1974           }
1975         return retPy;
1976       }
1977     }
1978   };
1979
1980   class MEDFileFieldMultiTS : public MEDFileAnyTypeFieldMultiTS
1981   {
1982   public:
1983     static MEDFileFieldMultiTS *New() throw(INTERP_KERNEL::Exception);
1984     static MEDFileFieldMultiTS *New(const std::string& fileName, bool loadAll=true) throw(INTERP_KERNEL::Exception);
1985     static MEDFileFieldMultiTS *New(const std::string& fileName, const std::string& fieldName, bool loadAll=true) throw(INTERP_KERNEL::Exception);
1986     //
1987     MEDCouplingFieldDouble *getFieldAtLevel(TypeOfField type, int iteration, int order, int meshDimRelToMax, int renumPol=0) const throw(INTERP_KERNEL::Exception);
1988     MEDCouplingFieldDouble *getFieldAtTopLevel(TypeOfField type, int iteration, int order, int renumPol=0) const throw(INTERP_KERNEL::Exception);
1989     MEDCouplingFieldDouble *getFieldOnMeshAtLevel(TypeOfField type, int iteration, int order, int meshDimRelToMax, const MEDFileMesh *mesh, int renumPol=0) const throw(INTERP_KERNEL::Exception);
1990     MEDCouplingFieldDouble *getFieldOnMeshAtLevel(TypeOfField type, int iteration, int order, const MEDCouplingMesh *mesh, int renumPol=0) const throw(INTERP_KERNEL::Exception);
1991     MEDCouplingFieldDouble *getFieldAtLevelOld(TypeOfField type, const std::string& mname, int iteration, int order, int meshDimRelToMax, int renumPol=0) const throw(INTERP_KERNEL::Exception);
1992     //
1993     void appendFieldNoProfileSBT(const MEDCouplingFieldDouble *field) throw(INTERP_KERNEL::Exception);
1994     void appendFieldProfile(const MEDCouplingFieldDouble *field, const MEDFileMesh *mesh, int meshDimRelToMax, const DataArrayInt *profile) throw(INTERP_KERNEL::Exception);
1995     ParaMEDMEM::MEDFileIntFieldMultiTS *convertToInt(bool isDeepCpyGlobs=true) const throw(INTERP_KERNEL::Exception);
1996     %extend
1997        {
1998          MEDFileFieldMultiTS()
1999          {
2000            return MEDFileFieldMultiTS::New();
2001          }
2002
2003          MEDFileFieldMultiTS(const std::string& fileName, bool loadAll=true) throw(INTERP_KERNEL::Exception)
2004          {
2005            return MEDFileFieldMultiTS::New(fileName,loadAll);
2006          }
2007
2008          MEDFileFieldMultiTS(const std::string& fileName, const std::string& fieldName, bool loadAll=true) throw(INTERP_KERNEL::Exception)
2009          {
2010            return MEDFileFieldMultiTS::New(fileName,fieldName,loadAll);
2011          }
2012          
2013          std::string __str__() const throw(INTERP_KERNEL::Exception)
2014          {
2015            return self->simpleRepr();
2016          }
2017
2018          PyObject *getFieldWithProfile(TypeOfField type, int iteration, int order, int meshDimRelToMax, const MEDFileMesh *mesh) const throw(INTERP_KERNEL::Exception)
2019          {
2020            DataArrayInt *ret1=0;
2021            DataArrayDouble *ret0=self->getFieldWithProfile(type,iteration,order,meshDimRelToMax,mesh,ret1);
2022            PyObject *ret=PyTuple_New(2);
2023            PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(ret0),SWIGTYPE_p_ParaMEDMEM__DataArrayDouble, SWIG_POINTER_OWN | 0 ));
2024            PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(ret1),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2025            return ret;
2026          }
2027
2028          PyObject *getFieldSplitedByType2(int iteration, int order, const std::string& mname=std::string()) const throw(INTERP_KERNEL::Exception)
2029          {
2030            std::vector<INTERP_KERNEL::NormalizedCellType> types;
2031            std::vector< std::vector<TypeOfField> > typesF;
2032            std::vector< std::vector<std::string> > pfls;
2033            std::vector< std::vector<std::string> > locs;
2034            std::vector< std::vector<DataArrayDouble *> > ret=self->getFieldSplitedByType2(iteration,order,mname,types,typesF,pfls,locs);
2035            int sz=ret.size();
2036            PyObject *ret2=PyList_New(sz);
2037            for(int i=0;i<sz;i++)
2038              {
2039                const std::vector<DataArrayDouble *>& dadsI=ret[i];
2040                const std::vector<TypeOfField>& typesFI=typesF[i];
2041                const std::vector<std::string>& pflsI=pfls[i];
2042                const std::vector<std::string>& locsI=locs[i];
2043                PyObject *elt=PyTuple_New(2);
2044                PyTuple_SetItem(elt,0,SWIG_From_int(types[i]));
2045                int sz2=ret[i].size();
2046                PyObject *elt2=PyList_New(sz2);
2047                for(int j=0;j<sz2;j++)
2048                  {
2049                    PyObject *elt3=PyTuple_New(4);
2050                    PyTuple_SetItem(elt3,0,SWIG_From_int(typesFI[j]));
2051                    PyTuple_SetItem(elt3,1,SWIG_NewPointerObj(SWIG_as_voidptr(dadsI[j]),SWIGTYPE_p_ParaMEDMEM__DataArrayDouble, SWIG_POINTER_OWN | 0 ));
2052                    PyTuple_SetItem(elt3,2,PyString_FromString(pflsI[j].c_str()));
2053                    PyTuple_SetItem(elt3,3,PyString_FromString(locsI[j].c_str()));
2054                    PyList_SetItem(elt2,j,elt3);
2055                  }
2056                PyTuple_SetItem(elt,1,elt2);
2057                PyList_SetItem(ret2,i,elt);
2058              }
2059            return ret2;
2060          }
2061          DataArrayDouble *getUndergroundDataArray(int iteration, int order) const throw(INTERP_KERNEL::Exception)
2062          {
2063            DataArrayDouble *ret=self->getUndergroundDataArray(iteration,order);
2064            if(ret)
2065              ret->incrRef();
2066            return ret;
2067          }
2068          
2069          PyObject *getUndergroundDataArrayExt(int iteration, int order) const throw(INTERP_KERNEL::Exception)
2070          {
2071            std::vector< std::pair<std::pair<INTERP_KERNEL::NormalizedCellType,int>,std::pair<int,int> > > elt1Cpp;
2072            DataArrayDouble *elt0=self->getUndergroundDataArrayExt(iteration,order,elt1Cpp);
2073            if(elt0)
2074              elt0->incrRef();
2075            PyObject *ret=PyTuple_New(2);
2076            PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(elt0),SWIGTYPE_p_ParaMEDMEM__DataArrayDouble, SWIG_POINTER_OWN | 0 ));
2077            std::size_t sz=elt1Cpp.size();
2078            PyObject *elt=PyList_New(sz);
2079            for(std::size_t i=0;i<sz;i++)
2080              {
2081                PyObject *elt1=PyTuple_New(2);
2082                PyObject *elt2=PyTuple_New(2);
2083                PyTuple_SetItem(elt2,0,SWIG_From_int(elt1Cpp[i].first.first));
2084                PyTuple_SetItem(elt2,1,SWIG_From_int(elt1Cpp[i].first.second));
2085                PyObject *elt3=PyTuple_New(2);
2086                PyTuple_SetItem(elt3,0,SWIG_From_int(elt1Cpp[i].second.first));
2087                PyTuple_SetItem(elt3,1,SWIG_From_int(elt1Cpp[i].second.second));
2088                PyTuple_SetItem(elt1,0,elt2);
2089                PyTuple_SetItem(elt1,1,elt3);
2090                PyList_SetItem(elt,i,elt1);
2091              }
2092            PyTuple_SetItem(ret,1,elt);
2093            return ret;
2094          }
2095        }
2096   };
2097
2098   class MEDFileFieldsIterator
2099   {
2100   public:
2101     %extend
2102     {
2103       PyObject *next() throw(INTERP_KERNEL::Exception)
2104       {
2105         MEDFileAnyTypeFieldMultiTS *ret=self->nextt();
2106         if(ret)
2107           return convertMEDFileFieldMultiTS(ret, SWIG_POINTER_OWN | 0 );
2108         else
2109           {
2110             PyErr_SetString(PyExc_StopIteration,"No more data.");
2111             return 0;
2112           }
2113       }
2114     }
2115   };
2116
2117   class MEDFileIntFieldMultiTS : public MEDFileAnyTypeFieldMultiTS
2118   {
2119   public:
2120     static MEDFileIntFieldMultiTS *New();
2121     static MEDFileIntFieldMultiTS *New(const std::string& fileName, bool loadAll=true) throw(INTERP_KERNEL::Exception);
2122     static MEDFileIntFieldMultiTS *New(const std::string& fileName, const std::string& fieldName, bool loadAll=true) throw(INTERP_KERNEL::Exception);
2123     //
2124     void appendFieldNoProfileSBT(const MEDCouplingFieldDouble *field, const DataArrayInt *arrOfVals) throw(INTERP_KERNEL::Exception);
2125     void appendFieldProfile(const MEDCouplingFieldDouble *field, const DataArrayInt *arrOfVals, const MEDFileMesh *mesh, int meshDimRelToMax, const DataArrayInt *profile) throw(INTERP_KERNEL::Exception);
2126     ParaMEDMEM::MEDFileFieldMultiTS *convertToDouble(bool isDeepCpyGlobs=true) const throw(INTERP_KERNEL::Exception);
2127     %extend
2128     {
2129       MEDFileIntFieldMultiTS()
2130       {
2131         return MEDFileIntFieldMultiTS::New();
2132       }
2133       
2134       MEDFileIntFieldMultiTS(const std::string& fileName, bool loadAll=true) throw(INTERP_KERNEL::Exception)
2135       {
2136         return MEDFileIntFieldMultiTS::New(fileName,loadAll);
2137       }
2138       
2139       MEDFileIntFieldMultiTS(const std::string& fileName, const std::string& fieldName, bool loadAll=true) throw(INTERP_KERNEL::Exception)
2140       {
2141         return MEDFileIntFieldMultiTS::New(fileName,fieldName,loadAll);
2142       }
2143
2144       std::string __str__() const throw(INTERP_KERNEL::Exception)
2145       {
2146         return self->simpleRepr();
2147       }
2148
2149       PyObject *getFieldAtLevel(TypeOfField type, int iteration, int order, int meshDimRelToMax, int renumPol=0) const throw(INTERP_KERNEL::Exception)
2150       {
2151         DataArrayInt *ret1=0;
2152         MEDCouplingFieldDouble *ret0=self->getFieldAtLevel(type,iteration,order,meshDimRelToMax,ret1,renumPol);
2153         PyObject *ret=PyTuple_New(2);
2154         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(ret0),SWIGTYPE_p_ParaMEDMEM__MEDCouplingFieldDouble, SWIG_POINTER_OWN | 0 ));
2155         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(ret1),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2156         return ret;
2157       }
2158
2159       PyObject *getFieldAtTopLevel(TypeOfField type, int iteration, int order, int renumPol=0) const throw(INTERP_KERNEL::Exception)
2160       {
2161         DataArrayInt *ret1=0;
2162         MEDCouplingFieldDouble *ret0=self->getFieldAtTopLevel(type,iteration,order,ret1,renumPol);
2163         PyObject *ret=PyTuple_New(2);
2164         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(ret0),SWIGTYPE_p_ParaMEDMEM__MEDCouplingFieldDouble, SWIG_POINTER_OWN | 0 ));
2165         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(ret1),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2166         return ret;
2167       }
2168
2169       PyObject *getFieldOnMeshAtLevel(TypeOfField type, int iteration, int order, int meshDimRelToMax, const MEDFileMesh *mesh, int renumPol=0) const throw(INTERP_KERNEL::Exception)
2170       {
2171         DataArrayInt *ret1=0;
2172         MEDCouplingFieldDouble *ret0=self->getFieldOnMeshAtLevel(type,iteration,order,meshDimRelToMax,mesh,ret1,renumPol);
2173         PyObject *ret=PyTuple_New(2);
2174         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(ret0),SWIGTYPE_p_ParaMEDMEM__MEDCouplingFieldDouble, SWIG_POINTER_OWN | 0 ));
2175         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(ret1),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2176         return ret;
2177       }
2178       
2179       PyObject *getFieldOnMeshAtLevel(TypeOfField type, int iteration, int order, const MEDCouplingMesh *mesh, int renumPol=0) const throw(INTERP_KERNEL::Exception)
2180       {
2181         DataArrayInt *ret1=0;
2182         MEDCouplingFieldDouble *ret0=self->getFieldOnMeshAtLevel(type,iteration,order,mesh,ret1,renumPol);
2183         PyObject *ret=PyTuple_New(2);
2184         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(ret0),SWIGTYPE_p_ParaMEDMEM__MEDCouplingFieldDouble, SWIG_POINTER_OWN | 0 ));
2185         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(ret1),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2186         return ret;
2187       }
2188       
2189       PyObject *getFieldAtLevelOld(TypeOfField type, int iteration, int order, const std::string& mname, int meshDimRelToMax, int renumPol=0) const throw(INTERP_KERNEL::Exception)
2190       {
2191         DataArrayInt *ret1=0;
2192         MEDCouplingFieldDouble *ret0=self->getFieldAtLevelOld(type,iteration,order,mname,meshDimRelToMax,ret1,renumPol);
2193         PyObject *ret=PyTuple_New(2);
2194         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(ret0),SWIGTYPE_p_ParaMEDMEM__MEDCouplingFieldDouble, SWIG_POINTER_OWN | 0 ));
2195         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(ret1),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2196         return ret;
2197       }
2198
2199       PyObject *getFieldWithProfile(TypeOfField type, int iteration, int order, int meshDimRelToMax, const MEDFileMesh *mesh) const throw(INTERP_KERNEL::Exception)
2200       {
2201          DataArrayInt *ret1=0;
2202          DataArrayInt *ret0=self->getFieldWithProfile(type,iteration,order,meshDimRelToMax,mesh,ret1);
2203          PyObject *ret=PyTuple_New(2);
2204          PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(ret0),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2205          PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(ret1),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2206          return ret;
2207       }
2208
2209       DataArrayInt *getUndergroundDataArray(int iteration, int order) const throw(INTERP_KERNEL::Exception)
2210       {
2211         DataArrayInt *ret=self->getUndergroundDataArray(iteration,order);
2212         if(ret)
2213           ret->incrRef();
2214         return ret;
2215       }
2216     }
2217   };
2218
2219   class MEDFileFields : public RefCountObject, public MEDFileFieldGlobsReal, public MEDFileWritable
2220   {
2221   public:
2222     static MEDFileFields *New() throw(INTERP_KERNEL::Exception);
2223     static MEDFileFields *New(const std::string& fileName, bool loadAll=true) throw(INTERP_KERNEL::Exception);
2224     MEDFileFields *deepCpy() const throw(INTERP_KERNEL::Exception);
2225     MEDFileFields *shallowCpy() const throw(INTERP_KERNEL::Exception);
2226     void loadArrays() throw(INTERP_KERNEL::Exception);
2227     void loadArraysIfNecessary() throw(INTERP_KERNEL::Exception);
2228     void unloadArrays() throw(INTERP_KERNEL::Exception);
2229     void write(const std::string& fileName, int mode) const throw(INTERP_KERNEL::Exception);
2230     int getNumberOfFields() const;
2231     std::vector<std::string> getFieldsNames() const throw(INTERP_KERNEL::Exception);
2232     std::vector<std::string> getMeshesNames() const throw(INTERP_KERNEL::Exception);
2233     //
2234     void resize(int newSize) throw(INTERP_KERNEL::Exception);
2235     void pushField(MEDFileAnyTypeFieldMultiTS *field) throw(INTERP_KERNEL::Exception);
2236     void setFieldAtPos(int i, MEDFileAnyTypeFieldMultiTS *field) throw(INTERP_KERNEL::Exception);
2237     int getPosFromFieldName(const std::string& fieldName) const throw(INTERP_KERNEL::Exception);
2238     MEDFileAnyTypeFieldMultiTS *getFieldAtPos(int i) const throw(INTERP_KERNEL::Exception);
2239     MEDFileAnyTypeFieldMultiTS *getFieldWithName(const std::string& fieldName) const throw(INTERP_KERNEL::Exception);
2240     MEDFileFields *partOfThisLyingOnSpecifiedMeshName(const std::string& meshName) const throw(INTERP_KERNEL::Exception);
2241     void destroyFieldAtPos(int i) throw(INTERP_KERNEL::Exception);
2242     %extend
2243        {
2244          MEDFileFields()
2245          {
2246            return MEDFileFields::New();
2247          }
2248
2249          MEDFileFields(const std::string& fileName, bool loadAll=true) throw(INTERP_KERNEL::Exception)
2250          {
2251            return MEDFileFields::New(fileName,loadAll);
2252          }
2253          
2254          std::string __str__() const throw(INTERP_KERNEL::Exception)
2255          {
2256            return self->simpleRepr();
2257          }
2258
2259          PyObject *getCommonIterations() const throw(INTERP_KERNEL::Exception)
2260          {
2261            bool ret1;
2262            std::vector< std::pair<int,int> > ret0=self->getCommonIterations(ret1);
2263            PyObject *ret=PyTuple_New(2);
2264            PyObject *ret_0=PyList_New(ret0.size());
2265            int rk=0;
2266            for(std::vector< std::pair<int,int> >::const_iterator iter=ret0.begin();iter!=ret0.end();iter++,rk++)
2267              {
2268                PyObject *elt=PyTuple_New(2);
2269                PyTuple_SetItem(elt,0,SWIG_From_int((*iter).first));
2270                PyTuple_SetItem(elt,1,SWIG_From_int((*iter).second));
2271                PyList_SetItem(ret_0,rk,elt);
2272              }
2273            PyTuple_SetItem(ret,0,ret_0);
2274            PyObject *ret_1=ret1?Py_True:Py_False; Py_XINCREF(ret_1);
2275            PyTuple_SetItem(ret,1,ret_1);
2276            return ret;
2277          }
2278
2279          MEDFileFields *partOfThisLyingOnSpecifiedTimeSteps(PyObject *timeSteps) const throw(INTERP_KERNEL::Exception)
2280          {
2281            std::vector< std::pair<int,int> > ts=convertTimePairIdsFromPy(timeSteps);
2282            return self->partOfThisLyingOnSpecifiedTimeSteps(ts);
2283          }
2284
2285          MEDFileFields *partOfThisNotLyingOnSpecifiedTimeSteps(PyObject *timeSteps) const throw(INTERP_KERNEL::Exception)
2286          {
2287            std::vector< std::pair<int,int> > ts=convertTimePairIdsFromPy(timeSteps);
2288            return self->partOfThisNotLyingOnSpecifiedTimeSteps(ts);
2289          }
2290          
2291          PyObject *__getitem__(PyObject *obj) throw(INTERP_KERNEL::Exception)
2292          {
2293            if(obj && PyList_Check(obj))
2294              {
2295                int sz=PyList_Size(obj);
2296                MEDCouplingAutoRefCountObjectPtr<DataArrayInt> da=DataArrayInt::New(); da->alloc(sz,1);
2297                int *pt=da->getPointer();
2298                for(int i=0;i<sz;i++,pt++)
2299                  {
2300                    PyObject *elt1=PyList_GetItem(obj,i);
2301                    *pt=MEDFileFieldsgetitemSingleTS__(self,elt1);
2302                  }
2303                return SWIG_NewPointerObj(SWIG_as_voidptr(self->buildSubPart(da->begin(),da->end())),SWIGTYPE_p_ParaMEDMEM__MEDFileFields, SWIG_POINTER_OWN | 0 );
2304              }
2305            else
2306              return convertMEDFileFieldMultiTS(self->getFieldAtPos(MEDFileFieldsgetitemSingleTS__(self,obj)), SWIG_POINTER_OWN | 0 );
2307          }
2308
2309          MEDFileFields *__setitem__(int obj, MEDFileFieldMultiTS *field) throw(INTERP_KERNEL::Exception)
2310          {
2311            self->setFieldAtPos(obj,field);
2312            return self;
2313          }
2314
2315          int __len__() const throw(INTERP_KERNEL::Exception)
2316          {
2317            return self->getNumberOfFields();
2318          }
2319
2320          MEDFileFieldsIterator *__iter__() throw(INTERP_KERNEL::Exception)
2321          {
2322            return self->iterator();
2323          }
2324          
2325          bool changeMeshNames(PyObject *li) throw(INTERP_KERNEL::Exception)
2326          {
2327            std::vector< std::pair<std::string,std::string> > modifTab=convertVecPairStStFromPy(li);
2328            return self->changeMeshNames(modifTab);
2329          }
2330
2331          int getPosOfField(PyObject *elt0) const throw(INTERP_KERNEL::Exception)
2332          {
2333            if(elt0 && PyInt_Check(elt0))
2334              {//fmts[3]
2335                return PyInt_AS_LONG(elt0);
2336              }
2337            else if(elt0 && PyString_Check(elt0))
2338              return self->getPosFromFieldName(PyString_AsString(elt0));
2339            else
2340              throw INTERP_KERNEL::Exception("MEDFileFields::getPosOfField : invalid input params ! expected fields[int], fields[string_of_field_name] !");
2341          }
2342          
2343          std::vector<int> getPosOfFields(PyObject *elts) const throw(INTERP_KERNEL::Exception)
2344          {
2345            if(PyList_Check(elts))
2346              {
2347                int sz=PyList_Size(elts);
2348                std::vector<int> ret(sz);
2349                for(int i=0;i<sz;i++)
2350                  {
2351                    PyObject *elt=PyList_GetItem(elts,i);
2352                    ret[i]=ParaMEDMEM_MEDFileFields_getPosOfField(self,elt);
2353                  }
2354                return ret;
2355              }
2356            else
2357              {
2358                std::vector<int> ret(1);
2359                ret[0]=ParaMEDMEM_MEDFileFields_getPosOfField(self,elts);
2360                return ret;
2361              }
2362          }
2363
2364          void pushFields(PyObject *fields) throw(INTERP_KERNEL::Exception)
2365          {
2366            std::vector<MEDFileAnyTypeFieldMultiTS *> tmp;
2367            convertFromPyObjVectorOfObj<ParaMEDMEM::MEDFileAnyTypeFieldMultiTS *>(fields,SWIGTYPE_p_ParaMEDMEM__MEDFileAnyTypeFieldMultiTS,"MEDFileAnyTypeFieldMultiTS",tmp);
2368            self->pushFields(tmp);
2369          }
2370          
2371          void __delitem__(PyObject *elts) throw(INTERP_KERNEL::Exception)
2372          {
2373            if(elts && PySlice_Check(elts))
2374              {
2375                Py_ssize_t strt=2,stp=2,step=2;
2376                PySliceObject *oC=reinterpret_cast<PySliceObject *>(elts);
2377                if(PySlice_GetIndices(oC,self->getNumberOfFields(),&strt,&stp,&step)==0)
2378                  self->destroyFieldsAtPos2(strt,stp,step);
2379                else
2380                  throw INTERP_KERNEL::Exception("MEDFileFields.__delitem__ : error in input slice !");
2381              }
2382            else
2383              {
2384                std::vector<int> idsToRemove=ParaMEDMEM_MEDFileFields_getPosOfFields(self,elts);
2385                if(!idsToRemove.empty())
2386                  self->destroyFieldsAtPos(&idsToRemove[0],&idsToRemove[0]+idsToRemove.size());
2387              }
2388          }
2389        }
2390   };
2391
2392   class MEDFileParameter1TS : public RefCountObject
2393   {
2394   public:
2395     void setIteration(int it);
2396     int getIteration() const;
2397     void setOrder(int order);
2398     int getOrder() const;
2399     void setTimeValue(double time);
2400     void setTime(int dt, int it, double time);
2401     double getTime(int& dt, int& it);
2402     double getTimeValue() const;
2403   };
2404
2405   class MEDFileParameterDouble1TSWTI : public MEDFileParameter1TS
2406   {
2407   public:
2408     void setValue(double val) throw(INTERP_KERNEL::Exception);
2409     double getValue() const throw(INTERP_KERNEL::Exception);
2410     std::string simpleRepr() const throw(INTERP_KERNEL::Exception);
2411     %extend
2412     {
2413       std::string __str__() const throw(INTERP_KERNEL::Exception)
2414       {
2415         return self->simpleRepr();
2416       }
2417     }
2418   };
2419
2420   class MEDFileParameterTinyInfo : public MEDFileWritable
2421   {
2422   public:
2423     void setDescription(const std::string& name);
2424     std::string getDescription() const;
2425     void setTimeUnit(const std::string& unit);
2426     std::string getTimeUnit() const;
2427   };
2428
2429   class MEDFileParameterDouble1TS : public MEDFileParameterDouble1TSWTI, public MEDFileParameterTinyInfo
2430   {
2431   public:
2432     static MEDFileParameterDouble1TS *New();
2433     static MEDFileParameterDouble1TS *New(const std::string& fileName) throw(INTERP_KERNEL::Exception);
2434     static MEDFileParameterDouble1TS *New(const std::string& fileName, const std::string& paramName) throw(INTERP_KERNEL::Exception);
2435     static MEDFileParameterDouble1TS *New(const std::string& fileName, const std::string& paramName, int dt, int it) throw(INTERP_KERNEL::Exception);
2436     virtual MEDFileParameter1TS *deepCpy() const throw(INTERP_KERNEL::Exception);
2437     virtual std::string simpleRepr() const throw(INTERP_KERNEL::Exception);
2438     void setName(const std::string& name) throw(INTERP_KERNEL::Exception);
2439     std::string getName() const throw(INTERP_KERNEL::Exception);
2440     void write(const std::string& fileName, int mode) const throw(INTERP_KERNEL::Exception);
2441     %extend
2442     {
2443       MEDFileParameterDouble1TS()
2444       {
2445         return MEDFileParameterDouble1TS::New();
2446       }
2447       
2448       MEDFileParameterDouble1TS(const std::string& fileName) throw(INTERP_KERNEL::Exception)
2449       {
2450         return MEDFileParameterDouble1TS::New(fileName);
2451       }
2452
2453       MEDFileParameterDouble1TS(const std::string& fileName, const std::string& paramName) throw(INTERP_KERNEL::Exception)
2454       {
2455         return MEDFileParameterDouble1TS::New(fileName,paramName);
2456       }
2457
2458       MEDFileParameterDouble1TS(const std::string& fileName, const std::string& paramName, int dt, int it) throw(INTERP_KERNEL::Exception)
2459       {
2460         return MEDFileParameterDouble1TS::New(fileName,paramName,dt,it);
2461       }
2462
2463       std::string __str__() const throw(INTERP_KERNEL::Exception)
2464       {
2465         return self->simpleRepr();
2466       }
2467
2468       PyObject *isEqual(const MEDFileParameter1TS *other, double eps) const throw(INTERP_KERNEL::Exception)
2469       {
2470         std::string what;
2471         bool ret0=self->isEqual(other,eps,what);
2472         PyObject *res=PyList_New(2);
2473         PyObject *ret0Py=ret0?Py_True:Py_False;
2474         Py_XINCREF(ret0Py);
2475         PyList_SetItem(res,0,ret0Py);
2476         PyList_SetItem(res,1,PyString_FromString(what.c_str()));
2477         return res;
2478       }
2479     }
2480   };
2481
2482   class MEDFileParameterMultiTS : public RefCountObject, public MEDFileParameterTinyInfo
2483   {
2484   public:
2485     static MEDFileParameterMultiTS *New();
2486     static MEDFileParameterMultiTS *New(const std::string& fileName) throw(INTERP_KERNEL::Exception);
2487     static MEDFileParameterMultiTS *New(const std::string& fileName, const std::string& paramName) throw(INTERP_KERNEL::Exception);
2488     std::string getName() const;
2489     void setName(const std::string& name);
2490     MEDFileParameterMultiTS *deepCpy() const throw(INTERP_KERNEL::Exception);
2491     void write(const std::string& fileName, int mode) const throw(INTERP_KERNEL::Exception);
2492     std::string simpleRepr() const throw(INTERP_KERNEL::Exception);
2493     void appendValue(int dt, int it, double time, double val) throw(INTERP_KERNEL::Exception);
2494     double getDoubleValue(int iteration, int order) const throw(INTERP_KERNEL::Exception);
2495     int getPosOfTimeStep(int iteration, int order) const throw(INTERP_KERNEL::Exception);
2496     int getPosGivenTime(double time, double eps=1e-8) const throw(INTERP_KERNEL::Exception);
2497     %extend
2498     {
2499       MEDFileParameterMultiTS()
2500       {
2501         return MEDFileParameterMultiTS::New();
2502       }
2503       
2504       MEDFileParameterMultiTS(const std::string& fileName)
2505       {
2506         return MEDFileParameterMultiTS::New(fileName);
2507       }
2508
2509       MEDFileParameterMultiTS(const std::string& fileName, const std::string& paramName)
2510       {
2511         return MEDFileParameterMultiTS::New(fileName,paramName);
2512       }
2513
2514       std::string __str__() const throw(INTERP_KERNEL::Exception)
2515       {
2516         return self->simpleRepr();
2517       }
2518       
2519       PyObject *isEqual(const MEDFileParameterMultiTS *other, double eps) const throw(INTERP_KERNEL::Exception)
2520       {
2521         std::string what;
2522         bool ret0=self->isEqual(other,eps,what);
2523         PyObject *res=PyList_New(2);
2524         PyObject *ret0Py=ret0?Py_True:Py_False;
2525         Py_XINCREF(ret0Py);
2526         PyList_SetItem(res,0,ret0Py);
2527         PyList_SetItem(res,1,PyString_FromString(what.c_str()));
2528         return res;
2529       }
2530       
2531       void eraseTimeStepIds(PyObject *ids) throw(INTERP_KERNEL::Exception)
2532       {
2533         int sw;
2534         int pos1;
2535         std::vector<int> pos2;
2536         DataArrayInt *pos3=0;
2537         DataArrayIntTuple *pos4=0;
2538         convertObjToPossibleCpp1(ids,sw,pos1,pos2,pos3,pos4);
2539         switch(sw)
2540           {
2541           case 1:
2542             {
2543               self->eraseTimeStepIds(&pos1,&pos1+1);
2544               return;
2545             }
2546           case 2:
2547             {
2548               if(pos2.empty())
2549                 return;
2550               self->eraseTimeStepIds(&pos2[0],&pos2[0]+pos2.size());
2551               return ;
2552             }
2553           case 3:
2554             {
2555               self->eraseTimeStepIds(pos3->begin(),pos3->end());
2556               return ;
2557             }
2558           default:
2559             throw INTERP_KERNEL::Exception("MEDFileParameterMultiTS::eraseTimeStepIds : unexpected input array type recognized !");
2560           }
2561       }
2562
2563       int getTimeStepId(PyObject *elt0) const throw(INTERP_KERNEL::Exception)
2564       {
2565         if(elt0 && PyInt_Check(elt0))
2566           {//fmts[3]
2567             int pos=PyInt_AS_LONG(elt0);
2568             return pos;
2569           }
2570         else if(elt0 && PyTuple_Check(elt0))
2571           {
2572             if(PyTuple_Size(elt0)==2)
2573               {
2574                 PyObject *o0=PyTuple_GetItem(elt0,0);
2575                 PyObject *o1=PyTuple_GetItem(elt0,1);
2576                 if(PyInt_Check(o0) && PyInt_Check(o1))
2577                   {//fmts(1,-1)
2578                     int iter=PyInt_AS_LONG(o0);
2579                     int order=PyInt_AS_LONG(o1);
2580                     return self->getPosOfTimeStep(iter,order);
2581                   }
2582                 else
2583                   throw INTERP_KERNEL::Exception("MEDFileParameterMultiTS::getTimeStepId : invalid input param ! input is a tuple of size 2 but two integers are expected in this tuple to request a time steps !");
2584               }
2585             else
2586               throw INTERP_KERNEL::Exception("MEDFileParameterMultiTS::getTimeStepId : invalid input param ! input is a tuple of size != 2 ! two integers are expected in this tuple to request a time steps !");
2587           }
2588         else if(elt0 && PyFloat_Check(elt0))
2589           {
2590             double val=PyFloat_AS_DOUBLE(elt0);
2591             return self->getPosGivenTime(val);
2592           }
2593         else
2594           throw INTERP_KERNEL::Exception("MEDFileParameterMultiTS::getTimeStepId : invalid input params ! expected fmts[int], fmts[int,int] or fmts[double] to request time step !");
2595       }
2596
2597       MEDFileParameter1TS *__getitem__(PyObject *elt0) const throw(INTERP_KERNEL::Exception)
2598       {
2599         MEDFileParameter1TS *ret=self->getTimeStepAtPos(ParaMEDMEM_MEDFileParameterMultiTS_getTimeStepId(self,elt0));
2600         if(ret)
2601           ret->incrRef();
2602         return ret;
2603       }
2604
2605       std::vector<int> getTimeStepIds(PyObject *elts) const throw(INTERP_KERNEL::Exception)
2606       {
2607         if(PyList_Check(elts))
2608           {
2609             int sz=PyList_Size(elts);
2610             std::vector<int> ret(sz);
2611             for(int i=0;i<sz;i++)
2612               {
2613                 PyObject *elt=PyList_GetItem(elts,i);
2614                 ret[i]=ParaMEDMEM_MEDFileParameterMultiTS_getTimeStepId(self,elt);
2615               }
2616             return ret;
2617           }
2618         else
2619           {
2620             std::vector<int> ret(1);
2621             ret[0]=ParaMEDMEM_MEDFileParameterMultiTS_getTimeStepId(self,elts);
2622             return ret;
2623           }
2624       }
2625
2626       void __delitem__(PyObject *elts) throw(INTERP_KERNEL::Exception)
2627       {
2628         std::vector<int> idsToRemove=ParaMEDMEM_MEDFileParameterMultiTS_getTimeStepIds(self,elts);
2629         if(!idsToRemove.empty())
2630           self->eraseTimeStepIds(&idsToRemove[0],&idsToRemove[0]+idsToRemove.size());
2631       }
2632       
2633       MEDFileParameter1TS *getTimeStepAtPos(int posId) const throw(INTERP_KERNEL::Exception)
2634       {
2635         MEDFileParameter1TS *ret=self->getTimeStepAtPos(posId);
2636         if(ret)
2637           ret->incrRef();
2638         return ret;
2639       }
2640
2641       PyObject *getIterations() const throw(INTERP_KERNEL::Exception)
2642       {
2643         std::vector< std::pair<int,int> > res=self->getIterations();
2644         PyObject *ret=PyList_New(res.size());
2645         int rk=0;
2646         for(std::vector< std::pair<int,int> >::const_iterator iter=res.begin();iter!=res.end();iter++,rk++)
2647           {
2648             PyObject *elt=PyTuple_New(2);
2649             PyTuple_SetItem(elt,0,SWIG_From_int((*iter).first));
2650             PyTuple_SetItem(elt,1,SWIG_From_int((*iter).second));
2651             PyList_SetItem(ret,rk,elt);
2652           }
2653         return ret;
2654       }
2655
2656       PyObject *getTimeSteps() const throw(INTERP_KERNEL::Exception)
2657       {
2658         std::vector<double> res2;
2659         std::vector< std::pair<int,int> > res=self->getTimeSteps(res2);
2660         PyObject *ret=PyList_New(res.size());
2661         int rk=0;
2662         for(std::vector< std::pair<int,int> >::const_iterator iter=res.begin();iter!=res.end();iter++,rk++)
2663           {
2664             PyObject *elt=PyTuple_New(3);
2665             PyTuple_SetItem(elt,0,SWIG_From_int((*iter).first));
2666             PyTuple_SetItem(elt,1,SWIG_From_int((*iter).second));
2667             PyTuple_SetItem(elt,2,SWIG_From_double(res2[rk]));
2668             PyList_SetItem(ret,rk,elt);
2669           }
2670         return ret;
2671       }
2672     }
2673   };
2674
2675   class MEDFileParameters : public RefCountObject, public MEDFileWritable
2676   {
2677   public:
2678     static MEDFileParameters *New();
2679     static MEDFileParameters *New(const std::string& fileName) throw(INTERP_KERNEL::Exception);
2680     MEDFileParameters *deepCpy() const throw(INTERP_KERNEL::Exception);
2681     void write(const std::string& fileName, int mode) const throw(INTERP_KERNEL::Exception);
2682     std::vector<std::string> getParamsNames() const throw(INTERP_KERNEL::Exception);
2683     std::string simpleRepr() const throw(INTERP_KERNEL::Exception);
2684     void resize(int newSize) throw(INTERP_KERNEL::Exception);
2685     void pushParam(MEDFileParameterMultiTS *param) throw(INTERP_KERNEL::Exception);
2686     void setParamAtPos(int i, MEDFileParameterMultiTS *param) throw(INTERP_KERNEL::Exception);
2687     void destroyParamAtPos(int i) throw(INTERP_KERNEL::Exception);
2688     int getPosFromParamName(const std::string& paramName) const throw(INTERP_KERNEL::Exception);
2689     int getNumberOfParams() const throw(INTERP_KERNEL::Exception);
2690     %extend
2691     {
2692       MEDFileParameters()
2693       {
2694         return MEDFileParameters::New();
2695       }
2696       
2697       MEDFileParameters(const std::string& fileName)
2698       {
2699         return MEDFileParameters::New(fileName);
2700       }
2701
2702       std::string __str__() const throw(INTERP_KERNEL::Exception)
2703       {
2704         return self->simpleRepr();
2705       }
2706
2707       MEDFileParameterMultiTS *__getitem__(PyObject *obj) throw(INTERP_KERNEL::Exception)
2708       {
2709         if(PyInt_Check(obj))
2710           {
2711             MEDFileParameterMultiTS *ret=self->getParamAtPos((int)PyInt_AS_LONG(obj));
2712             if(ret)
2713               ret->incrRef();
2714             return ret;
2715           }
2716         else if(PyString_Check(obj))
2717           {
2718             MEDFileParameterMultiTS *ret=self->getParamWithName(PyString_AsString(obj));
2719             if(ret)
2720               ret->incrRef();
2721             return ret;
2722           }
2723         else
2724           throw INTERP_KERNEL::Exception("MEDFileParameters::__getitem__ : only integer or string with meshname supported !");
2725       }
2726
2727       int __len__() const throw(INTERP_KERNEL::Exception)
2728       {
2729         return self->getNumberOfParams();
2730       }
2731       
2732       MEDFileParameterMultiTS *getParamAtPos(int i) const throw(INTERP_KERNEL::Exception)
2733       {
2734         MEDFileParameterMultiTS *ret=self->getParamAtPos(i);
2735         if(ret)
2736           ret->incrRef();
2737         return ret;
2738       }
2739
2740       MEDFileParameterMultiTS *getParamWithName(const std::string& paramName) const throw(INTERP_KERNEL::Exception)
2741       {
2742         MEDFileParameterMultiTS *ret=self->getParamWithName(paramName);
2743         if(ret)
2744           ret->incrRef();
2745         return ret;
2746       }
2747       
2748       PyObject *isEqual(const MEDFileParameters *other, double eps) const throw(INTERP_KERNEL::Exception)
2749       {
2750         std::string what;
2751         bool ret0=self->isEqual(other,eps,what);
2752         PyObject *res=PyList_New(2);
2753         PyObject *ret0Py=ret0?Py_True:Py_False;
2754         Py_XINCREF(ret0Py);
2755         PyList_SetItem(res,0,ret0Py);
2756         PyList_SetItem(res,1,PyString_FromString(what.c_str()));
2757         return res;
2758       }
2759     }
2760   };
2761
2762   class MEDFileData : public RefCountObject, public MEDFileWritable
2763   {
2764   public:
2765     static MEDFileData *New(const std::string& fileName) throw(INTERP_KERNEL::Exception);
2766     static MEDFileData *New();
2767     MEDFileData *deepCpy() const throw(INTERP_KERNEL::Exception);
2768     void setFields(MEDFileFields *fields) throw(INTERP_KERNEL::Exception);
2769     void setMeshes(MEDFileMeshes *meshes) throw(INTERP_KERNEL::Exception);
2770     void setParams(MEDFileParameters *params) throw(INTERP_KERNEL::Exception);
2771     int getNumberOfFields() const throw(INTERP_KERNEL::Exception);
2772     int getNumberOfMeshes() const throw(INTERP_KERNEL::Exception);
2773     int getNumberOfParams() const throw(INTERP_KERNEL::Exception);
2774     //
2775     bool changeMeshName(const std::string& oldMeshName, const std::string& newMeshName) throw(INTERP_KERNEL::Exception);
2776     bool unPolyzeMeshes() throw(INTERP_KERNEL::Exception);
2777     //
2778     void write(const std::string& fileName, int mode) const throw(INTERP_KERNEL::Exception);
2779     %extend
2780        {
2781          MEDFileData(const std::string& fileName) throw(INTERP_KERNEL::Exception)
2782          {
2783            return MEDFileData::New(fileName);
2784          }
2785
2786          MEDFileData()
2787          {
2788            return MEDFileData::New();
2789          }
2790
2791          std::string __str__() const throw(INTERP_KERNEL::Exception)
2792          {
2793            return self->simpleRepr();
2794          }
2795
2796          MEDFileMeshes *getMeshes() const throw(INTERP_KERNEL::Exception)
2797          {
2798            MEDFileMeshes *ret=self->getMeshes();
2799            if(ret)
2800              ret->incrRef();
2801            return ret;
2802          }
2803
2804          MEDFileParameters *getParams() const throw(INTERP_KERNEL::Exception)
2805          {
2806            MEDFileParameters *ret=self->getParams();
2807            if(ret)
2808              ret->incrRef();
2809            return ret;
2810          }
2811
2812          MEDFileFields *getFields() const throw(INTERP_KERNEL::Exception)
2813          {
2814            MEDFileFields *ret=self->getFields();
2815            if(ret)
2816              ret->incrRef();
2817            return ret;
2818          }
2819
2820          bool changeMeshNames(PyObject *li) throw(INTERP_KERNEL::Exception)
2821          {
2822            std::vector< std::pair<std::string,std::string> > modifTab=convertVecPairStStFromPy(li);
2823            return self->changeMeshNames(modifTab);
2824          }
2825        }
2826   };
2827
2828   class SauvReader : public RefCountObject
2829   {
2830   public:
2831     static SauvReader* New(const std::string& fileName) throw(INTERP_KERNEL::Exception);
2832     MEDFileData * loadInMEDFileDS() throw(INTERP_KERNEL::Exception);
2833     %extend
2834     {
2835       SauvReader(const std::string& fileName) throw(INTERP_KERNEL::Exception)
2836       {
2837         return SauvReader::New(fileName);
2838       }
2839     }
2840   };
2841
2842   class SauvWriter : public RefCountObject
2843   {
2844   public:
2845     static SauvWriter * New();
2846     void setMEDFileDS(const MEDFileData* medData, unsigned meshIndex = 0) throw(INTERP_KERNEL::Exception);
2847     void write(const std::string& fileName) throw(INTERP_KERNEL::Exception);
2848     void setCpyGrpIfOnASingleFamilyStatus(bool status) throw(INTERP_KERNEL::Exception);
2849     bool getCpyGrpIfOnASingleFamilyStatus() const throw(INTERP_KERNEL::Exception);
2850     %extend
2851     {
2852       SauvWriter() throw(INTERP_KERNEL::Exception)
2853       {
2854         return SauvWriter::New();
2855       }
2856     }
2857   };
2858   
2859   ///////////////
2860
2861   class MEDFileMeshStruct;
2862
2863   class MEDFileField1TSStructItem
2864   {
2865   public:
2866     static MEDFileField1TSStructItem BuildItemFrom(const MEDFileAnyTypeField1TS *ref, const MEDFileMeshStruct *meshSt) throw(INTERP_KERNEL::Exception);
2867   };
2868
2869   class MEDFileMeshStruct : public RefCountObject
2870   {
2871   public:
2872     static MEDFileMeshStruct *New(const MEDFileMesh *mesh) throw(INTERP_KERNEL::Exception);
2873   protected:
2874     ~MEDFileMeshStruct();
2875   };
2876   
2877   class MEDMeshMultiLev : public RefCountObject
2878   {
2879   public:
2880     virtual MEDMeshMultiLev *prepare() const throw(INTERP_KERNEL::Exception);
2881     DataArray *buildDataArray(const MEDFileField1TSStructItem& fst, const MEDFileFieldGlobsReal *globs, const DataArray *vals) const throw(INTERP_KERNEL::Exception);
2882   protected:
2883     ~MEDMeshMultiLev();
2884   public:
2885     %extend
2886     {
2887       PyObject *retrieveFamilyIdsOnCells() const throw(INTERP_KERNEL::Exception)
2888       {
2889         DataArrayInt *famIds(0);
2890         bool isWithoutCopy(false);
2891         self->retrieveFamilyIdsOnCells(famIds,isWithoutCopy);
2892         PyObject *ret=PyTuple_New(2);
2893         PyObject *ret1Py=isWithoutCopy?Py_True:Py_False;
2894         Py_XINCREF(ret1Py);
2895         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(famIds),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2896         PyTuple_SetItem(ret,1,ret1Py);
2897         return ret;
2898       }
2899
2900       PyObject *retrieveNumberIdsOnCells() const throw(INTERP_KERNEL::Exception)
2901       {
2902         DataArrayInt *numIds(0);
2903         bool isWithoutCopy(false);
2904         self->retrieveNumberIdsOnCells(numIds,isWithoutCopy);
2905         PyObject *ret=PyTuple_New(2);
2906         PyObject *ret1Py=isWithoutCopy?Py_True:Py_False;
2907         Py_XINCREF(ret1Py);
2908         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(numIds),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2909         PyTuple_SetItem(ret,1,ret1Py);
2910         return ret;
2911       }
2912       
2913       PyObject *retrieveFamilyIdsOnNodes() const throw(INTERP_KERNEL::Exception)
2914       {
2915         DataArrayInt *famIds(0);
2916         bool isWithoutCopy(false);
2917         self->retrieveFamilyIdsOnNodes(famIds,isWithoutCopy);
2918         PyObject *ret=PyTuple_New(2);
2919         PyObject *ret1Py=isWithoutCopy?Py_True:Py_False;
2920         Py_XINCREF(ret1Py);
2921         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(famIds),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2922         PyTuple_SetItem(ret,1,ret1Py);
2923         return ret;
2924       }
2925
2926       PyObject *retrieveNumberIdsOnNodes() const throw(INTERP_KERNEL::Exception)
2927       {
2928         DataArrayInt *numIds(0);
2929         bool isWithoutCopy(false);
2930         self->retrieveNumberIdsOnNodes(numIds,isWithoutCopy);
2931         PyObject *ret=PyTuple_New(2);
2932         PyObject *ret1Py=isWithoutCopy?Py_True:Py_False;
2933         Py_XINCREF(ret1Py);
2934         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(numIds),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2935         PyTuple_SetItem(ret,1,ret1Py);
2936         return ret;
2937       }
2938
2939       PyObject *getGeoTypes() const throw(INTERP_KERNEL::Exception)
2940       {
2941         std::vector< INTERP_KERNEL::NormalizedCellType > result(self->getGeoTypes());
2942         std::vector< INTERP_KERNEL::NormalizedCellType >::const_iterator iL(result.begin());
2943         PyObject *res(PyList_New(result.size()));
2944         for(int i=0;iL!=result.end(); i++, iL++)
2945           PyList_SetItem(res,i,PyInt_FromLong(*iL));
2946         return res;
2947       }
2948     }
2949   };
2950
2951   class MEDUMeshMultiLev : public MEDMeshMultiLev
2952   {
2953   protected:
2954     ~MEDUMeshMultiLev();
2955   public:
2956     %extend
2957      {
2958        PyObject *buildVTUArrays() const throw(INTERP_KERNEL::Exception)
2959        {
2960          DataArrayDouble *coords(0); DataArrayByte *types(0); DataArrayInt *cellLocations(0),*cells(0),*faceLocations(0),*faces(0);
2961          bool ncc(self->buildVTUArrays(coords,types,cellLocations,cells,faceLocations,faces));
2962          PyObject *ret0Py=ncc?Py_True:Py_False;
2963          Py_XINCREF(ret0Py);
2964          PyObject *ret=PyTuple_New(7);
2965          PyTuple_SetItem(ret,0,ret0Py);
2966          PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(coords),SWIGTYPE_p_ParaMEDMEM__DataArrayDouble, SWIG_POINTER_OWN | 0 ));
2967          PyTuple_SetItem(ret,2,SWIG_NewPointerObj(SWIG_as_voidptr(types),SWIGTYPE_p_ParaMEDMEM__DataArrayByte, SWIG_POINTER_OWN | 0 ));
2968          PyTuple_SetItem(ret,3,SWIG_NewPointerObj(SWIG_as_voidptr(cellLocations),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2969          PyTuple_SetItem(ret,4,SWIG_NewPointerObj(SWIG_as_voidptr(cells),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2970          PyTuple_SetItem(ret,5,SWIG_NewPointerObj(SWIG_as_voidptr(faceLocations),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2971          PyTuple_SetItem(ret,6,SWIG_NewPointerObj(SWIG_as_voidptr(faces),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2972          return ret;
2973        }
2974      }
2975   };
2976
2977   class MEDStructuredMeshMultiLev : public MEDMeshMultiLev
2978   {
2979   protected:
2980     ~MEDStructuredMeshMultiLev();
2981   };
2982
2983   class MEDCMeshMultiLev : public MEDStructuredMeshMultiLev
2984   {
2985   protected:
2986     ~MEDCMeshMultiLev();
2987   public:
2988     %extend
2989     {
2990       PyObject *buildVTUArrays() const throw(INTERP_KERNEL::Exception)
2991       {
2992         bool isInternal;
2993         std::vector< DataArrayDouble * > objs(self->buildVTUArrays(isInternal));
2994         std::size_t sz(objs.size());
2995         PyObject *ret(PyTuple_New(2));
2996         PyObject *ret0=PyList_New(sz);
2997         for(std::size_t i=0;i<sz;i++)
2998           PyList_SetItem(ret0,i,SWIG_NewPointerObj(SWIG_as_voidptr(objs[i]),SWIGTYPE_p_ParaMEDMEM__DataArrayDouble, SWIG_POINTER_OWN | 0 ));
2999         PyTuple_SetItem(ret,0,ret0);
3000         PyObject *ret1Py(isInternal?Py_True:Py_False);
3001         Py_XINCREF(ret1Py);
3002         PyTuple_SetItem(ret,1,ret1Py);
3003         return ret;
3004       }
3005     }
3006   };
3007
3008   class MEDCurveLinearMeshMultiLev : public MEDStructuredMeshMultiLev
3009   {
3010   protected:
3011     ~MEDCurveLinearMeshMultiLev();
3012   public:
3013     %extend
3014     {
3015       PyObject *buildVTUArrays() const throw(INTERP_KERNEL::Exception)
3016       {
3017         DataArrayDouble *ret0(0);
3018         std::vector<int> ret1;
3019         bool ret2;
3020         self->buildVTUArrays(ret0,ret1,ret2);
3021         std::size_t sz(ret1.size());
3022         PyObject *ret=PyTuple_New(3);
3023         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(ret0),SWIGTYPE_p_ParaMEDMEM__DataArrayDouble, SWIG_POINTER_OWN | 0 ));
3024         PyObject *ret1Py=PyList_New(sz);
3025         for(std::size_t i=0;i<sz;i++)
3026           PyList_SetItem(ret1Py,i,SWIG_From_int(ret1[i]));
3027         PyTuple_SetItem(ret,1,ret1Py);
3028         PyObject *ret2Py(ret2?Py_True:Py_False);
3029         Py_XINCREF(ret2Py);
3030         PyTuple_SetItem(ret,2,ret2Py);
3031         return ret;
3032       }
3033     }
3034   };
3035
3036   class MEDFileFastCellSupportComparator : public RefCountObject
3037   {
3038   public:
3039     static MEDFileFastCellSupportComparator *New(const MEDFileMeshStruct *m, const MEDFileAnyTypeFieldMultiTS *ref) throw(INTERP_KERNEL::Exception);
3040     MEDMeshMultiLev *buildFromScratchDataSetSupport(int timeStepId, const MEDFileFieldGlobsReal *globs) const throw(INTERP_KERNEL::Exception);
3041     bool isDataSetSupportEqualToThePreviousOne(int timeStepId, const MEDFileFieldGlobsReal *globs) const throw(INTERP_KERNEL::Exception);
3042     int getNumberOfTS() const throw(INTERP_KERNEL::Exception);
3043   protected:
3044     ~MEDFileFastCellSupportComparator();
3045   public:
3046     %extend
3047     {
3048       PyObject *getGeoTypesAt(int timeStepId, const MEDFileMesh *m) const throw(INTERP_KERNEL::Exception)
3049       {
3050         std::vector< INTERP_KERNEL::NormalizedCellType > result(self->getGeoTypesAt(timeStepId,m));
3051         std::vector< INTERP_KERNEL::NormalizedCellType >::const_iterator iL(result.begin());
3052         PyObject *res(PyList_New(result.size()));
3053         for(int i=0;iL!=result.end(); i++, iL++)
3054           PyList_SetItem(res,i,PyInt_FromLong(*iL));
3055         return res;
3056       }
3057     }
3058   };
3059 }