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