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