]> SALOME platform Git repositories - tools/medcoupling.git/blob - src/MEDCoupling_Swig/MEDCouplingCommon.i
Salome HOME
On the highway to MEDReader
[tools/medcoupling.git] / src / MEDCoupling_Swig / MEDCouplingCommon.i
1 // Copyright (C) 2007-2013  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 %module MEDCoupling
21
22 #define MEDCOUPLING_EXPORT
23
24 %include std_vector.i
25 %include std_string.i
26
27 %{
28 #include "MEDCouplingMemArray.hxx"
29 #include "MEDCouplingUMesh.hxx"
30 #include "MEDCouplingExtrudedMesh.hxx"
31 #include "MEDCouplingCMesh.hxx"
32 #include "MEDCouplingCurveLinearMesh.hxx"
33 #include "MEDCoupling1GTUMesh.hxx"
34 #include "MEDCouplingField.hxx"
35 #include "MEDCouplingFieldDouble.hxx"
36 #include "MEDCouplingFieldTemplate.hxx"
37 #include "MEDCouplingGaussLocalization.hxx"
38 #include "MEDCouplingAutoRefCountObjectPtr.hxx"
39 #include "MEDCouplingMultiFields.hxx"
40 #include "MEDCouplingFieldOverTime.hxx"
41 #include "MEDCouplingDefinitionTime.hxx"
42 #include "MEDCouplingFieldDiscretization.hxx"
43 #include "MEDCouplingTypemaps.i"
44
45 #include "InterpKernelAutoPtr.hxx"
46
47 using namespace ParaMEDMEM;
48 using namespace INTERP_KERNEL;
49
50 %}
51
52 %template(ivec) std::vector<int>;
53 %template(dvec) std::vector<double>;
54 %template(svec) std::vector<std::string>;
55
56 ////////////////////
57 %typemap(out) ParaMEDMEM::MEDCouplingMesh*
58 {
59   $result=convertMesh($1,$owner);
60 }
61
62 %typemap(out) MEDCouplingMesh*
63 {
64   $result=convertMesh($1,$owner);
65 }
66 //$$$$$$$$$$$$$$$$$$
67
68 ////////////////////
69 %typemap(out) ParaMEDMEM::MEDCouplingPointSet*
70 {
71   $result=convertMesh($1,$owner);
72 }
73
74 %typemap(out) MEDCouplingPointSet*
75 {
76   $result=convertMesh($1,$owner);
77 }
78 //$$$$$$$$$$$$$$$$$$
79
80
81 ////////////////////
82 %typemap(out) ParaMEDMEM::MEDCoupling1GTUMesh*
83 {
84   $result=convertMesh($1,$owner);
85 }
86
87 %typemap(out) MEDCoupling1GTUMesh*
88 {
89   $result=convertMesh($1,$owner);
90 }
91 //$$$$$$$$$$$$$$$$$$
92
93 ////////////////////
94 %typemap(out) ParaMEDMEM::MEDCouplingStructuredMesh*
95 {
96   $result=convertMesh($1,$owner);
97 }
98
99 %typemap(out) MEDCouplingStructuredMesh*
100 {
101   $result=convertMesh($1,$owner);
102 }
103 //$$$$$$$$$$$$$$$$$$
104
105 ////////////////////
106 %typemap(out) ParaMEDMEM::MEDCouplingFieldDiscretization*
107 {
108   $result=convertFieldDiscretization($1,$owner);
109 }
110
111 %typemap(out) MEDCouplingFieldDiscretization*
112 {
113   $result=convertFieldDiscretization($1,$owner);
114 }
115 //$$$$$$$$$$$$$$$$$$
116
117 ////////////////////
118 %typemap(out) ParaMEDMEM::MEDCouplingMultiFields*
119 {
120   $result=convertMultiFields($1,$owner);
121 }
122
123 %typemap(out) MEDCouplingMultiFields*
124 {
125   $result=convertMultiFields($1,$owner);
126 }
127 //$$$$$$$$$$$$$$$$$$
128
129 ////////////////////
130 %typemap(out) ParaMEDMEM::DataArray*
131 {
132   $result=convertDataArray($1,$owner);
133 }
134
135 %typemap(out) DataArray*
136 {
137   $result=convertDataArray($1,$owner);
138 }
139 //$$$$$$$$$$$$$$$$$$
140
141 ////////////////////
142 %typemap(out) ParaMEDMEM::DataArrayChar*
143 {
144   $result=convertDataArrayChar($1,$owner);
145 }
146
147 %typemap(out) DataArrayChar*
148 {
149   $result=convertDataArrayChar($1,$owner);
150 }
151 //$$$$$$$$$$$$$$$$$$
152
153 #ifdef WITH_NUMPY
154 %init %{ import_array(); %}
155 #endif
156
157 %feature("autodoc", "1");
158 %feature("docstring");
159
160 %newobject ParaMEDMEM::MEDCouplingFieldDiscretization::New;
161 %newobject ParaMEDMEM::MEDCouplingFieldDiscretization::getOffsetArr;
162 %newobject ParaMEDMEM::MEDCouplingFieldDiscretization::deepCpy;
163 %newobject ParaMEDMEM::MEDCouplingFieldDiscretization::clone;
164 %newobject ParaMEDMEM::MEDCouplingFieldDiscretization::clonePart;
165 %newobject ParaMEDMEM::MEDCouplingFieldDiscretization::clonePartRange;
166 %newobject ParaMEDMEM::MEDCouplingFieldDiscretization::getMeasureField;
167 %newobject ParaMEDMEM::MEDCouplingFieldDiscretization::getOffsetArr;
168 %newobject ParaMEDMEM::MEDCouplingFieldDiscretization::getLocalizationOfDiscValues;
169 %newobject ParaMEDMEM::MEDCouplingFieldDiscretization::getValueOnMulti;
170 %newobject ParaMEDMEM::MEDCouplingFieldDiscretization::computeTupleIdsToSelectFromCellIds;
171 %newobject ParaMEDMEM::MEDCouplingFieldDiscretization::buildSubMeshData;
172 %newobject ParaMEDMEM::MEDCouplingField::buildMeasureField;
173 %newobject ParaMEDMEM::MEDCouplingField::getLocalizationOfDiscr;
174 %newobject ParaMEDMEM::MEDCouplingField::computeTupleIdsToSelectFromCellIds;
175 %newobject ParaMEDMEM::MEDCouplingFieldDouble::New;
176 %newobject ParaMEDMEM::MEDCouplingFieldDouble::getArray;
177 %newobject ParaMEDMEM::MEDCouplingFieldDouble::getEndArray;
178 %newobject ParaMEDMEM::MEDCouplingFieldDouble::MergeFields;
179 %newobject ParaMEDMEM::MEDCouplingFieldDouble::MeldFields;
180 %newobject ParaMEDMEM::MEDCouplingFieldDouble::doublyContractedProduct;
181 %newobject ParaMEDMEM::MEDCouplingFieldDouble::determinant;
182 %newobject ParaMEDMEM::MEDCouplingFieldDouble::eigenValues;
183 %newobject ParaMEDMEM::MEDCouplingFieldDouble::eigenVectors;
184 %newobject ParaMEDMEM::MEDCouplingFieldDouble::inverse;
185 %newobject ParaMEDMEM::MEDCouplingFieldDouble::trace;
186 %newobject ParaMEDMEM::MEDCouplingFieldDouble::deviator;
187 %newobject ParaMEDMEM::MEDCouplingFieldDouble::magnitude;
188 %newobject ParaMEDMEM::MEDCouplingFieldDouble::maxPerTuple;
189 %newobject ParaMEDMEM::MEDCouplingFieldDouble::keepSelectedComponents;
190 %newobject ParaMEDMEM::MEDCouplingFieldDouble::extractSlice3D;
191 %newobject ParaMEDMEM::MEDCouplingFieldDouble::DotFields;
192 %newobject ParaMEDMEM::MEDCouplingFieldDouble::dot;
193 %newobject ParaMEDMEM::MEDCouplingFieldDouble::CrossProductFields;
194 %newobject ParaMEDMEM::MEDCouplingFieldDouble::crossProduct;
195 %newobject ParaMEDMEM::MEDCouplingFieldDouble::MaxFields;
196 %newobject ParaMEDMEM::MEDCouplingFieldDouble::max;
197 %newobject ParaMEDMEM::MEDCouplingFieldDouble::MinFields;
198 %newobject ParaMEDMEM::MEDCouplingFieldDouble::AddFields;
199 %newobject ParaMEDMEM::MEDCouplingFieldDouble::SubstractFields;
200 %newobject ParaMEDMEM::MEDCouplingFieldDouble::MultiplyFields;
201 %newobject ParaMEDMEM::MEDCouplingFieldDouble::DivideFields;
202 %newobject ParaMEDMEM::MEDCouplingFieldDouble::min;
203 %newobject ParaMEDMEM::MEDCouplingFieldDouble::negate;
204 %newobject ParaMEDMEM::MEDCouplingFieldDouble::getIdsInRange;
205 %newobject ParaMEDMEM::MEDCouplingFieldDouble::buildSubPart;
206 %newobject ParaMEDMEM::MEDCouplingFieldDouble::buildSubPartRange;
207 %newobject ParaMEDMEM::MEDCouplingFieldDouble::__getitem__;
208 %newobject ParaMEDMEM::MEDCouplingFieldDouble::__neg__;
209 %newobject ParaMEDMEM::MEDCouplingFieldDouble::__add__;
210 %newobject ParaMEDMEM::MEDCouplingFieldDouble::__sub__;
211 %newobject ParaMEDMEM::MEDCouplingFieldDouble::__mul__;
212 %newobject ParaMEDMEM::MEDCouplingFieldDouble::__div__;
213 %newobject ParaMEDMEM::MEDCouplingFieldDouble::__pow__;
214 %newobject ParaMEDMEM::MEDCouplingFieldDouble::__radd__;
215 %newobject ParaMEDMEM::MEDCouplingFieldDouble::__rsub__;
216 %newobject ParaMEDMEM::MEDCouplingFieldDouble::__rmul__;
217 %newobject ParaMEDMEM::MEDCouplingFieldDouble::__rdiv__;
218 %newobject ParaMEDMEM::MEDCouplingFieldDouble::clone;
219 %newobject ParaMEDMEM::MEDCouplingFieldDouble::cloneWithMesh;
220 %newobject ParaMEDMEM::MEDCouplingFieldDouble::deepCpy;
221 %newobject ParaMEDMEM::MEDCouplingFieldDouble::buildNewTimeReprFromThis;
222 %newobject ParaMEDMEM::MEDCouplingFieldDouble::getValueOnMulti;
223 %newobject ParaMEDMEM::MEDCouplingFieldTemplate::New;
224 %newobject ParaMEDMEM::DataArray::selectByTupleRanges;
225 %newobject ParaMEDMEM::DataArrayInt::New;
226 %newobject ParaMEDMEM::DataArrayInt::__iter__;
227 %newobject ParaMEDMEM::DataArrayInt::convertToDblArr;
228 %newobject ParaMEDMEM::DataArrayInt::deepCpy;
229 %newobject ParaMEDMEM::DataArrayInt::performCpy;
230 %newobject ParaMEDMEM::DataArrayInt::substr;
231 %newobject ParaMEDMEM::DataArrayInt::changeNbOfComponents;
232 %newobject ParaMEDMEM::DataArrayInt::accumulatePerChunck;
233 %newobject ParaMEDMEM::DataArrayInt::selectByTupleId;
234 %newobject ParaMEDMEM::DataArrayInt::selectByTupleIdSafe;
235 %newobject ParaMEDMEM::DataArrayInt::selectByTupleId2;
236 %newobject ParaMEDMEM::DataArrayInt::checkAndPreparePermutation;
237 %newobject ParaMEDMEM::DataArrayInt::transformWithIndArrR;
238 %newobject ParaMEDMEM::DataArrayInt::renumber;
239 %newobject ParaMEDMEM::DataArrayInt::renumberR;
240 %newobject ParaMEDMEM::DataArrayInt::renumberAndReduce;
241 %newobject ParaMEDMEM::DataArrayInt::invertArrayO2N2N2O;
242 %newobject ParaMEDMEM::DataArrayInt::invertArrayN2O2O2N;
243 %newobject ParaMEDMEM::DataArrayInt::invertArrayO2N2N2OBis;
244 %newobject ParaMEDMEM::DataArrayInt::getIdsEqual;
245 %newobject ParaMEDMEM::DataArrayInt::getIdsNotEqual;
246 %newobject ParaMEDMEM::DataArrayInt::getIdsEqualList;
247 %newobject ParaMEDMEM::DataArrayInt::getIdsNotEqualList;
248 %newobject ParaMEDMEM::DataArrayInt::negate;
249 %newobject ParaMEDMEM::DataArrayInt::getIdsInRange;
250 %newobject ParaMEDMEM::DataArrayInt::Aggregate;
251 %newobject ParaMEDMEM::DataArrayInt::AggregateIndexes;
252 %newobject ParaMEDMEM::DataArrayInt::Meld;
253 %newobject ParaMEDMEM::DataArrayInt::Add;
254 %newobject ParaMEDMEM::DataArrayInt::Substract;
255 %newobject ParaMEDMEM::DataArrayInt::Multiply;
256 %newobject ParaMEDMEM::DataArrayInt::Divide;
257 %newobject ParaMEDMEM::DataArrayInt::Pow;
258 %newobject ParaMEDMEM::DataArrayInt::BuildUnion;
259 %newobject ParaMEDMEM::DataArrayInt::BuildIntersection;
260 %newobject ParaMEDMEM::DataArrayInt::Range;
261 %newobject ParaMEDMEM::DataArrayInt::fromNoInterlace;
262 %newobject ParaMEDMEM::DataArrayInt::toNoInterlace;
263 %newobject ParaMEDMEM::DataArrayInt::buildComplement;
264 %newobject ParaMEDMEM::DataArrayInt::buildUnion;
265 %newobject ParaMEDMEM::DataArrayInt::buildSubstraction;
266 %newobject ParaMEDMEM::DataArrayInt::buildSubstractionOptimized;
267 %newobject ParaMEDMEM::DataArrayInt::buildIntersection;
268 %newobject ParaMEDMEM::DataArrayInt::buildUnique;
269 %newobject ParaMEDMEM::DataArrayInt::deltaShiftIndex;
270 %newobject ParaMEDMEM::DataArrayInt::buildExplicitArrByRanges;
271 %newobject ParaMEDMEM::DataArrayInt::findRangeIdForEachTuple;
272 %newobject ParaMEDMEM::DataArrayInt::findIdInRangeForEachTuple;
273 %newobject ParaMEDMEM::DataArrayInt::duplicateEachTupleNTimes;
274 %newobject ParaMEDMEM::DataArrayInt::buildPermutationArr;
275 %newobject ParaMEDMEM::DataArrayInt::buildPermArrPerLevel;
276 %newobject ParaMEDMEM::DataArrayInt::getDifferentValues;
277 %newobject ParaMEDMEM::DataArrayInt::__neg__;
278 %newobject ParaMEDMEM::DataArrayInt::__add__;
279 %newobject ParaMEDMEM::DataArrayInt::__radd__;
280 %newobject ParaMEDMEM::DataArrayInt::__sub__;
281 %newobject ParaMEDMEM::DataArrayInt::__rsub__;
282 %newobject ParaMEDMEM::DataArrayInt::__mul__;
283 %newobject ParaMEDMEM::DataArrayInt::__rmul__;
284 %newobject ParaMEDMEM::DataArrayInt::__div__;
285 %newobject ParaMEDMEM::DataArrayInt::__rdiv__;
286 %newobject ParaMEDMEM::DataArrayInt::__mod__;
287 %newobject ParaMEDMEM::DataArrayInt::__rmod__;
288 %newobject ParaMEDMEM::DataArrayInt::__pow__;
289 %newobject ParaMEDMEM::DataArrayInt::__rpow__;
290 %newobject ParaMEDMEM::DataArrayIntTuple::buildDAInt;
291 %newobject ParaMEDMEM::DataArrayChar::deepCpy;
292 %newobject ParaMEDMEM::DataArrayChar::convertToIntArr;
293 %newobject ParaMEDMEM::DataArrayChar::renumber;
294 %newobject ParaMEDMEM::DataArrayChar::renumberR;
295 %newobject ParaMEDMEM::DataArrayChar::renumberAndReduce;
296 %newobject ParaMEDMEM::DataArrayChar::selectByTupleIdSafe;
297 %newobject ParaMEDMEM::DataArrayChar::selectByTupleId2;
298 %newobject ParaMEDMEM::DataArrayChar::changeNbOfComponents;
299 %newobject ParaMEDMEM::DataArrayChar::getIdsEqual;
300 %newobject ParaMEDMEM::DataArrayChar::getIdsNotEqual;
301 %newobject ParaMEDMEM::DataArrayChar::Aggregate;
302 %newobject ParaMEDMEM::DataArrayChar::Meld;
303 %newobject ParaMEDMEM::DataArrayByte::New;
304 %newobject ParaMEDMEM::DataArrayByte::__iter__;
305 %newobject ParaMEDMEM::DataArrayByte::performCpy;
306 %newobject ParaMEDMEM::DataArrayByteTuple::buildDAByte;
307 %newobject ParaMEDMEM::DataArrayChar::substr;
308 %newobject ParaMEDMEM::DataArrayAsciiChar::New;
309 %newobject ParaMEDMEM::DataArrayAsciiChar::__iter__;
310 %newobject ParaMEDMEM::DataArrayAsciiChar::performCpy;
311 %newobject ParaMEDMEM::DataArrayAsciiCharTuple::buildDAAsciiChar;
312 %newobject ParaMEDMEM::DataArrayDouble::New;
313 %newobject ParaMEDMEM::DataArrayDouble::__iter__;
314 %newobject ParaMEDMEM::DataArrayDouble::convertToIntArr;
315 %newobject ParaMEDMEM::DataArrayDouble::deepCpy;
316 %newobject ParaMEDMEM::DataArrayDouble::performCpy;
317 %newobject ParaMEDMEM::DataArrayDouble::Aggregate;
318 %newobject ParaMEDMEM::DataArrayDouble::Meld;
319 %newobject ParaMEDMEM::DataArrayDouble::Dot;
320 %newobject ParaMEDMEM::DataArrayDouble::CrossProduct;
321 %newobject ParaMEDMEM::DataArrayDouble::Add;
322 %newobject ParaMEDMEM::DataArrayDouble::Substract;
323 %newobject ParaMEDMEM::DataArrayDouble::Multiply;
324 %newobject ParaMEDMEM::DataArrayDouble::Divide;
325 %newobject ParaMEDMEM::DataArrayDouble::Pow;
326 %newobject ParaMEDMEM::DataArrayDouble::substr;
327 %newobject ParaMEDMEM::DataArrayDouble::changeNbOfComponents;
328 %newobject ParaMEDMEM::DataArrayDouble::accumulatePerChunck;
329 %newobject ParaMEDMEM::DataArrayDouble::getIdsInRange;
330 %newobject ParaMEDMEM::DataArrayDouble::selectByTupleId;
331 %newobject ParaMEDMEM::DataArrayDouble::selectByTupleIdSafe;
332 %newobject ParaMEDMEM::DataArrayDouble::selectByTupleId2;
333 %newobject ParaMEDMEM::DataArrayDouble::negate;
334 %newobject ParaMEDMEM::DataArrayDouble::applyFunc;
335 %newobject ParaMEDMEM::DataArrayDouble::applyFunc2;
336 %newobject ParaMEDMEM::DataArrayDouble::applyFunc3;
337 %newobject ParaMEDMEM::DataArrayDouble::doublyContractedProduct;
338 %newobject ParaMEDMEM::DataArrayDouble::determinant;
339 %newobject ParaMEDMEM::DataArrayDouble::eigenValues;
340 %newobject ParaMEDMEM::DataArrayDouble::eigenVectors;
341 %newobject ParaMEDMEM::DataArrayDouble::inverse;
342 %newobject ParaMEDMEM::DataArrayDouble::trace;
343 %newobject ParaMEDMEM::DataArrayDouble::deviator;
344 %newobject ParaMEDMEM::DataArrayDouble::magnitude;
345 %newobject ParaMEDMEM::DataArrayDouble::maxPerTuple;
346 %newobject ParaMEDMEM::DataArrayDouble::computeBBoxPerTuple;
347 %newobject ParaMEDMEM::DataArrayDouble::buildEuclidianDistanceDenseMatrix;
348 %newobject ParaMEDMEM::DataArrayDouble::buildEuclidianDistanceDenseMatrixWith;
349 %newobject ParaMEDMEM::DataArrayDouble::renumber;
350 %newobject ParaMEDMEM::DataArrayDouble::renumberR;
351 %newobject ParaMEDMEM::DataArrayDouble::renumberAndReduce;
352 %newobject ParaMEDMEM::DataArrayDouble::fromNoInterlace;
353 %newobject ParaMEDMEM::DataArrayDouble::toNoInterlace;
354 %newobject ParaMEDMEM::DataArrayDouble::fromPolarToCart;
355 %newobject ParaMEDMEM::DataArrayDouble::fromCylToCart;
356 %newobject ParaMEDMEM::DataArrayDouble::fromSpherToCart;
357 %newobject ParaMEDMEM::DataArrayDouble::getDifferentValues;
358 %newobject ParaMEDMEM::DataArrayDouble::findClosestTupleId;
359 %newobject ParaMEDMEM::DataArrayDouble::duplicateEachTupleNTimes;
360 %newobject ParaMEDMEM::DataArrayDouble::__neg__;
361 %newobject ParaMEDMEM::DataArrayDouble::__radd__;
362 %newobject ParaMEDMEM::DataArrayDouble::__rsub__;
363 %newobject ParaMEDMEM::DataArrayDouble::__rmul__;
364 %newobject ParaMEDMEM::DataArrayDouble::__rdiv__;
365 %newobject ParaMEDMEM::DataArrayDouble::__pow__;
366 %newobject ParaMEDMEM::DataArrayDouble::__rpow__;
367 %newobject ParaMEDMEM::DataArrayDoubleTuple::buildDADouble;
368 %newobject ParaMEDMEM::MEDCouplingMesh::deepCpy;
369 %newobject ParaMEDMEM::MEDCouplingMesh::checkDeepEquivalOnSameNodesWith;
370 %newobject ParaMEDMEM::MEDCouplingMesh::checkTypeConsistencyAndContig;
371 %newobject ParaMEDMEM::MEDCouplingMesh::computeNbOfNodesPerCell;
372 %newobject ParaMEDMEM::MEDCouplingMesh::computeNbOfFacesPerCell;
373 %newobject ParaMEDMEM::MEDCouplingMesh::buildPartRange;
374 %newobject ParaMEDMEM::MEDCouplingMesh::giveCellsWithType;
375 %newobject ParaMEDMEM::MEDCouplingMesh::getCoordinatesAndOwner;
376 %newobject ParaMEDMEM::MEDCouplingMesh::getBarycenterAndOwner;
377 %newobject ParaMEDMEM::MEDCouplingMesh::computeIsoBarycenterOfNodesPerCell;
378 %newobject ParaMEDMEM::MEDCouplingMesh::buildOrthogonalField;
379 %newobject ParaMEDMEM::MEDCouplingMesh::getCellIdsFullyIncludedInNodeIds;
380 %newobject ParaMEDMEM::MEDCouplingMesh::mergeMyselfWith;
381 %newobject ParaMEDMEM::MEDCouplingMesh::fillFromAnalytic;
382 %newobject ParaMEDMEM::MEDCouplingMesh::fillFromAnalytic2;
383 %newobject ParaMEDMEM::MEDCouplingMesh::fillFromAnalytic3;
384 %newobject ParaMEDMEM::MEDCouplingMesh::getMeasureField;
385 %newobject ParaMEDMEM::MEDCouplingMesh::simplexize;
386 %newobject ParaMEDMEM::MEDCouplingMesh::buildUnstructured;
387 %newobject ParaMEDMEM::MEDCouplingMesh::MergeMeshes;
388 %newobject ParaMEDMEM::MEDCouplingPointSet::zipCoordsTraducer;
389 %newobject ParaMEDMEM::MEDCouplingPointSet::getCellsInBoundingBox;
390 %newobject ParaMEDMEM::MEDCouplingPointSet::findBoundaryNodes;
391 %newobject ParaMEDMEM::MEDCouplingPointSet::buildBoundaryMesh;
392 %newobject ParaMEDMEM::MEDCouplingPointSet::MergeNodesArray;
393 %newobject ParaMEDMEM::MEDCouplingPointSet::buildPartOfMySelf2;
394 %newobject ParaMEDMEM::MEDCouplingPointSet::BuildInstanceFromMeshType;
395 %newobject ParaMEDMEM::MEDCouplingPointSet::zipConnectivityTraducer;
396 %newobject ParaMEDMEM::MEDCouplingPointSet::mergeMyselfWithOnSameCoords;
397 %newobject ParaMEDMEM::MEDCouplingPointSet::fillCellIdsToKeepFromNodeIds;
398 %newobject ParaMEDMEM::MEDCouplingPointSet::getCellIdsLyingOnNodes;
399 %newobject ParaMEDMEM::MEDCouplingPointSet::deepCpyConnectivityOnly;
400 %newobject ParaMEDMEM::MEDCouplingPointSet::__getitem__;
401 %newobject ParaMEDMEM::MEDCouplingUMesh::New;
402 %newobject ParaMEDMEM::MEDCouplingUMesh::getNodalConnectivity;
403 %newobject ParaMEDMEM::MEDCouplingUMesh::getNodalConnectivityIndex;
404 %newobject ParaMEDMEM::MEDCouplingUMesh::clone;
405 %newobject ParaMEDMEM::MEDCouplingUMesh::__iter__;
406 %newobject ParaMEDMEM::MEDCouplingUMesh::cellsByType;
407 %newobject ParaMEDMEM::MEDCouplingUMesh::buildDescendingConnectivity;
408 %newobject ParaMEDMEM::MEDCouplingUMesh::buildDescendingConnectivity2;
409 %newobject ParaMEDMEM::MEDCouplingUMesh::explode3DMeshTo1D;
410 %newobject ParaMEDMEM::MEDCouplingUMesh::buildExtrudedMesh;
411 %newobject ParaMEDMEM::MEDCouplingUMesh::buildSpreadZonesWithPoly;
412 %newobject ParaMEDMEM::MEDCouplingUMesh::MergeUMeshes;
413 %newobject ParaMEDMEM::MEDCouplingUMesh::MergeUMeshesOnSameCoords;
414 %newobject ParaMEDMEM::MEDCouplingUMesh::ComputeSpreadZoneGradually;
415 %newobject ParaMEDMEM::MEDCouplingUMesh::ComputeSpreadZoneGraduallyFromSeed;
416 %newobject ParaMEDMEM::MEDCouplingUMesh::buildNewNumberingFromCommNodesFrmt;
417 %newobject ParaMEDMEM::MEDCouplingUMesh::rearrange2ConsecutiveCellTypes;
418 %newobject ParaMEDMEM::MEDCouplingUMesh::sortCellsInMEDFileFrmt;
419 %newobject ParaMEDMEM::MEDCouplingUMesh::getRenumArrForMEDFileFrmt;
420 %newobject ParaMEDMEM::MEDCouplingUMesh::convertCellArrayPerGeoType;
421 %newobject ParaMEDMEM::MEDCouplingUMesh::computeFetchedNodeIds;
422 %newobject ParaMEDMEM::MEDCouplingUMesh::getRenumArrForConsecutiveCellTypesSpec;
423 %newobject ParaMEDMEM::MEDCouplingUMesh::buildDirectionVectorField;
424 %newobject ParaMEDMEM::MEDCouplingUMesh::convertLinearCellsToQuadratic;
425 %newobject ParaMEDMEM::MEDCouplingUMesh::getEdgeRatioField;
426 %newobject ParaMEDMEM::MEDCouplingUMesh::getAspectRatioField;
427 %newobject ParaMEDMEM::MEDCouplingUMesh::getWarpField;
428 %newobject ParaMEDMEM::MEDCouplingUMesh::getSkewField;
429 %newobject ParaMEDMEM::MEDCouplingUMesh::getPartBarycenterAndOwner;
430 %newobject ParaMEDMEM::MEDCouplingUMesh::getPartMeasureField;
431 %newobject ParaMEDMEM::MEDCouplingUMesh::buildPartOrthogonalField;
432 %newobject ParaMEDMEM::MEDCouplingUMesh::keepCellIdsByType;
433 %newobject ParaMEDMEM::MEDCouplingUMesh::Build0DMeshFromCoords;
434 %newobject ParaMEDMEM::MEDCouplingUMesh::findAndCorrectBadOriented3DExtrudedCells;
435 %newobject ParaMEDMEM::MEDCouplingUMesh::findAndCorrectBadOriented3DCells;
436 %newobject ParaMEDMEM::MEDCouplingUMesh::convertIntoSingleGeoTypeMesh;
437 %newobject ParaMEDMEM::MEDCouplingUMesh::convertNodalConnectivityToStaticGeoTypeMesh;
438 %newobject ParaMEDMEM::MEDCouplingUMesh::findCellIdsOnBoundary;
439 %newobject ParaMEDMEM::MEDCouplingUMesh::computeSkin;
440 %newobject ParaMEDMEM::MEDCouplingUMesh::buildSetInstanceFromThis;
441 %newobject ParaMEDMEM::MEDCouplingUMesh::getCellIdsCrossingPlane;
442 %newobject ParaMEDMEM::MEDCouplingUMesh::convexEnvelop2D;
443 %newobject ParaMEDMEM::MEDCouplingUMesh::ComputeRangesFromTypeDistribution;
444 %newobject ParaMEDMEM::MEDCouplingUMeshCellByTypeEntry::__iter__;
445 %newobject ParaMEDMEM::MEDCouplingUMeshCellEntry::__iter__;
446 %newobject ParaMEDMEM::MEDCoupling1GTUMesh::New;
447 %newobject ParaMEDMEM::MEDCoupling1GTUMesh::getNodalConnectivity;
448 %newobject ParaMEDMEM::MEDCoupling1GTUMesh::AggregateOnSameCoordsToUMesh;
449 %newobject ParaMEDMEM::MEDCoupling1SGTUMesh::New;
450 %newobject ParaMEDMEM::MEDCoupling1SGTUMesh::buildSetInstanceFromThis;
451 %newobject ParaMEDMEM::MEDCoupling1SGTUMesh::Merge1SGTUMeshes;
452 %newobject ParaMEDMEM::MEDCoupling1SGTUMesh::Merge1SGTUMeshesOnSameCoords;
453 %newobject ParaMEDMEM::MEDCoupling1DGTUMesh::New;
454 %newobject ParaMEDMEM::MEDCoupling1DGTUMesh::getNodalConnectivityIndex;
455 %newobject ParaMEDMEM::MEDCoupling1DGTUMesh::buildSetInstanceFromThis;
456 %newobject ParaMEDMEM::MEDCoupling1DGTUMesh::Merge1DGTUMeshes;
457 %newobject ParaMEDMEM::MEDCoupling1DGTUMesh::Merge1DGTUMeshesOnSameCoords;
458 %newobject ParaMEDMEM::MEDCouplingExtrudedMesh::New;
459 %newobject ParaMEDMEM::MEDCouplingExtrudedMesh::build3DUnstructuredMesh;
460 %newobject ParaMEDMEM::MEDCouplingCMesh::New;
461 %newobject ParaMEDMEM::MEDCouplingCMesh::clone;
462 %newobject ParaMEDMEM::MEDCouplingCMesh::getCoordsAt;
463 %newobject ParaMEDMEM::MEDCouplingCurveLinearMesh::New;
464 %newobject ParaMEDMEM::MEDCouplingCurveLinearMesh::clone;
465 %newobject ParaMEDMEM::MEDCouplingCurveLinearMesh::getCoords;
466 %newobject ParaMEDMEM::MEDCouplingMultiFields::New;
467 %newobject ParaMEDMEM::MEDCouplingMultiFields::deepCpy;
468 %newobject ParaMEDMEM::MEDCouplingFieldOverTime::New;
469
470 %feature("unref") DataArray "$this->decrRef();"
471 %feature("unref") DataArrayDouble "$this->decrRef();"
472 %feature("unref") MEDCouplingPointSet "$this->decrRef();"
473 %feature("unref") MEDCouplingMesh "$this->decrRef();"
474 %feature("unref") MEDCouplingUMesh "$this->decrRef();"
475 %feature("unref") MEDCoupling1GTUMesh "$this->decrRef();"
476 %feature("unref") MEDCoupling1SGTUMesh "$this->decrRef();"
477 %feature("unref") MEDCoupling1DGTUMesh "$this->decrRef();"
478 %feature("unref") MEDCouplingExtrudedMesh "$this->decrRef();"
479 %feature("unref") MEDCouplingCMesh "$this->decrRef();"
480 %feature("unref") DataArrayInt "$this->decrRef();"
481 %feature("unref") DataArrayChar "$this->decrRef();"
482 %feature("unref") DataArrayAsciiChar "$this->decrRef();"
483 %feature("unref") DataArrayByte "$this->decrRef();"
484 %feature("unref") MEDCouplingField "$this->decrRef();"
485 %feature("unref") MEDCouplingFieldDiscretizationP0 "$this->decrRef();"
486 %feature("unref") MEDCouplingFieldDiscretizationP1 "$this->decrRef();"
487 %feature("unref") MEDCouplingFieldDiscretizationGauss "$this->decrRef();"
488 %feature("unref") MEDCouplingFieldDiscretizationGaussNE "$this->decrRef();"
489 %feature("unref") MEDCouplingFieldDiscretizationKriging "$this->decrRef();"
490 %feature("unref") MEDCouplingFieldDouble "$this->decrRef();"
491 %feature("unref") MEDCouplingMultiFields "$this->decrRef();"
492 %feature("unref") MEDCouplingFieldTemplate "$this->decrRef();"
493 %feature("unref") MEDCouplingMultiFields "$this->decrRef();"
494
495 %rename(assign) *::operator=;
496 %ignore ParaMEDMEM::RefCountObject::decrRef;
497 %ignore ParaMEDMEM::MEDCouplingGaussLocalization::pushTinySerializationIntInfo;
498 %ignore ParaMEDMEM::MEDCouplingGaussLocalization::pushTinySerializationDblInfo;
499 %ignore ParaMEDMEM::MEDCouplingGaussLocalization::fillWithValues;
500 %ignore ParaMEDMEM::MEDCouplingGaussLocalization::buildNewInstanceFromTinyInfo;
501
502 %nodefaultctor;
503
504 %rename (InterpKernelException) INTERP_KERNEL::Exception;
505
506 namespace INTERP_KERNEL
507 {
508   class Exception
509   {
510   public:
511     Exception(const char* what);
512     ~Exception() throw ();
513     const char *what() const throw ();
514     %extend
515     {
516       std::string __str__() const
517         {
518           return std::string(self->what());
519         }
520     }
521   };
522 }
523
524 namespace ParaMEDMEM
525 {
526   class TimeLabel
527   {
528   public:
529     void declareAsNew() const;
530     virtual void updateTime() const;
531     unsigned int getTimeOfThis() const;
532   protected:
533     ~TimeLabel();
534   };
535 }
536
537 namespace ParaMEDMEM
538 {
539   typedef enum
540     {
541       C_DEALLOC = 2,
542       CPP_DEALLOC = 3
543     } DeallocType;
544
545   typedef enum
546     {
547       ON_CELLS = 0,
548       ON_NODES = 1,
549       ON_GAUSS_PT = 2,
550       ON_GAUSS_NE = 3,
551       ON_NODES_KR = 4
552     } TypeOfField;
553
554   typedef enum
555     {
556       NO_TIME = 4,
557       ONE_TIME = 5,
558       LINEAR_TIME = 6,
559       CONST_ON_TIME_INTERVAL = 7
560     } TypeOfTimeDiscretization;
561
562   const char *MEDCouplingVersionStr();
563   int MEDCouplingVersion();
564   int MEDCouplingSizeOfVoidStar();
565
566   class RefCountObject
567   {
568   protected:
569     RefCountObject();
570     RefCountObject(const RefCountObject& other);
571     ~RefCountObject();
572   public:
573     bool decrRef() const;
574     void incrRef() const;
575     int getRCValue() const;
576     virtual std::size_t getHeapMemorySize() const;
577   };
578 }
579
580 %inline
581 {
582   PyObject *MEDCouplingVersionMajMinRel()
583   {
584     int tmp0=0,tmp1=0,tmp2=0;
585     MEDCouplingVersionMajMinRel(tmp0,tmp1,tmp2);
586     PyObject *res = PyList_New(3);
587     PyList_SetItem(res,0,SWIG_From_int(tmp0));
588     PyList_SetItem(res,1,SWIG_From_int(tmp1));
589     PyList_SetItem(res,2,SWIG_From_int(tmp2));
590     return res;
591   }
592
593   bool MEDCouplingHasNumPyBindings()
594   {
595 #ifdef WITH_NUMPY
596     return true;
597 #else
598     return false;
599 #endif
600   }
601
602   std::string MEDCouplingCompletionScript() throw(INTERP_KERNEL::Exception)
603   {
604     static const char script[]="import rlcompleter,readline\nreadline.parse_and_bind('tab:complete')";
605     std::ostringstream oss; oss << "MEDCouplingCompletionScript : error when trying to activate completion ! readline not present ?\nScript is :\n" << script;
606     if(PyRun_SimpleString(script)!=0)
607       throw INTERP_KERNEL::Exception(oss.str().c_str());
608     return std::string(script);
609   }
610 }
611
612 %include "MEDCouplingMemArray.i"
613
614 namespace ParaMEDMEM
615 {
616   typedef enum
617     {
618       UNSTRUCTURED = 5,
619       UNSTRUCTURED_DESC = 6,
620       CARTESIAN = 7,
621       EXTRUDED = 8,
622       CURVE_LINEAR = 9
623     } MEDCouplingMeshType;
624
625   class DataArrayInt;
626   class DataArrayDouble;
627   class MEDCouplingUMesh;
628   class MEDCouplingFieldDouble;
629
630   %extend RefCountObject
631   {
632     std::string getHiddenCppPointer() const
633     {
634       std::ostringstream oss; oss << "C++ Pointer address is : " << self;
635       return oss.str();
636     }
637   }
638
639   %extend MEDCouplingGaussLocalization
640   {
641     std::string __str__() const throw(INTERP_KERNEL::Exception)
642     {
643       return self->getStringRepr();
644     }
645
646     std::string __repr__() const throw(INTERP_KERNEL::Exception)
647     {
648       std::ostringstream oss; oss << "MEDCouplingGaussLocalization C++ instance at " << self << "." << std::endl;
649       oss << self->getStringRepr();
650       return oss.str();
651     }
652   }
653
654   //== MEDCouplingMesh
655   
656   class MEDCouplingMesh : public RefCountObject, public TimeLabel
657   {
658   public:
659     void setName(const char *name);
660     const char *getName() const;
661     void setDescription(const char *descr);
662     const char *getDescription() const;
663     void setTime(double val, int iteration, int order);
664     void setTimeUnit(const char *unit);
665     const char *getTimeUnit() const;
666     virtual MEDCouplingMeshType getType() const throw(INTERP_KERNEL::Exception);
667     bool isStructured() const throw(INTERP_KERNEL::Exception);
668     virtual MEDCouplingMesh *deepCpy() const;
669     virtual bool isEqual(const MEDCouplingMesh *other, double prec) const throw(INTERP_KERNEL::Exception);
670     virtual bool isEqualWithoutConsideringStr(const MEDCouplingMesh *other, double prec) const throw(INTERP_KERNEL::Exception);
671     virtual void checkFastEquivalWith(const MEDCouplingMesh *other, double prec) const throw(INTERP_KERNEL::Exception);
672     virtual void copyTinyStringsFrom(const MEDCouplingMesh *other) throw(INTERP_KERNEL::Exception);
673     virtual void copyTinyInfoFrom(const MEDCouplingMesh *other) throw(INTERP_KERNEL::Exception);
674     virtual void checkCoherency() const throw(INTERP_KERNEL::Exception);
675     virtual void checkCoherency1(double eps=1e-12) const throw(INTERP_KERNEL::Exception);
676     virtual void checkCoherency2(double eps=1e-12) const throw(INTERP_KERNEL::Exception);
677     virtual int getNumberOfCells() const throw(INTERP_KERNEL::Exception);
678     virtual int getNumberOfNodes() const throw(INTERP_KERNEL::Exception);
679     virtual int getSpaceDimension() const throw(INTERP_KERNEL::Exception);
680     virtual int getMeshDimension() const throw(INTERP_KERNEL::Exception);
681     virtual DataArrayDouble *getCoordinatesAndOwner() const throw(INTERP_KERNEL::Exception);
682     virtual DataArrayDouble *getBarycenterAndOwner() const throw(INTERP_KERNEL::Exception);
683     virtual DataArrayDouble *computeIsoBarycenterOfNodesPerCell() const throw(INTERP_KERNEL::Exception);
684     virtual DataArrayInt *giveCellsWithType(INTERP_KERNEL::NormalizedCellType type) const throw(INTERP_KERNEL::Exception);
685     virtual DataArrayInt *computeNbOfNodesPerCell() const throw(INTERP_KERNEL::Exception);
686     virtual DataArrayInt *computeNbOfFacesPerCell() const throw(INTERP_KERNEL::Exception);
687     virtual MEDCouplingMesh *buildPartRange(int beginCellIds, int endCellIds, int stepCellIds) const throw(INTERP_KERNEL::Exception);
688     virtual int getNumberOfCellsWithType(INTERP_KERNEL::NormalizedCellType type) const throw(INTERP_KERNEL::Exception);
689     virtual INTERP_KERNEL::NormalizedCellType getTypeOfCell(int cellId) const throw(INTERP_KERNEL::Exception);
690     virtual std::string simpleRepr() const throw(INTERP_KERNEL::Exception);
691     virtual std::string advancedRepr() const throw(INTERP_KERNEL::Exception);
692     void writeVTK(const char *fileName) const throw(INTERP_KERNEL::Exception);
693     // tools
694     virtual MEDCouplingFieldDouble *getMeasureField(bool isAbs) const throw(INTERP_KERNEL::Exception);
695     virtual MEDCouplingFieldDouble *getMeasureFieldOnNode(bool isAbs) const throw(INTERP_KERNEL::Exception);
696     virtual MEDCouplingFieldDouble *fillFromAnalytic(TypeOfField t, int nbOfComp, const char *func) const throw(INTERP_KERNEL::Exception);
697     virtual MEDCouplingFieldDouble *fillFromAnalytic2(TypeOfField t, int nbOfComp, const char *func) const throw(INTERP_KERNEL::Exception);
698     virtual MEDCouplingFieldDouble *fillFromAnalytic3(TypeOfField t, int nbOfComp, const std::vector<std::string>& varsOrder, const char *func) const throw(INTERP_KERNEL::Exception);
699     virtual MEDCouplingFieldDouble *buildOrthogonalField() const throw(INTERP_KERNEL::Exception);
700     virtual MEDCouplingUMesh *buildUnstructured() const throw(INTERP_KERNEL::Exception);
701     virtual MEDCouplingMesh *mergeMyselfWith(const MEDCouplingMesh *other) const throw(INTERP_KERNEL::Exception);
702     virtual bool areCompatibleForMerge(const MEDCouplingMesh *other) const throw(INTERP_KERNEL::Exception);
703     virtual DataArrayInt *simplexize(int policy) throw(INTERP_KERNEL::Exception);
704     static MEDCouplingMesh *MergeMeshes(const MEDCouplingMesh *mesh1, const MEDCouplingMesh *mesh2) throw(INTERP_KERNEL::Exception);
705     static bool IsStaticGeometricType(INTERP_KERNEL::NormalizedCellType type) throw(INTERP_KERNEL::Exception);
706     static bool IsLinearGeometricType(INTERP_KERNEL::NormalizedCellType type) throw(INTERP_KERNEL::Exception);
707     static INTERP_KERNEL::NormalizedCellType GetCorrespondingPolyType(INTERP_KERNEL::NormalizedCellType type) throw(INTERP_KERNEL::Exception);
708     static int GetNumberOfNodesOfGeometricType(INTERP_KERNEL::NormalizedCellType type) throw(INTERP_KERNEL::Exception);
709     static int GetDimensionOfGeometricType(INTERP_KERNEL::NormalizedCellType type) throw(INTERP_KERNEL::Exception);
710     static const char *GetReprOfGeometricType(INTERP_KERNEL::NormalizedCellType type) throw(INTERP_KERNEL::Exception);
711     %extend
712        {
713          std::string __str__() const throw(INTERP_KERNEL::Exception)
714          {
715            return self->simpleRepr();
716          }
717
718          PyObject *getTime() throw(INTERP_KERNEL::Exception)
719          {
720            int tmp1,tmp2;
721            double tmp0=self->getTime(tmp1,tmp2);
722            PyObject *res = PyList_New(3);
723            PyList_SetItem(res,0,SWIG_From_double(tmp0));
724            PyList_SetItem(res,1,SWIG_From_int(tmp1));
725            PyList_SetItem(res,2,SWIG_From_int(tmp2));
726            return res;
727          }
728
729          int getCellContainingPoint(PyObject *p, double eps) const throw(INTERP_KERNEL::Exception)
730          {
731            double val;
732            DataArrayDouble *a;
733            DataArrayDoubleTuple *aa;
734            std::vector<double> bb;
735            int sw;
736            int spaceDim=self->getSpaceDimension();
737            const char msg[]="Python wrap of MEDCouplingMesh::getCellContainingPoint : ";
738            const double *pos=convertObjToPossibleCpp5_Safe(p,sw,val,a,aa,bb,msg,1,spaceDim,true);
739            return self->getCellContainingPoint(pos,eps);
740          }
741
742          PyObject *getCellsContainingPoints(PyObject *p, int nbOfPoints, double eps) const throw(INTERP_KERNEL::Exception)
743          {
744            double val;
745            DataArrayDouble *a;
746            DataArrayDoubleTuple *aa;
747            std::vector<double> bb;
748            int sw;
749            int spaceDim=self->getSpaceDimension();
750            const char msg[]="Python wrap of MEDCouplingMesh::getCellsContainingPoint : ";
751            const double *pos=convertObjToPossibleCpp5_Safe(p,sw,val,a,aa,bb,msg,nbOfPoints,spaceDim,true);
752            std::vector<int> elts,eltsIndex;
753            self->getCellsContainingPoints(pos,nbOfPoints,eps,elts,eltsIndex);
754            MEDCouplingAutoRefCountObjectPtr<DataArrayInt> d0=DataArrayInt::New();
755            MEDCouplingAutoRefCountObjectPtr<DataArrayInt> d1=DataArrayInt::New();
756            d0->alloc(elts.size(),1);
757            d1->alloc(eltsIndex.size(),1);
758            std::copy(elts.begin(),elts.end(),d0->getPointer());
759            std::copy(eltsIndex.begin(),eltsIndex.end(),d1->getPointer());
760            PyObject *ret=PyTuple_New(2);
761            PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(d0.retn()),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
762            PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(d1.retn()),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
763            return ret;
764          }
765
766          PyObject *getCellsContainingPoints(PyObject *p, double eps) const throw(INTERP_KERNEL::Exception)
767          {
768            std::vector<int> elts,eltsIndex;
769            int spaceDim=self->getSpaceDimension();
770            void *da=0;
771            int res1=SWIG_ConvertPtr(p,&da,SWIGTYPE_p_ParaMEDMEM__DataArrayDouble, 0 |  0 );
772            if (!SWIG_IsOK(res1))
773              {
774                int size;
775                INTERP_KERNEL::AutoCPtr<double> tmp=convertPyToNewDblArr2(p,&size);
776                int nbOfPoints=size/spaceDim;
777                if(size%spaceDim!=0)
778                  {
779                    throw INTERP_KERNEL::Exception("MEDCouplingMesh::getCellsContainingPoints : Invalid list length ! Must be a multiple of self.getSpaceDimension() !");
780                  }
781                self->getCellsContainingPoints(tmp,nbOfPoints,eps,elts,eltsIndex);
782              }
783            else
784              {
785                DataArrayDouble *da2=reinterpret_cast< DataArrayDouble * >(da);
786                if(!da2)
787                  throw INTERP_KERNEL::Exception("MEDCouplingMesh::getCellsContainingPoints : Not null DataArrayDouble instance expected !");
788                da2->checkAllocated();
789                int size=da2->getNumberOfTuples();
790                int nbOfCompo=da2->getNumberOfComponents();
791                if(nbOfCompo!=spaceDim)
792                  {
793                    throw INTERP_KERNEL::Exception("MEDCouplingMesh::getCellsContainingPoints : Invalid DataArrayDouble nb of components ! Expected same as self.getSpaceDimension() !");
794                  }
795                self->getCellsContainingPoints(da2->getConstPointer(),size,eps,elts,eltsIndex);
796              }
797            MEDCouplingAutoRefCountObjectPtr<DataArrayInt> d0=DataArrayInt::New();
798            MEDCouplingAutoRefCountObjectPtr<DataArrayInt> d1=DataArrayInt::New();
799            d0->alloc(elts.size(),1);
800            d1->alloc(eltsIndex.size(),1);
801            std::copy(elts.begin(),elts.end(),d0->getPointer());
802            std::copy(eltsIndex.begin(),eltsIndex.end(),d1->getPointer());
803            PyObject *ret=PyTuple_New(2);
804            PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(d0.retn()),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
805            PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(d1.retn()),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
806            return ret;
807          }
808
809          PyObject *getCellsContainingPoint(PyObject *p, double eps) const throw(INTERP_KERNEL::Exception)
810          {
811            double val;
812            DataArrayDouble *a;
813            DataArrayDoubleTuple *aa;
814            std::vector<double> bb;
815            int sw;
816            int spaceDim=self->getSpaceDimension();
817            const char msg[]="Python wrap of MEDCouplingUMesh::getCellsContainingPoint : ";
818            const double *pos=convertObjToPossibleCpp5_Safe(p,sw,val,a,aa,bb,msg,1,spaceDim,true);
819            std::vector<int> elts;
820            self->getCellsContainingPoint(pos,eps,elts);
821            DataArrayInt *ret=DataArrayInt::New();
822            ret->alloc((int)elts.size(),1);
823            std::copy(elts.begin(),elts.end(),ret->getPointer());
824            return SWIG_NewPointerObj(SWIG_as_voidptr(ret),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 );
825          }
826          
827          void renumberCells(PyObject *li, bool check=true) throw(INTERP_KERNEL::Exception)
828          {
829            void *da=0;
830            int res1=SWIG_ConvertPtr(li,&da,SWIGTYPE_p_ParaMEDMEM__DataArrayInt, 0 |  0 );
831            if (!SWIG_IsOK(res1))
832              {
833                int size;
834                INTERP_KERNEL::AutoPtr<int> tmp=convertPyToNewIntArr2(li,&size);
835                self->renumberCells(tmp,check);
836              }
837            else
838              {
839                DataArrayInt *da2=reinterpret_cast< DataArrayInt * >(da);
840                if(!da2)
841                    throw INTERP_KERNEL::Exception("Not null DataArrayInt instance expected !");
842                da2->checkAllocated();
843                self->renumberCells(da2->getConstPointer(),check);
844              }
845          }
846
847          PyObject *checkGeoEquivalWith(const MEDCouplingMesh *other, int levOfCheck, double prec) const throw(INTERP_KERNEL::Exception)
848          {
849            DataArrayInt *cellCor, *nodeCor;
850            self->checkGeoEquivalWith(other,levOfCheck,prec,cellCor,nodeCor);
851            PyObject *res = PyList_New(2);
852            PyList_SetItem(res,0,SWIG_NewPointerObj(SWIG_as_voidptr(cellCor),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, cellCor?SWIG_POINTER_OWN | 0:0 ));
853            PyList_SetItem(res,1,SWIG_NewPointerObj(SWIG_as_voidptr(nodeCor),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, nodeCor?SWIG_POINTER_OWN | 0:0 ));
854            return res;
855          }
856
857          PyObject *checkDeepEquivalWith(const MEDCouplingMesh *other, int cellCompPol, double prec) const throw(INTERP_KERNEL::Exception)
858          {
859            DataArrayInt *cellCor=0,*nodeCor=0;
860            self->checkDeepEquivalWith(other,cellCompPol,prec,cellCor,nodeCor);
861            PyObject *res = PyList_New(2);
862            PyList_SetItem(res,0,SWIG_NewPointerObj(SWIG_as_voidptr(cellCor),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, cellCor?SWIG_POINTER_OWN | 0:0 ));
863            PyList_SetItem(res,1,SWIG_NewPointerObj(SWIG_as_voidptr(nodeCor),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, nodeCor?SWIG_POINTER_OWN | 0:0 ));
864            return res;
865          }
866          
867          DataArrayInt *checkDeepEquivalOnSameNodesWith(const MEDCouplingMesh *other, int cellCompPol, double prec) const throw(INTERP_KERNEL::Exception)
868          {
869            DataArrayInt *cellCor=0;
870            self->checkDeepEquivalOnSameNodesWith(other,cellCompPol,prec,cellCor);
871            return cellCor;
872          }
873
874          DataArrayInt *getCellIdsFullyIncludedInNodeIds(PyObject *li) const throw(INTERP_KERNEL::Exception)
875          {
876            void *da=0;
877            int res1=SWIG_ConvertPtr(li,&da,SWIGTYPE_p_ParaMEDMEM__DataArrayInt, 0 |  0 );
878            if (!SWIG_IsOK(res1))
879              {
880                int size;
881                INTERP_KERNEL::AutoPtr<int> tmp=convertPyToNewIntArr2(li,&size);
882                return self->getCellIdsFullyIncludedInNodeIds(tmp,((const int *)tmp)+size);
883              }
884            else
885              {
886                DataArrayInt *da2=reinterpret_cast< DataArrayInt * >(da);
887                if(!da2)
888                  throw INTERP_KERNEL::Exception("Not null DataArrayInt instance expected !");
889                da2->checkAllocated();
890                return self->getCellIdsFullyIncludedInNodeIds(da2->getConstPointer(),da2->getConstPointer()+da2->getNbOfElems());
891              }
892          }
893          PyObject *getNodeIdsOfCell(int cellId) const throw(INTERP_KERNEL::Exception)
894          {
895            std::vector<int> conn;
896            self->getNodeIdsOfCell(cellId,conn);
897            return convertIntArrToPyList2(conn);
898          }
899
900          PyObject *getCoordinatesOfNode(int nodeId) const throw(INTERP_KERNEL::Exception)
901          {
902            std::vector<double> coo;
903            self->getCoordinatesOfNode(nodeId,coo);
904            return convertDblArrToPyList2(coo);
905          }
906
907          void scale(PyObject *point, double factor) throw(INTERP_KERNEL::Exception)
908          {
909            double val;
910            DataArrayDouble *a;
911            DataArrayDoubleTuple *aa;
912            std::vector<double> bb;
913            int sw;
914            int spaceDim=self->getSpaceDimension();
915            const char msg[]="Python wrap of MEDCouplingPointSet::scale : ";
916            const double *pointPtr=convertObjToPossibleCpp5_Safe(point,sw,val,a,aa,bb,msg,1,spaceDim,true);
917            self->scale(pointPtr,factor);
918          }
919
920          PyObject *getBoundingBox() const throw(INTERP_KERNEL::Exception)
921          {
922            int spaceDim=self->getSpaceDimension();
923            INTERP_KERNEL::AutoPtr<double> tmp=new double[2*spaceDim];
924            self->getBoundingBox(tmp);
925            PyObject *ret=convertDblArrToPyListOfTuple(tmp,2,spaceDim);
926            return ret;
927          }
928
929          PyObject *isEqualIfNotWhy(const MEDCouplingMesh *other, double prec) const throw(INTERP_KERNEL::Exception)
930          {
931            std::string ret1;
932            bool ret0=self->isEqualIfNotWhy(other,prec,ret1);
933            PyObject *ret=PyTuple_New(2);
934            PyObject *ret0Py=ret0?Py_True:Py_False;
935            Py_XINCREF(ret0Py);
936            PyTuple_SetItem(ret,0,ret0Py);
937            PyTuple_SetItem(ret,1,PyString_FromString(ret1.c_str()));
938            return ret;
939          }
940
941          PyObject *buildPart(PyObject *li) const throw(INTERP_KERNEL::Exception)
942          {
943            int szArr,sw,iTypppArr;
944            std::vector<int> stdvecTyyppArr;
945            const int *tmp=convertObjToPossibleCpp1_Safe(li,sw,szArr,iTypppArr,stdvecTyyppArr);
946            MEDCouplingMesh *ret=self->buildPart(tmp,tmp+szArr);
947            if(sw==3)//DataArrayInt
948              { 
949                void *argp; SWIG_ConvertPtr(li,&argp,SWIGTYPE_p_ParaMEDMEM__DataArrayInt,0|0);
950                DataArrayInt *argpt=reinterpret_cast< ParaMEDMEM::DataArrayInt * >(argp);
951                std::string name=argpt->getName();
952                if(!name.empty())
953                  ret->setName(name.c_str());
954              }
955            return convertMesh(ret, SWIG_POINTER_OWN | 0 );
956          }
957         
958          PyObject *buildPartAndReduceNodes(PyObject *li) const throw(INTERP_KERNEL::Exception)
959          {
960            int szArr,sw,iTypppArr;
961            std::vector<int> stdvecTyyppArr;
962            DataArrayInt *arr=0;
963            const int *tmp=convertObjToPossibleCpp1_Safe(li,sw,szArr,iTypppArr,stdvecTyyppArr);
964            MEDCouplingMesh *ret=self->buildPartAndReduceNodes(tmp,tmp+szArr,arr);
965            if(sw==3)//DataArrayInt
966              { 
967                void *argp; SWIG_ConvertPtr(li,&argp,SWIGTYPE_p_ParaMEDMEM__DataArrayInt,0|0);
968                DataArrayInt *argpt=reinterpret_cast< ParaMEDMEM::DataArrayInt * >(argp);
969                std::string name=argpt->getName();
970                if(!name.empty())
971                  ret->setName(name.c_str());
972              }
973            //
974            PyObject *res = PyList_New(2);
975            PyObject *obj0=convertMesh(ret, SWIG_POINTER_OWN | 0 );
976            PyObject *obj1=SWIG_NewPointerObj(SWIG_as_voidptr(arr),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 );
977            PyList_SetItem(res,0,obj0);
978            PyList_SetItem(res,1,obj1);
979            return res;
980          }
981
982          PyObject *buildPartRangeAndReduceNodes(int beginCellIds, int endCellIds, int stepCellIds) const throw(INTERP_KERNEL::Exception)
983          {
984            int a,b,c;
985            DataArrayInt *arr=0;
986            MEDCouplingMesh *ret=self->buildPartRangeAndReduceNodes(beginCellIds,endCellIds,stepCellIds,a,b,c,arr);
987            PyObject *res = PyTuple_New(2);
988            PyObject *obj0=convertMesh(ret, SWIG_POINTER_OWN | 0 );
989            PyObject *obj1=0;
990            if(arr)
991              obj1=SWIG_NewPointerObj(SWIG_as_voidptr(arr),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 );
992            else
993              obj1=PySlice_New(PyInt_FromLong(a),PyInt_FromLong(b),PyInt_FromLong(b));
994            PyTuple_SetItem(res,0,obj0);
995            PyTuple_SetItem(res,1,obj1);
996            return res;
997          }
998
999         PyObject *getDistributionOfTypes() const throw(INTERP_KERNEL::Exception)
1000         {
1001           std::vector<int> vals=self->getDistributionOfTypes();
1002           if(vals.size()%3!=0)
1003             throw INTERP_KERNEL::Exception("Internal Error detected in wrap python ! code returned by MEDCouplingMesh::getDistributionOfTypes is not so that %3==0 !");
1004           PyObject *ret=PyList_New((int)vals.size()/3);
1005           for(int j=0;j<(int)vals.size()/3;j++)
1006              {
1007                PyObject *ret1=PyList_New(3);
1008                PyList_SetItem(ret1,0,SWIG_From_int(vals[3*j]));
1009                PyList_SetItem(ret1,1,SWIG_From_int(vals[3*j+1]));
1010                PyList_SetItem(ret1,2,SWIG_From_int(vals[3*j+2]));
1011                PyList_SetItem(ret,j,ret1);
1012              }
1013           return ret;
1014         }
1015
1016         DataArrayInt *checkTypeConsistencyAndContig(PyObject *li, PyObject *li2) const throw(INTERP_KERNEL::Exception)
1017         {
1018           std::vector<int> code;
1019           std::vector<const DataArrayInt *> idsPerType;
1020           convertFromPyObjVectorOfObj<const ParaMEDMEM::DataArrayInt *>(li2,SWIGTYPE_p_ParaMEDMEM__DataArrayInt,"DataArrayInt",idsPerType);
1021           convertPyToNewIntArr4(li,1,3,code);
1022           return self->checkTypeConsistencyAndContig(code,idsPerType);
1023         }
1024
1025         PyObject *splitProfilePerType(const DataArrayInt *profile) const throw(INTERP_KERNEL::Exception)
1026         {
1027           std::vector<int> code;
1028           std::vector<DataArrayInt *> idsInPflPerType;
1029           std::vector<DataArrayInt *> idsPerType;
1030           self->splitProfilePerType(profile,code,idsInPflPerType,idsPerType);
1031           PyObject *ret=PyTuple_New(3);
1032           //
1033           if(code.size()%3!=0)
1034             throw INTERP_KERNEL::Exception("Internal Error detected in wrap python ! code returned by MEDCouplingMesh::splitProfilePerType is not so that %3==0 !");
1035           PyObject *ret0=PyList_New((int)code.size()/3);
1036           for(int j=0;j<(int)code.size()/3;j++)
1037              {
1038                PyObject *ret00=PyList_New(3);
1039                PyList_SetItem(ret00,0,SWIG_From_int(code[3*j]));
1040                PyList_SetItem(ret00,1,SWIG_From_int(code[3*j+1]));
1041                PyList_SetItem(ret00,2,SWIG_From_int(code[3*j+2]));
1042                PyList_SetItem(ret0,j,ret00);
1043              }
1044           PyTuple_SetItem(ret,0,ret0);
1045           //
1046           PyObject *ret1=PyList_New(idsInPflPerType.size());
1047           for(std::size_t j=0;j<idsInPflPerType.size();j++)
1048             PyList_SetItem(ret1,j,SWIG_NewPointerObj(SWIG_as_voidptr(idsInPflPerType[j]),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
1049           PyTuple_SetItem(ret,1,ret1);
1050           int n=idsPerType.size();
1051           PyObject *ret2=PyList_New(n);
1052           for(int i=0;i<n;i++)
1053             PyList_SetItem(ret2,i,SWIG_NewPointerObj(SWIG_as_voidptr(idsPerType[i]),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
1054           PyTuple_SetItem(ret,2,ret2);
1055           return ret;
1056         }
1057
1058         void translate(PyObject *vector) throw(INTERP_KERNEL::Exception)
1059         {
1060           double val;
1061           DataArrayDouble *a;
1062           DataArrayDoubleTuple *aa;
1063           std::vector<double> bb;
1064           int sw;
1065           int spaceDim=self->getSpaceDimension();
1066           const char msg[]="Python wrap of MEDCouplingPointSet::translate : ";
1067           const double *vectorPtr=convertObjToPossibleCpp5_Safe(vector,sw,val,a,aa,bb,msg,1,spaceDim,true);
1068           self->translate(vectorPtr);
1069         }
1070
1071          void rotate(PyObject *center, double alpha) throw(INTERP_KERNEL::Exception)
1072          {
1073            const char msg[]="Python wrap of MEDCouplingPointSet::rotate : ";
1074            double val;
1075            DataArrayDouble *a;
1076            DataArrayDoubleTuple *aa;
1077            std::vector<double> bb;
1078            int sw;
1079            int spaceDim=self->getSpaceDimension();
1080            const double *centerPtr=convertObjToPossibleCpp5_Safe(center,sw,val,a,aa,bb,msg,1,spaceDim,true);
1081            self->rotate(centerPtr,0,alpha);
1082          }
1083
1084          void rotate(PyObject *center, PyObject *vector, double alpha) throw(INTERP_KERNEL::Exception)
1085          {
1086            const char msg[]="Python wrap of MEDCouplingPointSet::rotate : ";
1087            double val,val2;
1088            DataArrayDouble *a,*a2;
1089            DataArrayDoubleTuple *aa,*aa2;
1090            std::vector<double> bb,bb2;
1091            int sw;
1092            int spaceDim=self->getSpaceDimension();
1093            const double *centerPtr=convertObjToPossibleCpp5_Safe(center,sw,val,a,aa,bb,msg,1,spaceDim,true);
1094            const double *vectorPtr=convertObjToPossibleCpp5_Safe(vector,sw,val2,a2,aa2,bb2,msg,1,spaceDim,false);//vectorPtr can be null in case of space dim 2
1095            self->rotate(centerPtr,vectorPtr,alpha);
1096          }
1097
1098          PyObject *getAllGeoTypes() const throw(INTERP_KERNEL::Exception)
1099          {
1100            std::set<INTERP_KERNEL::NormalizedCellType> result=self->getAllGeoTypes();
1101            std::set<INTERP_KERNEL::NormalizedCellType>::const_iterator iL=result.begin();
1102            PyObject *res=PyList_New(result.size());
1103            for(int i=0;iL!=result.end(); i++, iL++)
1104              PyList_SetItem(res,i,PyInt_FromLong(*iL));
1105            return res;
1106          }
1107          
1108          static MEDCouplingMesh *MergeMeshes(PyObject *li) throw(INTERP_KERNEL::Exception)
1109          {
1110             std::vector<const ParaMEDMEM::MEDCouplingMesh *> tmp;
1111             convertFromPyObjVectorOfObj<const ParaMEDMEM::MEDCouplingMesh *>(li,SWIGTYPE_p_ParaMEDMEM__MEDCouplingMesh,"MEDCouplingMesh",tmp);
1112             return MEDCouplingMesh::MergeMeshes(tmp);
1113          }
1114        }
1115   };
1116 }
1117
1118 //== MEDCouplingMesh End
1119
1120 %include "NormalizedUnstructuredMesh.hxx"
1121 %include "MEDCouplingNatureOfField.hxx"
1122 %include "MEDCouplingTimeDiscretization.hxx"
1123 %include "MEDCouplingGaussLocalization.hxx"
1124 %include "MEDCouplingFieldDiscretization.hxx"
1125
1126 %ignore ParaMEDMEM::MEDCouplingFieldDiscretization::clonePart;
1127 %ignore ParaMEDMEM::MEDCouplingFieldDiscretization::buildSubMeshDataRange;
1128 %ignore ParaMEDMEM::MEDCouplingFieldDiscretizationPerCell::getArrayOfDiscIds;
1129
1130 //== MEDCouplingPointSet
1131
1132 namespace ParaMEDMEM
1133 {
1134   class MEDCouplingPointSet : public ParaMEDMEM::MEDCouplingMesh
1135     {
1136     public:
1137       void setCoords(const DataArrayDouble *coords) throw(INTERP_KERNEL::Exception);
1138       DataArrayDouble *getCoordinatesAndOwner() const throw(INTERP_KERNEL::Exception);
1139       bool areCoordsEqual(const MEDCouplingPointSet& other, double prec) const throw(INTERP_KERNEL::Exception);
1140       void zipCoords() throw(INTERP_KERNEL::Exception);
1141       double getCaracteristicDimension() const throw(INTERP_KERNEL::Exception);
1142       void recenterForMaxPrecision(double eps) throw(INTERP_KERNEL::Exception);
1143       void changeSpaceDimension(int newSpaceDim, double dftVal=0.) throw(INTERP_KERNEL::Exception);
1144       void tryToShareSameCoords(const MEDCouplingPointSet& other, double epsilon) throw(INTERP_KERNEL::Exception);
1145       virtual void shallowCopyConnectivityFrom(const MEDCouplingPointSet *other) throw(INTERP_KERNEL::Exception);
1146       virtual MEDCouplingPointSet *buildPartOfMySelf2(int start, int end, int step) const throw(INTERP_KERNEL::Exception);
1147       virtual void tryToShareSameCoordsPermute(const MEDCouplingPointSet& other, double epsilon) throw(INTERP_KERNEL::Exception);
1148       static DataArrayDouble *MergeNodesArray(const MEDCouplingPointSet *m1, const MEDCouplingPointSet *m2) throw(INTERP_KERNEL::Exception);
1149       static MEDCouplingPointSet *BuildInstanceFromMeshType(MEDCouplingMeshType type) throw(INTERP_KERNEL::Exception);
1150       virtual MEDCouplingPointSet *buildBoundaryMesh(bool keepCoords) const throw(INTERP_KERNEL::Exception);
1151       virtual DataArrayInt *getCellsInBoundingBox(const INTERP_KERNEL::DirectedBoundingBox& bbox, double eps) throw(INTERP_KERNEL::Exception);
1152       virtual DataArrayInt *zipCoordsTraducer() throw(INTERP_KERNEL::Exception);
1153       virtual DataArrayInt *findBoundaryNodes() const;
1154       virtual DataArrayInt *zipConnectivityTraducer(int compType, int startCellId=0) throw(INTERP_KERNEL::Exception);
1155       virtual MEDCouplingPointSet *mergeMyselfWithOnSameCoords(const MEDCouplingPointSet *other) const throw(INTERP_KERNEL::Exception);
1156       virtual void checkFullyDefined() const throw(INTERP_KERNEL::Exception);
1157       virtual bool isEmptyMesh(const std::vector<int>& tinyInfo) const throw(INTERP_KERNEL::Exception);
1158       virtual MEDCouplingPointSet *deepCpyConnectivityOnly() const throw(INTERP_KERNEL::Exception);
1159       %extend 
1160          {
1161            std::string __str__() const throw(INTERP_KERNEL::Exception)
1162            {
1163              return self->simpleRepr();
1164            }
1165            
1166            PyObject *buildNewNumberingFromCommonNodesFormat(const DataArrayInt *comm, const DataArrayInt *commIndex) const throw(INTERP_KERNEL::Exception)
1167            {
1168              int newNbOfNodes;
1169              DataArrayInt *ret0=self->buildNewNumberingFromCommonNodesFormat(comm,commIndex,newNbOfNodes);
1170              PyObject *res = PyList_New(2);
1171              PyList_SetItem(res,0,SWIG_NewPointerObj(SWIG_as_voidptr(ret0),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
1172              PyList_SetItem(res,1,SWIG_From_int(newNbOfNodes));
1173              return res;
1174            }
1175            
1176            PyObject *findCommonNodes(double prec, int limitTupleId=-1) const throw(INTERP_KERNEL::Exception)
1177            {
1178              DataArrayInt *comm, *commIndex;
1179              self->findCommonNodes(prec,limitTupleId,comm,commIndex);
1180              PyObject *res = PyList_New(2);
1181              PyList_SetItem(res,0,SWIG_NewPointerObj(SWIG_as_voidptr(comm),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
1182              PyList_SetItem(res,1,SWIG_NewPointerObj(SWIG_as_voidptr(commIndex),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
1183              return res;
1184            }
1185            
1186            PyObject *getCoords() throw(INTERP_KERNEL::Exception)
1187            {
1188              DataArrayDouble *ret1=self->getCoords();
1189              if (ret1)
1190                 ret1->incrRef();
1191              return SWIG_NewPointerObj((void*)ret1,SWIGTYPE_p_ParaMEDMEM__DataArrayDouble,SWIG_POINTER_OWN | 0);
1192            }
1193            
1194            PyObject *buildPartOfMySelf(PyObject *li, bool keepCoords=true) const throw(INTERP_KERNEL::Exception)
1195            {
1196              int szArr,sw,iTypppArr;
1197              std::vector<int> stdvecTyyppArr;
1198              const int *tmp=convertObjToPossibleCpp1_Safe(li,sw,szArr,iTypppArr,stdvecTyyppArr);
1199              MEDCouplingPointSet *ret=self->buildPartOfMySelf(tmp,tmp+szArr,keepCoords);
1200              if(sw==3)//DataArrayInt
1201                { 
1202                  void *argp; SWIG_ConvertPtr(li,&argp,SWIGTYPE_p_ParaMEDMEM__DataArrayInt,0|0);
1203                  DataArrayInt *argpt=reinterpret_cast< ParaMEDMEM::DataArrayInt * >(argp);
1204                  std::string name=argpt->getName();
1205                  if(!name.empty())
1206                    ret->setName(name.c_str());
1207                }
1208              return convertMesh(ret, SWIG_POINTER_OWN | 0 );
1209            }
1210            
1211            PyObject *buildPartOfMySelfNode(PyObject *li, bool fullyIn) const throw(INTERP_KERNEL::Exception)
1212            {
1213              int szArr,sw,iTypppArr;
1214              std::vector<int> stdvecTyyppArr;
1215              const int *tmp=convertObjToPossibleCpp1_Safe(li,sw,szArr,iTypppArr,stdvecTyyppArr);
1216              MEDCouplingPointSet *ret=self->buildPartOfMySelfNode(tmp,tmp+szArr,fullyIn);
1217              if(sw==3)//DataArrayInt
1218                { 
1219                  void *argp; SWIG_ConvertPtr(li,&argp,SWIGTYPE_p_ParaMEDMEM__DataArrayInt,0|0);
1220                  DataArrayInt *argpt=reinterpret_cast< ParaMEDMEM::DataArrayInt * >(argp);
1221                  std::string name=argpt->getName();
1222                  if(!name.empty())
1223                    ret->setName(name.c_str());
1224                }
1225              return convertMesh(ret, SWIG_POINTER_OWN | 0 );
1226            }
1227
1228            virtual PyObject *buildPartOfMySelfKeepCoords(PyObject *li) const throw(INTERP_KERNEL::Exception)
1229            {
1230              int szArr,sw,iTypppArr;
1231              std::vector<int> stdvecTyyppArr;
1232              const int *tmp=convertObjToPossibleCpp1_Safe(li,sw,szArr,iTypppArr,stdvecTyyppArr);
1233              MEDCouplingPointSet *ret=self->buildPartOfMySelfKeepCoords(tmp,tmp+szArr);
1234              if(sw==3)//DataArrayInt
1235                { 
1236                  void *argp; SWIG_ConvertPtr(li,&argp,SWIGTYPE_p_ParaMEDMEM__DataArrayInt,0|0);
1237                  DataArrayInt *argpt=reinterpret_cast< ParaMEDMEM::DataArrayInt * >(argp);
1238                  std::string name=argpt->getName();
1239                  if(!name.empty())
1240                    ret->setName(name.c_str());
1241                }
1242              return convertMesh(ret, SWIG_POINTER_OWN | 0 );
1243            }
1244
1245            virtual PyObject *buildPartOfMySelfKeepCoords2(int start, int end, int step) const throw(INTERP_KERNEL::Exception)
1246            {
1247              MEDCouplingPointSet *ret=self->buildPartOfMySelfKeepCoords2(start,end,step);
1248              return convertMesh(ret, SWIG_POINTER_OWN | 0 );
1249            }
1250
1251            PyObject *buildFacePartOfMySelfNode(PyObject *li, bool fullyIn) const throw(INTERP_KERNEL::Exception)
1252            {
1253              int szArr,sw,iTypppArr;
1254              std::vector<int> stdvecTyyppArr;
1255              const int *tmp=convertObjToPossibleCpp1_Safe(li,sw,szArr,iTypppArr,stdvecTyyppArr);
1256              MEDCouplingPointSet *ret=self->buildFacePartOfMySelfNode(tmp,tmp+szArr,fullyIn);
1257              if(sw==3)//DataArrayInt
1258                { 
1259                  void *argp; SWIG_ConvertPtr(li,&argp,SWIGTYPE_p_ParaMEDMEM__DataArrayInt,0|0);
1260                  DataArrayInt *argpt=reinterpret_cast< ParaMEDMEM::DataArrayInt * >(argp);
1261                  std::string name=argpt->getName();
1262                  if(!name.empty())
1263                    ret->setName(name.c_str());
1264                }
1265              return convertMesh(ret, SWIG_POINTER_OWN | 0 );
1266            }
1267
1268            void renumberNodes(PyObject *li, int newNbOfNodes) throw(INTERP_KERNEL::Exception)
1269            {
1270              int szArr,sw,iTypppArr;
1271              std::vector<int> stdvecTyyppArr;
1272              const int *tmp=convertObjToPossibleCpp1_Safe(li,sw,szArr,iTypppArr,stdvecTyyppArr);
1273              self->renumberNodes(tmp,newNbOfNodes);
1274            }
1275
1276            void renumberNodes2(PyObject *li, int newNbOfNodes) throw(INTERP_KERNEL::Exception)
1277            {
1278              int szArr,sw,iTypppArr;
1279              std::vector<int> stdvecTyyppArr;
1280              const int *tmp=convertObjToPossibleCpp1_Safe(li,sw,szArr,iTypppArr,stdvecTyyppArr);
1281              self->renumberNodes2(tmp,newNbOfNodes);
1282            }
1283
1284            PyObject *findNodesOnLine(PyObject *pt, PyObject *vec, double eps) const throw(INTERP_KERNEL::Exception)
1285              {
1286                int spaceDim=self->getSpaceDimension();
1287                double val,val2;
1288                DataArrayDouble *a,*a2;
1289                DataArrayDoubleTuple *aa,*aa2;
1290                std::vector<double> bb,bb2;
1291                int sw;
1292                const char msg[]="Python wrap of MEDCouplingPointSet::findNodesOnLine : 1st paramater for point.";
1293                const char msg2[]="Python wrap of MEDCouplingPointSet::findNodesOnLine : 2nd paramater for vector.";
1294                const double *p=convertObjToPossibleCpp5_Safe(pt,sw,val,a,aa,bb,msg,1,spaceDim,true);
1295                const double *v=convertObjToPossibleCpp5_Safe(vec,sw,val2,a2,aa2,bb2,msg2,1,spaceDim,true);
1296                std::vector<int> nodes;
1297                self->findNodesOnLine(p,v,eps,nodes);
1298                DataArrayInt *ret=DataArrayInt::New();
1299                ret->alloc((int)nodes.size(),1);
1300                std::copy(nodes.begin(),nodes.end(),ret->getPointer());
1301                return SWIG_NewPointerObj(SWIG_as_voidptr(ret),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 );
1302              }
1303            PyObject *findNodesOnPlane(PyObject *pt, PyObject *vec, double eps) const throw(INTERP_KERNEL::Exception)
1304              {
1305                int spaceDim=self->getSpaceDimension();
1306                double val,val2;
1307                DataArrayDouble *a,*a2;
1308                DataArrayDoubleTuple *aa,*aa2;
1309                std::vector<double> bb,bb2;
1310                int sw;
1311                const char msg[]="Python wrap of MEDCouplingPointSet::findNodesOnPlane : 1st paramater for point.";
1312                const char msg2[]="Python wrap of MEDCouplingPointSet::findNodesOnPlane : 2nd paramater for vector.";
1313                const double *p=convertObjToPossibleCpp5_Safe(pt,sw,val,a,aa,bb,msg,1,spaceDim,true);
1314                const double *v=convertObjToPossibleCpp5_Safe(vec,sw,val2,a2,aa2,bb2,msg2,1,spaceDim,true);
1315                std::vector<int> nodes;
1316                self->findNodesOnPlane(p,v,eps,nodes);
1317                DataArrayInt *ret=DataArrayInt::New();
1318                ret->alloc((int)nodes.size(),1);
1319                std::copy(nodes.begin(),nodes.end(),ret->getPointer());
1320                return SWIG_NewPointerObj(SWIG_as_voidptr(ret),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 );
1321              }
1322            
1323            PyObject *getNodeIdsNearPoint(PyObject *pt, double eps) const throw(INTERP_KERNEL::Exception)
1324            {
1325              double val;
1326              DataArrayDouble *a;
1327              DataArrayDoubleTuple *aa;
1328              std::vector<double> bb;
1329              int sw;
1330              int spaceDim=self->getSpaceDimension();
1331              const char msg[]="Python wrap of MEDCouplingPointSet::getNodeIdsNearPoint : ";
1332              const double *pos=convertObjToPossibleCpp5_Safe(pt,sw,val,a,aa,bb,msg,1,spaceDim,true);
1333              DataArrayInt *ret=self->getNodeIdsNearPoint(pos,eps);
1334              return SWIG_NewPointerObj(SWIG_as_voidptr(ret),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 );
1335            }
1336
1337            PyObject *getNodeIdsNearPoints(PyObject *pt, int nbOfPoints, double eps) const throw(INTERP_KERNEL::Exception)
1338            {
1339              DataArrayInt *c=0,*cI=0;
1340              //
1341              double val;
1342              DataArrayDouble *a;
1343              DataArrayDoubleTuple *aa;
1344              std::vector<double> bb;
1345              int sw;
1346              int spaceDim=self->getSpaceDimension();
1347              const char msg[]="Python wrap of MEDCouplingPointSet::getNodeIdsNearPoints : ";
1348              const double *pos=convertObjToPossibleCpp5_Safe(pt,sw,val,a,aa,bb,msg,nbOfPoints,spaceDim,true);
1349              self->getNodeIdsNearPoints(pos,nbOfPoints,eps,c,cI);
1350              PyObject *ret=PyTuple_New(2);
1351              PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(c),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
1352              PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(cI),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
1353              return ret;
1354            }
1355
1356            PyObject *getNodeIdsNearPoints(PyObject *pt, double eps) const throw(INTERP_KERNEL::Exception)
1357            {
1358              DataArrayInt *c=0,*cI=0;
1359              int spaceDim=self->getSpaceDimension();
1360              double val;
1361              DataArrayDouble *a;
1362              DataArrayDoubleTuple *aa;
1363              std::vector<double> bb;
1364              int sw;
1365              int nbOfTuples=-1;
1366              const double *ptPtr=convertObjToPossibleCpp5_Safe2(pt,sw,val,a,aa,bb,"Python wrap of MEDCouplingUMesh::getNodeIdsNearPoints",spaceDim,true,nbOfTuples);
1367              self->getNodeIdsNearPoints(ptPtr,nbOfTuples,eps,c,cI);
1368              //
1369              PyObject *ret=PyTuple_New(2);
1370              PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(c),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
1371              PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(cI),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
1372              return ret;
1373            }
1374
1375            PyObject *getCellsInBoundingBox(PyObject *bbox, double eps) const throw(INTERP_KERNEL::Exception)
1376            {
1377              double val;
1378              DataArrayDouble *a;
1379              DataArrayDoubleTuple *aa;
1380              std::vector<double> bb;
1381              int sw;
1382              int spaceDim=self->getSpaceDimension();
1383              const char msg[]="Python wrap of MEDCouplingPointSet::getCellsInBoundingBox : ";
1384              const double *tmp=convertObjToPossibleCpp5_Safe(bbox,sw,val,a,aa,bb,msg,spaceDim,2,true);
1385              //
1386              DataArrayInt *elems=self->getCellsInBoundingBox(tmp,eps);
1387              return SWIG_NewPointerObj(SWIG_as_voidptr(elems),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 );
1388            }
1389
1390            void duplicateNodesInCoords(PyObject *li) throw(INTERP_KERNEL::Exception)
1391            {
1392              int sw;
1393              int singleVal;
1394              std::vector<int> multiVal;
1395              std::pair<int, std::pair<int,int> > slic;
1396              ParaMEDMEM::DataArrayInt *daIntTyypp=0;
1397              convertObjToPossibleCpp2(li,self->getNumberOfNodes(),sw,singleVal,multiVal,slic,daIntTyypp);
1398              switch(sw)
1399                {
1400                case 1:
1401                  return self->duplicateNodesInCoords(&singleVal,&singleVal+1);
1402                case 2:
1403                  return self->duplicateNodesInCoords(&multiVal[0],&multiVal[0]+multiVal.size());
1404                case 4:
1405                  return self->duplicateNodesInCoords(daIntTyypp->begin(),daIntTyypp->end());
1406                default:
1407                  throw INTERP_KERNEL::Exception("MEDCouplingPointSet::duplicateNodesInCoords : unrecognized type entered, expected list of int, tuple of int or DataArrayInt !");
1408                }
1409            }
1410
1411            virtual PyObject *getReverseNodalConnectivity() const throw(INTERP_KERNEL::Exception)
1412            {
1413              MEDCouplingAutoRefCountObjectPtr<DataArrayInt> d0=DataArrayInt::New();
1414              MEDCouplingAutoRefCountObjectPtr<DataArrayInt> d1=DataArrayInt::New();
1415              self->getReverseNodalConnectivity(d0,d1);
1416              PyObject *ret=PyTuple_New(2);
1417              PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(d0.retn()),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
1418              PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(d1.retn()),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
1419              return ret;
1420            }
1421
1422            virtual PyObject *findCommonCells(int compType, int startCellId=0) const throw(INTERP_KERNEL::Exception)
1423            {
1424              DataArrayInt *v0=0,*v1=0;
1425              self->findCommonCells(compType,startCellId,v0,v1);
1426              PyObject *res = PyList_New(2);
1427              PyList_SetItem(res,0,SWIG_NewPointerObj(SWIG_as_voidptr(v0),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
1428              PyList_SetItem(res,1,SWIG_NewPointerObj(SWIG_as_voidptr(v1),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
1429              return res;
1430            }
1431
1432       
1433            virtual void renumberNodesInConn(PyObject *li) throw(INTERP_KERNEL::Exception)
1434            {
1435              void *da=0;
1436              int res1=SWIG_ConvertPtr(li,&da,SWIGTYPE_p_ParaMEDMEM__DataArrayInt, 0 | 0 );
1437              if (!SWIG_IsOK(res1))
1438                {
1439                  int size;
1440                  INTERP_KERNEL::AutoPtr<int> tmp=convertPyToNewIntArr2(li,&size);
1441                  self->renumberNodesInConn(tmp);
1442                }
1443              else
1444                {
1445                  DataArrayInt *da2=reinterpret_cast< DataArrayInt * >(da);
1446                  if(!da2)
1447                    throw INTERP_KERNEL::Exception("Not null DataArrayInt instance expected !");
1448                  da2->checkAllocated();
1449                  self->renumberNodesInConn(da2->getConstPointer());
1450                }
1451            }
1452
1453            virtual PyObject *getNodeIdsInUse() const throw(INTERP_KERNEL::Exception)
1454            {
1455              int ret1=-1;
1456              DataArrayInt *ret0=self->getNodeIdsInUse(ret1);
1457              PyObject *ret=PyTuple_New(2);
1458              PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(ret0),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
1459              PyTuple_SetItem(ret,1,PyInt_FromLong(ret1));
1460              return ret;
1461            }
1462
1463            virtual DataArrayInt *fillCellIdsToKeepFromNodeIds(PyObject *li, bool fullyIn) const
1464            {
1465              DataArrayInt *ret=0;
1466              //
1467              int szArr,sw,iTypppArr;
1468              std::vector<int> stdvecTyyppArr;
1469              const int *tmp=convertObjToPossibleCpp1_Safe(li,sw,szArr,iTypppArr,stdvecTyyppArr);
1470              self->fillCellIdsToKeepFromNodeIds(tmp,tmp+szArr,fullyIn,ret);
1471              return ret;
1472            }
1473
1474            virtual PyObject *mergeNodes(double precision) throw(INTERP_KERNEL::Exception)
1475            {
1476              bool ret1;
1477              int ret2;
1478              DataArrayInt *ret0=self->mergeNodes(precision,ret1,ret2);
1479              PyObject *res = PyList_New(3);
1480              PyList_SetItem(res,0,SWIG_NewPointerObj(SWIG_as_voidptr(ret0),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
1481              PyList_SetItem(res,1,SWIG_From_bool(ret1));
1482              PyList_SetItem(res,2,SWIG_From_int(ret2));
1483              return res;
1484            }
1485            
1486            virtual PyObject *mergeNodes2(double precision) throw(INTERP_KERNEL::Exception)
1487            {
1488              bool ret1;
1489              int ret2;
1490              DataArrayInt *ret0=self->mergeNodes2(precision,ret1,ret2);
1491              PyObject *res = PyList_New(3);
1492              PyList_SetItem(res,0,SWIG_NewPointerObj(SWIG_as_voidptr(ret0),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
1493              PyList_SetItem(res,1,SWIG_From_bool(ret1));
1494              PyList_SetItem(res,2,SWIG_From_int(ret2));
1495              return res;
1496            }
1497            
1498            DataArrayInt *getCellIdsLyingOnNodes(PyObject *li, bool fullyIn) const throw(INTERP_KERNEL::Exception)
1499            {
1500              void *da=0;
1501              int res1=SWIG_ConvertPtr(li,&da,SWIGTYPE_p_ParaMEDMEM__DataArrayInt, 0 |  0 );
1502              if (!SWIG_IsOK(res1))
1503                {
1504                  int size;
1505                  INTERP_KERNEL::AutoPtr<int> tmp=convertPyToNewIntArr2(li,&size);
1506                  return self->getCellIdsLyingOnNodes(tmp,((const int *)tmp)+size,fullyIn);
1507                }
1508              else
1509                {
1510                  DataArrayInt *da2=reinterpret_cast< DataArrayInt * >(da);
1511                  if(!da2)
1512                    throw INTERP_KERNEL::Exception("Not null DataArrayInt instance expected !");
1513                  da2->checkAllocated();
1514                  return self->getCellIdsLyingOnNodes(da2->getConstPointer(),da2->getConstPointer()+da2->getNbOfElems(),fullyIn);
1515                }
1516            }
1517
1518            MEDCouplingPointSet *__getitem__(PyObject *listOrDataArrI) throw(INTERP_KERNEL::Exception)
1519            {
1520              int sw;
1521              int singleVal;
1522              std::vector<int> multiVal;
1523              std::pair<int, std::pair<int,int> > slic;
1524              ParaMEDMEM::DataArrayInt *daIntTyypp=0;
1525              int nbc=self->getNumberOfCells();
1526              convertObjToPossibleCpp2(listOrDataArrI,nbc,sw,singleVal,multiVal,slic,daIntTyypp);
1527              switch(sw)
1528                {
1529                case 1:
1530                  {
1531                    if(singleVal>=nbc)
1532                      {
1533                        std::ostringstream oss;
1534                        oss << "Requesting for cell id " << singleVal << " having only " << nbc << " cells !";
1535                        throw INTERP_KERNEL::Exception(oss.str().c_str());
1536                      }
1537                    if(singleVal>=0)
1538                      return self->buildPartOfMySelf(&singleVal,&singleVal+1,true);
1539                    else
1540                      {
1541                        if(nbc+singleVal>0)
1542                          {
1543                            int tmp=nbc+singleVal;
1544                            return self->buildPartOfMySelf(&tmp,&tmp+1,true);
1545                          }
1546                        else
1547                          {
1548                            std::ostringstream oss;
1549                            oss << "Requesting for cell id " << singleVal << " having only " << nbc << " cells !";
1550                            throw INTERP_KERNEL::Exception(oss.str().c_str());
1551                          }
1552                      }
1553                  }
1554                case 2:
1555                  {
1556                    return static_cast<MEDCouplingPointSet *>(self->buildPartOfMySelf(&multiVal[0],&multiVal[0]+multiVal.size(),true));
1557                  }
1558                case 3:
1559                  {
1560                    return self->buildPartOfMySelf2(slic.first,slic.second.first,slic.second.second,true);
1561                  }
1562                case 4:
1563                  {
1564                    if(!daIntTyypp)
1565                      throw INTERP_KERNEL::Exception("MEDCouplingUMesh::__getitem__ : null instance has been given in input !");
1566                    daIntTyypp->checkAllocated();
1567                    return self->buildPartOfMySelf(daIntTyypp->begin(),daIntTyypp->end(),true);
1568                  }
1569                default:
1570                  throw INTERP_KERNEL::Exception("MEDCouplingUMesh::__getitem__ : unrecognized type in input ! Possibilities are : int, list or tuple of int DataArrayInt instance !");
1571                }
1572            }
1573            
1574            static void Rotate2DAlg(PyObject *center, double angle, int nbNodes, PyObject *coords) throw(INTERP_KERNEL::Exception)
1575            {
1576              int sz;
1577              INTERP_KERNEL::AutoCPtr<double> c=convertPyToNewDblArr2(center,&sz);
1578              INTERP_KERNEL::AutoCPtr<double> coo=convertPyToNewDblArr2(coords,&sz);
1579              ParaMEDMEM::MEDCouplingPointSet::Rotate2DAlg(c,angle,nbNodes,coo);
1580              for(int i=0;i<sz;i++)
1581                PyList_SetItem(coords,i,PyFloat_FromDouble(coo[i]));
1582            }
1583            
1584            static void Rotate2DAlg(PyObject *center, double angle, PyObject *coords) throw(INTERP_KERNEL::Exception)
1585            {
1586              int sz;
1587              INTERP_KERNEL::AutoCPtr<double> c=convertPyToNewDblArr2(center,&sz);
1588              int sw,nbNodes=0;
1589              double val0;  ParaMEDMEM::DataArrayDouble *val1=0; ParaMEDMEM::DataArrayDoubleTuple *val2=0;
1590              std::vector<double> val3;
1591              const double *coo=convertObjToPossibleCpp5_Safe2(coords,sw,val0,val1,val2,val3,
1592                                                             "Rotate2DAlg",2,true,nbNodes);
1593              if(sw!=2 && sw!=3)
1594                throw INTERP_KERNEL::Exception("Invalid call to MEDCouplingPointSet::Rotate2DAlg : try another overload method !");
1595              ParaMEDMEM::MEDCouplingPointSet::Rotate2DAlg(c,angle,nbNodes,const_cast<double *>(coo));
1596            }
1597            
1598            static void Rotate3DAlg(PyObject *center, PyObject *vect, double angle, int nbNodes, PyObject *coords) throw(INTERP_KERNEL::Exception)
1599            {
1600              int sz,sz2;
1601              INTERP_KERNEL::AutoCPtr<double> c=convertPyToNewDblArr2(center,&sz);
1602              INTERP_KERNEL::AutoCPtr<double> coo=convertPyToNewDblArr2(coords,&sz);
1603              INTERP_KERNEL::AutoCPtr<double> v=convertPyToNewDblArr2(vect,&sz2);
1604              ParaMEDMEM::MEDCouplingPointSet::Rotate3DAlg(c,v,angle,nbNodes,coo);
1605              for(int i=0;i<sz;i++)
1606                PyList_SetItem(coords,i,PyFloat_FromDouble(coo[i]));
1607            }
1608            
1609            static void Rotate3DAlg(PyObject *center, PyObject *vect, double angle, PyObject *coords) throw(INTERP_KERNEL::Exception)
1610            {
1611              int sz,sz2;
1612              INTERP_KERNEL::AutoCPtr<double> c=convertPyToNewDblArr2(center,&sz);
1613              int sw,nbNodes=0;
1614              double val0;  ParaMEDMEM::DataArrayDouble *val1=0; ParaMEDMEM::DataArrayDoubleTuple *val2=0;
1615              std::vector<double> val3;
1616              const double *coo=convertObjToPossibleCpp5_Safe2(coords,sw,val0,val1,val2,val3,
1617                                                             "Rotate3DAlg",3,true,nbNodes);
1618              if(sw!=2 && sw!=3)
1619                throw INTERP_KERNEL::Exception("Invalid call to MEDCouplingPointSet::Rotate3DAlg : try another overload method !");
1620              INTERP_KERNEL::AutoCPtr<double> v=convertPyToNewDblArr2(vect,&sz2);
1621              ParaMEDMEM::MEDCouplingPointSet::Rotate3DAlg(c,v,angle,nbNodes,const_cast<double *>(coo));
1622            }
1623          }
1624     };
1625
1626   //== MEDCouplingPointSet End
1627
1628   class MEDCouplingUMeshCell
1629   {
1630   public:
1631     INTERP_KERNEL::NormalizedCellType getType() const;
1632     %extend
1633       {
1634         std::string __str__() const throw(INTERP_KERNEL::Exception)
1635         {
1636           return self->repr();
1637         }
1638
1639         PyObject *getAllConn() const throw(INTERP_KERNEL::Exception)
1640         {
1641           int ret2;
1642           const int *r=self->getAllConn(ret2);
1643           PyObject *ret=PyTuple_New(ret2);
1644           for(int i=0;i<ret2;i++)
1645             PyTuple_SetItem(ret,i,PyInt_FromLong(r[i]));
1646           return ret;
1647         }
1648       }
1649   };
1650
1651   class MEDCouplingUMeshCellIterator
1652   {
1653   public:
1654     %extend
1655       {
1656         PyObject *next()
1657         {
1658           MEDCouplingUMeshCell *ret=self->nextt();
1659           if(ret)
1660             return SWIG_NewPointerObj(SWIG_as_voidptr(ret),SWIGTYPE_p_ParaMEDMEM__MEDCouplingUMeshCell,0|0);
1661           else
1662             {
1663               PyErr_SetString(PyExc_StopIteration,"No more data.");
1664               return 0;
1665             }
1666         }
1667       }
1668   };
1669
1670   class MEDCouplingUMeshCellByTypeIterator
1671   {
1672   public:
1673     ~MEDCouplingUMeshCellByTypeIterator();
1674     %extend
1675       {
1676         PyObject *next()
1677         {
1678           MEDCouplingUMeshCellEntry *ret=self->nextt();
1679           if(ret)
1680             return SWIG_NewPointerObj(SWIG_as_voidptr(ret),SWIGTYPE_p_ParaMEDMEM__MEDCouplingUMeshCellEntry,SWIG_POINTER_OWN | 0);
1681           else
1682             {
1683               PyErr_SetString(PyExc_StopIteration,"No more data.");
1684               return 0;
1685             }
1686         }
1687       }
1688   };
1689
1690   class MEDCouplingUMeshCellByTypeEntry
1691   {
1692   public:
1693     ~MEDCouplingUMeshCellByTypeEntry();
1694     %extend
1695       {
1696         MEDCouplingUMeshCellByTypeIterator *__iter__()
1697         {
1698           return self->iterator();
1699         }
1700       }
1701   };
1702
1703   class MEDCouplingUMeshCellEntry
1704   {
1705   public:
1706     INTERP_KERNEL::NormalizedCellType getType() const;
1707     int getNumberOfElems() const;
1708     %extend
1709       {
1710         MEDCouplingUMeshCellIterator *__iter__()
1711         {
1712           return self->iterator();
1713         }
1714       }
1715   };
1716   
1717   //== MEDCouplingUMesh
1718
1719   class MEDCouplingUMesh : public ParaMEDMEM::MEDCouplingPointSet
1720   {
1721   public:
1722     static MEDCouplingUMesh *New() throw(INTERP_KERNEL::Exception);
1723     static MEDCouplingUMesh *New(const char *meshName, int meshDim) throw(INTERP_KERNEL::Exception);
1724     MEDCouplingUMesh *clone(bool recDeepCpy) const;
1725     void checkCoherency() const throw(INTERP_KERNEL::Exception);
1726     void setMeshDimension(int meshDim) throw(INTERP_KERNEL::Exception);
1727     void allocateCells(int nbOfCells=0) throw(INTERP_KERNEL::Exception);
1728     void finishInsertingCells() throw(INTERP_KERNEL::Exception);
1729     MEDCouplingUMeshCellByTypeEntry *cellsByType() throw(INTERP_KERNEL::Exception);
1730     void setConnectivity(DataArrayInt *conn, DataArrayInt *connIndex, bool isComputingTypes=true) throw(INTERP_KERNEL::Exception);
1731     INTERP_KERNEL::NormalizedCellType getTypeOfCell(int cellId) const throw(INTERP_KERNEL::Exception);
1732     void setPartOfMySelf2(int start, int end, int step, const MEDCouplingUMesh& otherOnSameCoordsThanThis) throw(INTERP_KERNEL::Exception);
1733     int getNumberOfNodesInCell(int cellId) const throw(INTERP_KERNEL::Exception);
1734     int getMeshLength() const throw(INTERP_KERNEL::Exception);
1735     void computeTypes() throw(INTERP_KERNEL::Exception);
1736     std::string reprConnectivityOfThis() const throw(INTERP_KERNEL::Exception);
1737     MEDCouplingUMesh *buildSetInstanceFromThis(int spaceDim) const throw(INTERP_KERNEL::Exception);
1738     //tools
1739     void shiftNodeNumbersInConn(int delta) throw(INTERP_KERNEL::Exception);
1740     std::vector<bool> getQuadraticStatus() const throw(INTERP_KERNEL::Exception);
1741     DataArrayInt *findCellIdsOnBoundary() const throw(INTERP_KERNEL::Exception);
1742     MEDCouplingUMesh *computeSkin() const throw(INTERP_KERNEL::Exception);
1743     bool checkConsecutiveCellTypes() const throw(INTERP_KERNEL::Exception);
1744     bool checkConsecutiveCellTypesForMEDFileFrmt() const throw(INTERP_KERNEL::Exception);
1745     DataArrayInt *rearrange2ConsecutiveCellTypes() throw(INTERP_KERNEL::Exception);
1746     DataArrayInt *sortCellsInMEDFileFrmt() throw(INTERP_KERNEL::Exception);
1747     DataArrayInt *getRenumArrForMEDFileFrmt() const throw(INTERP_KERNEL::Exception);
1748     DataArrayInt *convertCellArrayPerGeoType(const DataArrayInt *da) const throw(INTERP_KERNEL::Exception);
1749     DataArrayInt *computeFetchedNodeIds() const throw(INTERP_KERNEL::Exception);
1750     MEDCouplingUMesh *buildDescendingConnectivity(DataArrayInt *desc, DataArrayInt *descIndx, DataArrayInt *revDesc, DataArrayInt *revDescIndx) const throw(INTERP_KERNEL::Exception);
1751     MEDCouplingUMesh *buildDescendingConnectivity2(DataArrayInt *desc, DataArrayInt *descIndx, DataArrayInt *revDesc, DataArrayInt *revDescIndx) const throw(INTERP_KERNEL::Exception);
1752     MEDCouplingUMesh *explode3DMeshTo1D(DataArrayInt *desc, DataArrayInt *descIndx, DataArrayInt *revDesc, DataArrayInt *revDescIndx) const throw(INTERP_KERNEL::Exception);
1753     void orientCorrectlyPolyhedrons() throw(INTERP_KERNEL::Exception);
1754     bool isPresenceOfQuadratic() const throw(INTERP_KERNEL::Exception);
1755     MEDCouplingFieldDouble *buildDirectionVectorField() const throw(INTERP_KERNEL::Exception);
1756     bool isContiguous1D() const throw(INTERP_KERNEL::Exception);
1757     void tessellate2D(double eps) throw(INTERP_KERNEL::Exception);
1758     void tessellate2DCurve(double eps) throw(INTERP_KERNEL::Exception);
1759     void convertQuadraticCellsToLinear() throw(INTERP_KERNEL::Exception);
1760     DataArrayInt *convertLinearCellsToQuadratic(int conversionType=0) throw(INTERP_KERNEL::Exception);
1761     void convertDegeneratedCells() throw(INTERP_KERNEL::Exception);
1762     bool areOnlySimplexCells() const throw(INTERP_KERNEL::Exception);
1763     MEDCouplingFieldDouble *getEdgeRatioField() const throw(INTERP_KERNEL::Exception);
1764     MEDCouplingFieldDouble *getAspectRatioField() const throw(INTERP_KERNEL::Exception);
1765     MEDCouplingFieldDouble *getWarpField() const throw(INTERP_KERNEL::Exception);
1766     MEDCouplingFieldDouble *getSkewField() const throw(INTERP_KERNEL::Exception);
1767     DataArrayInt *convexEnvelop2D() throw(INTERP_KERNEL::Exception);
1768     std::string cppRepr() const throw(INTERP_KERNEL::Exception);
1769     DataArrayInt *findAndCorrectBadOriented3DExtrudedCells() throw(INTERP_KERNEL::Exception);
1770     DataArrayInt *findAndCorrectBadOriented3DCells() throw(INTERP_KERNEL::Exception);
1771     ParaMEDMEM::MEDCoupling1GTUMesh *convertIntoSingleGeoTypeMesh() const throw(INTERP_KERNEL::Exception);
1772     DataArrayInt *convertNodalConnectivityToStaticGeoTypeMesh() const throw(INTERP_KERNEL::Exception);
1773     static MEDCouplingUMesh *Build0DMeshFromCoords(DataArrayDouble *da) throw(INTERP_KERNEL::Exception);
1774     static MEDCouplingUMesh *MergeUMeshes(const MEDCouplingUMesh *mesh1, const MEDCouplingUMesh *mesh2) throw(INTERP_KERNEL::Exception);
1775     static MEDCouplingUMesh *MergeUMeshesOnSameCoords(const MEDCouplingUMesh *mesh1, const MEDCouplingUMesh *mesh2) throw(INTERP_KERNEL::Exception);
1776     static DataArrayInt *ComputeSpreadZoneGradually(const DataArrayInt *arrIn, const DataArrayInt *arrIndxIn) throw(INTERP_KERNEL::Exception);
1777     static DataArrayInt *ComputeRangesFromTypeDistribution(const std::vector<int>& code) throw(INTERP_KERNEL::Exception);
1778     %extend {
1779       MEDCouplingUMesh() throw(INTERP_KERNEL::Exception)
1780       {
1781         return MEDCouplingUMesh::New();
1782       }
1783       
1784       MEDCouplingUMesh(const char *meshName, int meshDim) throw(INTERP_KERNEL::Exception)
1785       {
1786         return MEDCouplingUMesh::New(meshName,meshDim);
1787       }
1788       
1789       std::string __str__() const throw(INTERP_KERNEL::Exception)
1790       {
1791         return self->simpleRepr();
1792       }
1793       
1794       std::string __repr__() const throw(INTERP_KERNEL::Exception)
1795       {
1796         std::ostringstream oss;
1797         self->reprQuickOverview(oss);
1798         return oss.str();
1799       }
1800       
1801       MEDCouplingUMeshCellIterator *__iter__() throw(INTERP_KERNEL::Exception)
1802       {
1803         return self->cellIterator();
1804       }
1805       
1806       void setPartOfMySelf(PyObject *li, const MEDCouplingUMesh& otherOnSameCoordsThanThis) throw(INTERP_KERNEL::Exception)
1807       {
1808         int sw;
1809         int singleVal;
1810         std::vector<int> multiVal;
1811         std::pair<int, std::pair<int,int> > slic;
1812         ParaMEDMEM::DataArrayInt *daIntTyypp=0;
1813         int nbc=self->getNumberOfCells();
1814         convertObjToPossibleCpp2(li,nbc,sw,singleVal,multiVal,slic,daIntTyypp);
1815         switch(sw)
1816           {
1817           case 1:
1818             {
1819               if(singleVal>=nbc)
1820                 {
1821                   std::ostringstream oss;
1822                   oss << "Requesting for cell id " << singleVal << " having only " << nbc << " cells !";
1823                   throw INTERP_KERNEL::Exception(oss.str().c_str());
1824                 }
1825               if(singleVal>=0)
1826                 {
1827                   self->setPartOfMySelf(&singleVal,&singleVal+1,otherOnSameCoordsThanThis);
1828                   break;
1829                 }
1830               else
1831                 {
1832                   if(nbc+singleVal>0)
1833                     {
1834                       int tmp=nbc+singleVal;
1835                       self->setPartOfMySelf(&tmp,&tmp+1,otherOnSameCoordsThanThis);
1836                       break;
1837                     }
1838                   else
1839                     {
1840                       std::ostringstream oss;
1841                       oss << "Requesting for cell id " << singleVal << " having only " << nbc << " cells !";
1842                       throw INTERP_KERNEL::Exception(oss.str().c_str());
1843                     }
1844                 }
1845             }
1846           case 2:
1847             {
1848               self->setPartOfMySelf(&multiVal[0],&multiVal[0]+multiVal.size(),otherOnSameCoordsThanThis);
1849               break;
1850             }
1851           case 4:
1852             {
1853               if(!daIntTyypp)
1854                 throw INTERP_KERNEL::Exception("MEDCouplingUMesh::setPartOfMySelf : null instance has been given in input !");
1855               daIntTyypp->checkAllocated();
1856               self->setPartOfMySelf(daIntTyypp->begin(),daIntTyypp->end(),otherOnSameCoordsThanThis);
1857               break;
1858             }
1859           default:
1860             throw INTERP_KERNEL::Exception("MEDCouplingUMesh::setPartOfMySelf : unrecognized type in input ! Possibilities are : int, list or tuple of int DataArrayInt instance !");
1861           }
1862       }
1863
1864       void __setitem__(PyObject *li, const MEDCouplingUMesh& otherOnSameCoordsThanThis) throw(INTERP_KERNEL::Exception)
1865       {
1866         int sw;
1867         int singleVal;
1868         std::vector<int> multiVal;
1869         std::pair<int, std::pair<int,int> > slic;
1870         ParaMEDMEM::DataArrayInt *daIntTyypp=0;
1871         int nbc=self->getNumberOfCells();
1872         convertObjToPossibleCpp2(li,nbc,sw,singleVal,multiVal,slic,daIntTyypp);
1873         switch(sw)
1874           {
1875           case 1:
1876             {
1877               if(singleVal>=nbc)
1878                 {
1879                   std::ostringstream oss;
1880                   oss << "Requesting for cell id " << singleVal << " having only " << nbc << " cells !";
1881                   throw INTERP_KERNEL::Exception(oss.str().c_str());
1882                 }
1883               if(singleVal>=0)
1884                 {
1885                   self->setPartOfMySelf(&singleVal,&singleVal+1,otherOnSameCoordsThanThis);
1886                   break;
1887                 }
1888               else
1889                 {
1890                   if(nbc+singleVal>0)
1891                     {
1892                       int tmp=nbc+singleVal;
1893                       self->setPartOfMySelf(&tmp,&tmp+1,otherOnSameCoordsThanThis);
1894                       break;
1895                     }
1896                   else
1897                     {
1898                       std::ostringstream oss;
1899                       oss << "Requesting for cell id " << singleVal << " having only " << nbc << " cells !";
1900                       throw INTERP_KERNEL::Exception(oss.str().c_str());
1901                     }
1902                 }
1903             }
1904           case 2:
1905             {
1906               self->setPartOfMySelf(&multiVal[0],&multiVal[0]+multiVal.size(),otherOnSameCoordsThanThis);
1907               break;
1908             }
1909           case 3:
1910             {
1911               self->setPartOfMySelf2(slic.first,slic.second.first,slic.second.second,otherOnSameCoordsThanThis);
1912               break;
1913             }
1914           case 4:
1915             {
1916               if(!daIntTyypp)
1917                 throw INTERP_KERNEL::Exception("MEDCouplingUMesh::__setitem__ : null instance has been given in input !");
1918               daIntTyypp->checkAllocated();
1919               self->setPartOfMySelf(daIntTyypp->begin(),daIntTyypp->end(),otherOnSameCoordsThanThis);
1920               break;
1921             }
1922           default:
1923             throw INTERP_KERNEL::Exception("MEDCouplingUMesh::__setitem__ : unrecognized type in input ! Possibilities are : int, list or tuple of int, slice, DataArrayInt instance !");
1924           }
1925       }
1926
1927       void insertNextCell(INTERP_KERNEL::NormalizedCellType type, int size, PyObject *li) throw(INTERP_KERNEL::Exception)
1928       {
1929         int szArr,sw,iTypppArr;
1930         std::vector<int> stdvecTyyppArr;
1931         const int *tmp=convertObjToPossibleCpp1_Safe(li,sw,szArr,iTypppArr,stdvecTyyppArr);
1932         if(size>szArr)
1933           {
1934             std::ostringstream oss; oss << "Wrap of MEDCouplingUMesh::insertNextCell : request of connectivity with length " << size << " whereas the length of input is " << szArr << " !";
1935             throw INTERP_KERNEL::Exception(oss.str().c_str());
1936           }
1937         self->insertNextCell(type,size,tmp);
1938       }
1939
1940       void insertNextCell(INTERP_KERNEL::NormalizedCellType type, PyObject *li) throw(INTERP_KERNEL::Exception)
1941       {
1942         int szArr,sw,iTypppArr;
1943         std::vector<int> stdvecTyyppArr;
1944         const int *tmp=convertObjToPossibleCpp1_Safe(li,sw,szArr,iTypppArr,stdvecTyyppArr);
1945         self->insertNextCell(type,szArr,tmp);
1946       }
1947       
1948       DataArrayInt *getNodalConnectivity() throw(INTERP_KERNEL::Exception)
1949       {
1950         DataArrayInt *ret=self->getNodalConnectivity();
1951         if(ret)
1952           ret->incrRef();
1953         return ret;
1954       }
1955       DataArrayInt *getNodalConnectivityIndex() throw(INTERP_KERNEL::Exception)
1956       {
1957         DataArrayInt *ret=self->getNodalConnectivityIndex();
1958         if(ret)
1959           ret->incrRef();
1960         return ret;
1961       }
1962       PyObject *getAllTypes() const throw(INTERP_KERNEL::Exception)
1963       {
1964         std::set<INTERP_KERNEL::NormalizedCellType> result=self->getAllTypes();
1965         std::set<INTERP_KERNEL::NormalizedCellType>::const_iterator iL=result.begin();
1966         PyObject *res = PyList_New(result.size());
1967         for (int i=0;iL!=result.end(); i++, iL++)
1968           PyList_SetItem(res,i,PyInt_FromLong(*iL));
1969         return res;
1970       }
1971       
1972       static PyObject *ComputeSpreadZoneGraduallyFromSeed(PyObject *seed, const DataArrayInt *arrIn, const DataArrayInt *arrIndxIn, int nbOfDepthPeeling=-1) throw(INTERP_KERNEL::Exception)
1973       {
1974         int szArr,sw,iTypppArr;
1975         std::vector<int> stdvecTyyppArr;
1976         const int *seedPtr=convertObjToPossibleCpp1_Safe(seed,sw,szArr,iTypppArr,stdvecTyyppArr);
1977         int nbOfDepthPeelingPerformed=0;
1978         DataArrayInt *ret0=MEDCouplingUMesh::ComputeSpreadZoneGraduallyFromSeed(seedPtr,seedPtr+szArr,arrIn,arrIndxIn,nbOfDepthPeeling,nbOfDepthPeelingPerformed);
1979         PyObject *res=PyTuple_New(2);
1980         PyTuple_SetItem(res,0,SWIG_NewPointerObj(SWIG_as_voidptr(ret0),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
1981         PyTuple_SetItem(res,1,PyInt_FromLong(nbOfDepthPeelingPerformed));
1982         return res;
1983       }
1984
1985       static PyObject *FindCommonCellsAlg(int compType, int startCellId, const DataArrayInt *nodal, const DataArrayInt *nodalI, const DataArrayInt *revNodal, const DataArrayInt *revNodalI) throw(INTERP_KERNEL::Exception)
1986       {
1987         DataArrayInt *v0=0,*v1=0;
1988         MEDCouplingUMesh::FindCommonCellsAlg(compType,startCellId,nodal,nodalI,revNodal,revNodalI,v0,v1);
1989         PyObject *res = PyList_New(2);
1990         PyList_SetItem(res,0,SWIG_NewPointerObj(SWIG_as_voidptr(v0),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
1991         PyList_SetItem(res,1,SWIG_NewPointerObj(SWIG_as_voidptr(v1),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
1992         return res;
1993       }
1994       
1995       PyObject *distanceToPoint(PyObject *point) const throw(INTERP_KERNEL::Exception)
1996       {
1997         double val;
1998         DataArrayDouble *a;
1999         DataArrayDoubleTuple *aa;
2000         std::vector<double> bb;
2001         int sw;
2002         int nbOfCompo=self->getSpaceDimension();
2003         const double *pt=convertObjToPossibleCpp5_Safe(point,sw,val,a,aa,bb,"Python wrap of MEDCouplingUMesh::distanceToPoint",1,nbOfCompo,true);
2004         //
2005         int cellId=-1;
2006         double ret0=self->distanceToPoint(pt,pt+nbOfCompo,cellId);
2007         PyObject *ret=PyTuple_New(2);
2008         PyTuple_SetItem(ret,0,PyFloat_FromDouble(ret0));
2009         PyTuple_SetItem(ret,1,PyInt_FromLong(cellId));
2010         return ret;
2011       }
2012
2013       PyObject *distanceToPoints(const DataArrayDouble *pts) const throw(INTERP_KERNEL::Exception)
2014       {
2015         DataArrayInt *ret1=0;
2016         DataArrayDouble *ret0=self->distanceToPoints(pts,ret1);
2017         PyObject *ret=PyTuple_New(2);
2018         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(ret0),SWIGTYPE_p_ParaMEDMEM__DataArrayDouble, SWIG_POINTER_OWN | 0 ));
2019         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(ret1),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2020         return ret;
2021       }
2022       
2023       PyObject *checkButterflyCells(double eps=1e-12) throw(INTERP_KERNEL::Exception)
2024       {
2025         std::vector<int> cells;
2026         self->checkButterflyCells(cells,eps);
2027         DataArrayInt *ret=DataArrayInt::New();
2028         ret->alloc((int)cells.size(),1);
2029         std::copy(cells.begin(),cells.end(),ret->getPointer());
2030         return SWIG_NewPointerObj(SWIG_as_voidptr(ret),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 );
2031       }
2032
2033       PyObject *splitByType() const throw(INTERP_KERNEL::Exception)
2034       {
2035         std::vector<MEDCouplingUMesh *> ms=self->splitByType();
2036         int sz=ms.size();
2037         PyObject *ret = PyList_New(sz);
2038         for(int i=0;i<sz;i++)
2039           PyList_SetItem(ret,i,SWIG_NewPointerObj(SWIG_as_voidptr(ms[i]),SWIGTYPE_p_ParaMEDMEM__MEDCouplingUMesh, SWIG_POINTER_OWN | 0 ));
2040         return ret;
2041       }
2042
2043       PyObject *partitionBySpreadZone() const throw(INTERP_KERNEL::Exception)
2044       {
2045         std::vector<DataArrayInt *> retCpp=self->partitionBySpreadZone();
2046         int sz=retCpp.size();
2047         PyObject *ret=PyList_New(sz);
2048         for(int i=0;i<sz;i++)
2049           PyList_SetItem(ret,i,SWIG_NewPointerObj(SWIG_as_voidptr(retCpp[i]),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2050         return ret;
2051       }
2052
2053       PyObject *keepSpecifiedCells(INTERP_KERNEL::NormalizedCellType type, PyObject *ids) const throw(INTERP_KERNEL::Exception)
2054       {
2055         int size;
2056         INTERP_KERNEL::AutoPtr<int> tmp=convertPyToNewIntArr2(ids,&size);
2057         MEDCouplingUMesh *ret=self->keepSpecifiedCells(type,tmp,tmp+size);
2058         return SWIG_NewPointerObj(SWIG_as_voidptr(ret),SWIGTYPE_p_ParaMEDMEM__MEDCouplingUMesh, SWIG_POINTER_OWN | 0 );
2059       }
2060
2061       bool checkConsecutiveCellTypesAndOrder(PyObject *li) const throw(INTERP_KERNEL::Exception)
2062       {
2063         int sz;
2064         INTERP_KERNEL::AutoPtr<INTERP_KERNEL::NormalizedCellType> order=(INTERP_KERNEL::NormalizedCellType *)convertPyToNewIntArr2(li,&sz);
2065         bool ret=self->checkConsecutiveCellTypesAndOrder(order,order+sz);
2066         return ret;
2067       }
2068
2069       DataArrayInt *getRenumArrForConsecutiveCellTypesSpec(PyObject *li) const throw(INTERP_KERNEL::Exception)
2070       {
2071         int sz;
2072         INTERP_KERNEL::AutoPtr<INTERP_KERNEL::NormalizedCellType> order=(INTERP_KERNEL::NormalizedCellType *)convertPyToNewIntArr2(li,&sz);
2073         DataArrayInt *ret=self->getRenumArrForConsecutiveCellTypesSpec(order,(INTERP_KERNEL::NormalizedCellType *)order+sz);
2074         return ret;
2075       }
2076
2077       PyObject *findNodesToDuplicate(const MEDCouplingUMesh& otherDimM1OnSameCoords) const throw(INTERP_KERNEL::Exception)
2078       {
2079         DataArrayInt *tmp0=0,*tmp1=0,*tmp2=0;
2080         self->findNodesToDuplicate(otherDimM1OnSameCoords,tmp0,tmp1,tmp2);
2081         PyObject *ret=PyTuple_New(3);
2082         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(tmp0),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2083         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(tmp1),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2084         PyTuple_SetItem(ret,2,SWIG_NewPointerObj(SWIG_as_voidptr(tmp2),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2085         return ret;
2086       }
2087
2088       PyObject *findCellIdsLyingOn(const MEDCouplingUMesh& otherDimM1OnSameCoords) const throw(INTERP_KERNEL::Exception)
2089       {
2090         DataArrayInt *tmp0=0,*tmp1=0;
2091         self->findCellIdsLyingOn(otherDimM1OnSameCoords,tmp0,tmp1);
2092         PyObject *ret=PyTuple_New(2);
2093         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(tmp0),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2094         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(tmp1),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2095         return ret;
2096       }
2097
2098       void duplicateNodes(PyObject *li) throw(INTERP_KERNEL::Exception)
2099       {
2100         int sw;
2101         int singleVal;
2102         std::vector<int> multiVal;
2103         std::pair<int, std::pair<int,int> > slic;
2104         ParaMEDMEM::DataArrayInt *daIntTyypp=0;
2105         convertObjToPossibleCpp2(li,self->getNumberOfNodes(),sw,singleVal,multiVal,slic,daIntTyypp);
2106         switch(sw)
2107           {
2108           case 1:
2109             return self->duplicateNodes(&singleVal,&singleVal+1);
2110           case 2:
2111             return self->duplicateNodes(&multiVal[0],&multiVal[0]+multiVal.size());
2112           case 4:
2113             return self->duplicateNodes(daIntTyypp->begin(),daIntTyypp->end());
2114           default:
2115             throw INTERP_KERNEL::Exception("MEDCouplingUMesh::duplicateNodes : unrecognized type entered, expected list of int, tuple of int or DataArrayInt !");
2116           }
2117       }
2118
2119       void duplicateNodesInConn(PyObject *li, int offset) throw(INTERP_KERNEL::Exception)
2120       {
2121         int sw;
2122         int singleVal;
2123         std::vector<int> multiVal;
2124         std::pair<int, std::pair<int,int> > slic;
2125         ParaMEDMEM::DataArrayInt *daIntTyypp=0;
2126         convertObjToPossibleCpp2(li,self->getNumberOfNodes(),sw,singleVal,multiVal,slic,daIntTyypp);
2127         switch(sw)
2128           {
2129           case 1:
2130             return self->duplicateNodesInConn(&singleVal,&singleVal+1,offset);
2131           case 2:
2132             return self->duplicateNodesInConn(&multiVal[0],&multiVal[0]+multiVal.size(),offset);
2133           case 4:
2134             return self->duplicateNodesInConn(daIntTyypp->begin(),daIntTyypp->end(),offset);
2135           default:
2136             throw INTERP_KERNEL::Exception("MEDCouplingUMesh::duplicateNodesInConn : unrecognized type entered, expected list of int, tuple of int or DataArrayInt !");
2137           }
2138       }
2139
2140       PyObject *getLevArrPerCellTypes(PyObject *li) const throw(INTERP_KERNEL::Exception)
2141       {
2142         int sz;
2143         INTERP_KERNEL::AutoPtr<INTERP_KERNEL::NormalizedCellType> order=(INTERP_KERNEL::NormalizedCellType *)convertPyToNewIntArr2(li,&sz);
2144         DataArrayInt *tmp0,*tmp1=0;
2145         tmp0=self->getLevArrPerCellTypes(order,(INTERP_KERNEL::NormalizedCellType *)order+sz,tmp1);
2146         PyObject *ret=PyTuple_New(2);
2147         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(tmp0),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2148         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(tmp1),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2149         return ret;
2150       }
2151
2152       PyObject *convertNodalConnectivityToDynamicGeoTypeMesh() const throw(INTERP_KERNEL::Exception)
2153       {
2154         DataArrayInt *ret0=0,*ret1=0;
2155         self->convertNodalConnectivityToDynamicGeoTypeMesh(ret0,ret1);
2156         PyObject *ret=PyTuple_New(2);
2157         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(ret0),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2158         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(ret1),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2159         return ret;
2160       }
2161
2162       static PyObject *AggregateSortedByTypeMeshesOnSameCoords(PyObject *ms) throw(INTERP_KERNEL::Exception)
2163       {
2164         std::vector<const ParaMEDMEM::MEDCouplingUMesh *> meshes;
2165         convertFromPyObjVectorOfObj<const ParaMEDMEM::MEDCouplingUMesh *>(ms,SWIGTYPE_p_ParaMEDMEM__MEDCouplingUMesh,"MEDCouplingUMesh",meshes);
2166         DataArrayInt *ret1=0,*ret2=0;
2167         MEDCouplingUMesh *ret0=MEDCouplingUMesh::AggregateSortedByTypeMeshesOnSameCoords(meshes,ret1,ret2);
2168         PyObject *ret=PyTuple_New(3);
2169         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(ret0),SWIGTYPE_p_ParaMEDMEM__MEDCouplingUMesh, SWIG_POINTER_OWN | 0 ));
2170         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(ret1),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2171         PyTuple_SetItem(ret,2,SWIG_NewPointerObj(SWIG_as_voidptr(ret2),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2172         return ret;
2173       }
2174
2175       static PyObject *MergeUMeshesOnSameCoords(PyObject *ms) throw(INTERP_KERNEL::Exception)
2176       {
2177         std::vector<const ParaMEDMEM::MEDCouplingUMesh *> meshes;
2178         convertFromPyObjVectorOfObj<const ParaMEDMEM::MEDCouplingUMesh *>(ms,SWIGTYPE_p_ParaMEDMEM__MEDCouplingUMesh,"MEDCouplingUMesh",meshes);
2179         MEDCouplingUMesh *ret=MEDCouplingUMesh::MergeUMeshesOnSameCoords(meshes);
2180         return convertMesh(ret, SWIG_POINTER_OWN | 0 );
2181       }
2182
2183       static PyObject *FuseUMeshesOnSameCoords(PyObject *ms, int compType) throw(INTERP_KERNEL::Exception)
2184       {
2185         int sz;
2186         std::vector<const MEDCouplingUMesh *> meshes;
2187         convertFromPyObjVectorOfObj<const ParaMEDMEM::MEDCouplingUMesh *>(ms,SWIGTYPE_p_ParaMEDMEM__MEDCouplingUMesh,"MEDCouplingUMesh",meshes);
2188         std::vector<DataArrayInt *> corr;
2189         MEDCouplingUMesh *um=MEDCouplingUMesh::FuseUMeshesOnSameCoords(meshes,compType,corr);
2190         sz=corr.size();
2191         PyObject *ret1=PyList_New(sz);
2192         for(int i=0;i<sz;i++)
2193           PyList_SetItem(ret1,i,SWIG_NewPointerObj(SWIG_as_voidptr(corr[i]),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2194         PyObject *ret=PyList_New(2);
2195         PyList_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(um),SWIGTYPE_p_ParaMEDMEM__MEDCouplingUMesh, SWIG_POINTER_OWN | 0 ));
2196         PyList_SetItem(ret,1,ret1);
2197         return ret;
2198       }
2199
2200       static void PutUMeshesOnSameAggregatedCoords(PyObject *ms) throw(INTERP_KERNEL::Exception)
2201       {
2202         std::vector<MEDCouplingUMesh *> meshes;
2203         convertFromPyObjVectorOfObj<ParaMEDMEM::MEDCouplingUMesh *>(ms,SWIGTYPE_p_ParaMEDMEM__MEDCouplingUMesh,"MEDCouplingUMesh",meshes);
2204         MEDCouplingUMesh::PutUMeshesOnSameAggregatedCoords(meshes);
2205       }
2206
2207       static void MergeNodesOnUMeshesSharingSameCoords(PyObject *ms, double eps) throw(INTERP_KERNEL::Exception)
2208       {
2209         std::vector<MEDCouplingUMesh *> meshes;
2210         convertFromPyObjVectorOfObj<ParaMEDMEM::MEDCouplingUMesh *>(ms,SWIGTYPE_p_ParaMEDMEM__MEDCouplingUMesh,"MEDCouplingUMesh",meshes);
2211         MEDCouplingUMesh::MergeNodesOnUMeshesSharingSameCoords(meshes,eps);
2212       }
2213
2214       static bool RemoveIdsFromIndexedArrays(PyObject *li, DataArrayInt *arr, DataArrayInt *arrIndx, int offsetForRemoval=0) throw(INTERP_KERNEL::Exception)
2215       {
2216         int sw;
2217         int singleVal;
2218         std::vector<int> multiVal;
2219         std::pair<int, std::pair<int,int> > slic;
2220         ParaMEDMEM::DataArrayInt *daIntTyypp=0;
2221         if(!arrIndx)
2222           throw INTERP_KERNEL::Exception("MEDCouplingUMesh::RemoveIdsFromIndexedArrays : null pointer as arrIndex !");
2223         convertObjToPossibleCpp2(li,arrIndx->getNumberOfTuples()-1,sw,singleVal,multiVal,slic,daIntTyypp);
2224         switch(sw)
2225           {
2226           case 1:
2227             return MEDCouplingUMesh::RemoveIdsFromIndexedArrays(&singleVal,&singleVal+1,arr,arrIndx,offsetForRemoval);
2228           case 2:
2229             return MEDCouplingUMesh::RemoveIdsFromIndexedArrays(&multiVal[0],&multiVal[0]+multiVal.size(),arr,arrIndx,offsetForRemoval);
2230           case 4:
2231             return MEDCouplingUMesh::RemoveIdsFromIndexedArrays(daIntTyypp->begin(),daIntTyypp->end(),arr,arrIndx,offsetForRemoval);
2232           default:
2233             throw INTERP_KERNEL::Exception("MEDCouplingUMesh::RemoveIdsFromIndexedArrays : unrecognized type entered, expected list of int, tuple of int or DataArrayInt !");
2234           }
2235       }
2236       
2237       static PyObject *ExtractFromIndexedArrays(PyObject *li, const DataArrayInt *arrIn, const DataArrayInt *arrIndxIn) throw(INTERP_KERNEL::Exception)
2238       {
2239         DataArrayInt *arrOut=0,*arrIndexOut=0;
2240         int sw;
2241         int singleVal;
2242         std::vector<int> multiVal;
2243         std::pair<int, std::pair<int,int> > slic;
2244         ParaMEDMEM::DataArrayInt *daIntTyypp=0;
2245         if(!arrIndxIn)
2246           throw INTERP_KERNEL::Exception("MEDCouplingUMesh::ExtractFromIndexedArrays : null pointer as arrIndxIn !");
2247         convertObjToPossibleCpp2(li,arrIndxIn->getNumberOfTuples()-1,sw,singleVal,multiVal,slic,daIntTyypp);
2248         switch(sw)
2249           {
2250           case 1:
2251             {
2252               MEDCouplingUMesh::ExtractFromIndexedArrays(&singleVal,&singleVal+1,arrIn,arrIndxIn,arrOut,arrIndexOut);
2253               break;
2254             }
2255           case 2:
2256             {
2257               MEDCouplingUMesh::ExtractFromIndexedArrays(&multiVal[0],&multiVal[0]+multiVal.size(),arrIn,arrIndxIn,arrOut,arrIndexOut);
2258               break;
2259             }
2260           case 4:
2261             {
2262               MEDCouplingUMesh::ExtractFromIndexedArrays(daIntTyypp->begin(),daIntTyypp->end(),arrIn,arrIndxIn,arrOut,arrIndexOut);
2263               break;
2264             }
2265           default:
2266             throw INTERP_KERNEL::Exception("MEDCouplingUMesh::ExtractFromIndexedArrays : unrecognized type entered, expected list of int, tuple of int or DataArrayInt !");
2267           }
2268         PyObject *ret=PyTuple_New(2);
2269         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(arrOut),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2270         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(arrIndexOut),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2271         return ret;
2272       }
2273
2274       static PyObject *ExtractFromIndexedArrays2(int strt, int stp, int step, const DataArrayInt *arrIn, const DataArrayInt *arrIndxIn) throw(INTERP_KERNEL::Exception)
2275       {
2276         DataArrayInt *arrOut=0,*arrIndexOut=0;
2277         MEDCouplingUMesh::ExtractFromIndexedArrays2(strt,stp,step,arrIn,arrIndxIn,arrOut,arrIndexOut);
2278         PyObject *ret=PyTuple_New(2);
2279         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(arrOut),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2280         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(arrIndexOut),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2281         return ret;
2282       }
2283
2284       static PyObject *ExtractFromIndexedArrays2(PyObject *slic, const DataArrayInt *arrIn, const DataArrayInt *arrIndxIn) throw(INTERP_KERNEL::Exception)
2285       {
2286         if(!PySlice_Check(slic))
2287           throw INTERP_KERNEL::Exception("ExtractFromIndexedArrays2 (wrap) : the first param is not a pyslice !");
2288         Py_ssize_t strt=2,stp=2,step=2;
2289         PySliceObject *sliC=reinterpret_cast<PySliceObject *>(slic);
2290         if(!arrIndxIn)
2291           throw INTERP_KERNEL::Exception("ExtractFromIndexedArrays2 (wrap) : last array is null !");
2292         arrIndxIn->checkAllocated();
2293         if(arrIndxIn->getNumberOfComponents()!=1)
2294           throw INTERP_KERNEL::Exception("ExtractFromIndexedArrays2 (wrap) : number of components of last argument must be equal to one !");
2295         if(PySlice_GetIndices(sliC,arrIndxIn->getNumberOfTuples(),&strt,&stp,&step)!=0)
2296           throw INTERP_KERNEL::Exception("ExtractFromIndexedArrays2 (wrap) : Invalid slice regarding nb of elements !");
2297         DataArrayInt *arrOut=0,*arrIndexOut=0;
2298         MEDCouplingUMesh::ExtractFromIndexedArrays2(strt,stp,step,arrIn,arrIndxIn,arrOut,arrIndexOut);
2299         PyObject *ret=PyTuple_New(2);
2300         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(arrOut),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2301         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(arrIndexOut),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2302         return ret;
2303       }
2304
2305       static PyObject *SetPartOfIndexedArrays(PyObject *li,
2306                                               const DataArrayInt *arrIn, const DataArrayInt *arrIndxIn,
2307                                               const DataArrayInt *srcArr, const DataArrayInt *srcArrIndex) throw(INTERP_KERNEL::Exception)
2308       {
2309         DataArrayInt *arrOut=0,*arrIndexOut=0;
2310         int sw;
2311         int singleVal;
2312         std::vector<int> multiVal;
2313         std::pair<int, std::pair<int,int> > slic;
2314         ParaMEDMEM::DataArrayInt *daIntTyypp=0;
2315         if(!arrIndxIn)
2316           throw INTERP_KERNEL::Exception("MEDCouplingUMesh::SetPartOfIndexedArrays : null pointer as arrIndex !");
2317         convertObjToPossibleCpp2(li,arrIndxIn->getNumberOfTuples()-1,sw,singleVal,multiVal,slic,daIntTyypp);
2318         switch(sw)
2319           {
2320           case 1:
2321             {
2322               MEDCouplingUMesh::SetPartOfIndexedArrays(&singleVal,&singleVal+1,arrIn,arrIndxIn,srcArr,srcArrIndex,arrOut,arrIndexOut);
2323               break;
2324             }
2325           case 2:
2326             {
2327               MEDCouplingUMesh::SetPartOfIndexedArrays(&multiVal[0],&multiVal[0]+multiVal.size(),arrIn,arrIndxIn,srcArr,srcArrIndex,arrOut,arrIndexOut);
2328               break;
2329             }
2330           case 4:
2331             {
2332               MEDCouplingUMesh::SetPartOfIndexedArrays(daIntTyypp->begin(),daIntTyypp->end(),arrIn,arrIndxIn,srcArr,srcArrIndex,arrOut,arrIndexOut);
2333               break;
2334             }
2335           default:
2336             throw INTERP_KERNEL::Exception("MEDCouplingUMesh::SetPartOfIndexedArrays : unrecognized type entered, expected list of int, tuple of int or DataArrayInt !");
2337           }
2338         PyObject *ret=PyTuple_New(2);
2339         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(arrOut),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2340         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(arrIndexOut),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2341         return ret;
2342       }
2343
2344       static void SetPartOfIndexedArraysSameIdx(PyObject *li, DataArrayInt *arrIn, const DataArrayInt *arrIndxIn,
2345                                                 const DataArrayInt *srcArr, const DataArrayInt *srcArrIndex) throw(INTERP_KERNEL::Exception)
2346       {
2347         int sw;
2348         int singleVal;
2349         std::vector<int> multiVal;
2350         std::pair<int, std::pair<int,int> > slic;
2351         ParaMEDMEM::DataArrayInt *daIntTyypp=0;
2352         if(!arrIndxIn)
2353           throw INTERP_KERNEL::Exception("MEDCouplingUMesh::SetPartOfIndexedArraysSameIdx : null pointer as arrIndex !");
2354         convertObjToPossibleCpp2(li,arrIndxIn->getNumberOfTuples()-1,sw,singleVal,multiVal,slic,daIntTyypp);
2355         switch(sw)
2356           {
2357           case 1:
2358             {
2359               MEDCouplingUMesh::SetPartOfIndexedArraysSameIdx(&singleVal,&singleVal+1,arrIn,arrIndxIn,srcArr,srcArrIndex);
2360               break;
2361             }
2362           case 2:
2363             {
2364               MEDCouplingUMesh::SetPartOfIndexedArraysSameIdx(&multiVal[0],&multiVal[0]+multiVal.size(),arrIn,arrIndxIn,srcArr,srcArrIndex);
2365               break;
2366             }
2367           case 4:
2368             {
2369               MEDCouplingUMesh::SetPartOfIndexedArraysSameIdx(daIntTyypp->begin(),daIntTyypp->end(),arrIn,arrIndxIn,srcArr,srcArrIndex);
2370               break;
2371             }
2372           default:
2373             throw INTERP_KERNEL::Exception("MEDCouplingUMesh::SetPartOfIndexedArraysSameIdx : unrecognized type entered, expected list of int, tuple of int or DataArrayInt !");
2374           }
2375       }
2376
2377       PyObject *are2DCellsNotCorrectlyOriented(PyObject *vec, bool polyOnly) const throw(INTERP_KERNEL::Exception)
2378       {
2379         double val;
2380         DataArrayDouble *a;
2381         DataArrayDoubleTuple *aa;
2382         std::vector<double> bb;
2383         int sw;
2384         int spaceDim=self->getSpaceDimension();
2385         const char msg[]="Python wrap of MEDCouplingUMesh::are2DCellsNotCorrectlyOriented : ";
2386         const double *v=convertObjToPossibleCpp5_Safe(vec,sw,val,a,aa,bb,msg,1,spaceDim,true);
2387         //
2388         std::vector<int> cells;
2389         self->are2DCellsNotCorrectlyOriented(v,polyOnly,cells);
2390         DataArrayInt *ret=DataArrayInt::New();
2391         ret->alloc((int)cells.size(),1);
2392         std::copy(cells.begin(),cells.end(),ret->getPointer());
2393         return SWIG_NewPointerObj(SWIG_as_voidptr(ret),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 );
2394       }
2395
2396       void orientCorrectly2DCells(PyObject *vec, bool polyOnly) throw(INTERP_KERNEL::Exception)
2397       {
2398         double val;
2399         DataArrayDouble *a;
2400         DataArrayDoubleTuple *aa;
2401         std::vector<double> bb;
2402         int sw;
2403         int spaceDim=self->getSpaceDimension();
2404         const char msg[]="Python wrap of MEDCouplingUMesh::orientCorrectly2DCells : ";
2405         const double *v=convertObjToPossibleCpp5_Safe(vec,sw,val,a,aa,bb,msg,1,spaceDim,true);
2406         self->orientCorrectly2DCells(v,polyOnly);
2407       }
2408       
2409       PyObject *arePolyhedronsNotCorrectlyOriented() const throw(INTERP_KERNEL::Exception)
2410       {
2411         std::vector<int> cells;
2412         self->arePolyhedronsNotCorrectlyOriented(cells);
2413         DataArrayInt *ret=DataArrayInt::New();
2414         ret->alloc((int)cells.size(),1);
2415         std::copy(cells.begin(),cells.end(),ret->getPointer());
2416         return SWIG_NewPointerObj(SWIG_as_voidptr(ret),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 );
2417       }
2418
2419       PyObject *getFastAveragePlaneOfThis() const throw(INTERP_KERNEL::Exception)
2420       {
2421         double vec[3];
2422         double pos[3];
2423         self->getFastAveragePlaneOfThis(vec,pos);
2424         double vals[6];
2425         std::copy(vec,vec+3,vals);
2426         std::copy(pos,pos+3,vals+3);
2427         return convertDblArrToPyListOfTuple(vals,3,2);
2428       }
2429       
2430       static MEDCouplingUMesh *MergeUMeshes(PyObject *li) throw(INTERP_KERNEL::Exception)
2431       {
2432         std::vector<const ParaMEDMEM::MEDCouplingUMesh *> tmp;
2433         convertFromPyObjVectorOfObj<const ParaMEDMEM::MEDCouplingUMesh *>(li,SWIGTYPE_p_ParaMEDMEM__MEDCouplingUMesh,"MEDCouplingUMesh",tmp);
2434         return MEDCouplingUMesh::MergeUMeshes(tmp);
2435       }
2436
2437       PyObject *areCellsIncludedIn(const MEDCouplingUMesh *other, int compType) const throw(INTERP_KERNEL::Exception)
2438       {
2439         DataArrayInt *ret1;
2440         bool ret0=self->areCellsIncludedIn(other,compType,ret1);
2441         PyObject *ret=PyTuple_New(2);
2442         PyObject *ret0Py=ret0?Py_True:Py_False;
2443         Py_XINCREF(ret0Py);
2444         PyTuple_SetItem(ret,0,ret0Py);
2445         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(ret1),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2446         return ret;
2447       }
2448
2449       PyObject *areCellsIncludedIn2(const MEDCouplingUMesh *other) const throw(INTERP_KERNEL::Exception)
2450       {
2451         DataArrayInt *ret1;
2452         bool ret0=self->areCellsIncludedIn2(other,ret1);
2453         PyObject *ret=PyTuple_New(2);
2454         PyObject *ret0Py=ret0?Py_True:Py_False;
2455         Py_XINCREF(ret0Py);
2456         PyTuple_SetItem(ret,0,ret0Py);
2457         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(ret1),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2458         return ret;
2459       }
2460
2461       PyObject *explode3DMeshTo1D() const throw(INTERP_KERNEL::Exception)
2462       {
2463         MEDCouplingAutoRefCountObjectPtr<DataArrayInt> d0=DataArrayInt::New();
2464         MEDCouplingAutoRefCountObjectPtr<DataArrayInt> d1=DataArrayInt::New();
2465         MEDCouplingAutoRefCountObjectPtr<DataArrayInt> d2=DataArrayInt::New();
2466         MEDCouplingAutoRefCountObjectPtr<DataArrayInt> d3=DataArrayInt::New();
2467         MEDCouplingUMesh *m=self->explode3DMeshTo1D(d0,d1,d2,d3);
2468         PyObject *ret=PyTuple_New(5);
2469         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(m),SWIGTYPE_p_ParaMEDMEM__MEDCouplingUMesh, SWIG_POINTER_OWN | 0 ));
2470         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(d0.retn()),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2471         PyTuple_SetItem(ret,2,SWIG_NewPointerObj(SWIG_as_voidptr(d1.retn()),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2472         PyTuple_SetItem(ret,3,SWIG_NewPointerObj(SWIG_as_voidptr(d2.retn()),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2473         PyTuple_SetItem(ret,4,SWIG_NewPointerObj(SWIG_as_voidptr(d3.retn()),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2474         return ret;
2475       }
2476
2477       PyObject *buildDescendingConnectivity() const throw(INTERP_KERNEL::Exception)
2478       {
2479         MEDCouplingAutoRefCountObjectPtr<DataArrayInt> d0=DataArrayInt::New();
2480         MEDCouplingAutoRefCountObjectPtr<DataArrayInt> d1=DataArrayInt::New();
2481         MEDCouplingAutoRefCountObjectPtr<DataArrayInt> d2=DataArrayInt::New();
2482         MEDCouplingAutoRefCountObjectPtr<DataArrayInt> d3=DataArrayInt::New();
2483         MEDCouplingUMesh *m=self->buildDescendingConnectivity(d0,d1,d2,d3);
2484         PyObject *ret=PyTuple_New(5);
2485         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(m),SWIGTYPE_p_ParaMEDMEM__MEDCouplingUMesh, SWIG_POINTER_OWN | 0 ));
2486         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(d0.retn()),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2487         PyTuple_SetItem(ret,2,SWIG_NewPointerObj(SWIG_as_voidptr(d1.retn()),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2488         PyTuple_SetItem(ret,3,SWIG_NewPointerObj(SWIG_as_voidptr(d2.retn()),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2489         PyTuple_SetItem(ret,4,SWIG_NewPointerObj(SWIG_as_voidptr(d3.retn()),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2490         return ret;
2491       }
2492
2493       PyObject *buildDescendingConnectivity2() const throw(INTERP_KERNEL::Exception)
2494       {
2495         MEDCouplingAutoRefCountObjectPtr<DataArrayInt> d0=DataArrayInt::New();
2496         MEDCouplingAutoRefCountObjectPtr<DataArrayInt> d1=DataArrayInt::New();
2497         MEDCouplingAutoRefCountObjectPtr<DataArrayInt> d2=DataArrayInt::New();
2498         MEDCouplingAutoRefCountObjectPtr<DataArrayInt> d3=DataArrayInt::New();
2499         MEDCouplingUMesh *m=self->buildDescendingConnectivity2(d0,d1,d2,d3);
2500         PyObject *ret=PyTuple_New(5);
2501         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(m),SWIGTYPE_p_ParaMEDMEM__MEDCouplingUMesh, SWIG_POINTER_OWN | 0 ));
2502         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(d0.retn()),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2503         PyTuple_SetItem(ret,2,SWIG_NewPointerObj(SWIG_as_voidptr(d1.retn()),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2504         PyTuple_SetItem(ret,3,SWIG_NewPointerObj(SWIG_as_voidptr(d2.retn()),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2505         PyTuple_SetItem(ret,4,SWIG_NewPointerObj(SWIG_as_voidptr(d3.retn()),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2506         return ret;
2507       }
2508       
2509       PyObject *computeNeighborsOfCells() const throw(INTERP_KERNEL::Exception)
2510       {
2511         DataArrayInt *neighbors=0,*neighborsIdx=0;
2512         self->computeNeighborsOfCells(neighbors,neighborsIdx);
2513         PyObject *ret=PyTuple_New(2);
2514         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(neighbors),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2515         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(neighborsIdx),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2516         return ret;
2517       }
2518
2519       static PyObject *ComputeNeighborsOfCellsAdv(const DataArrayInt *desc, const DataArrayInt *descI, const DataArrayInt *revDesc, const DataArrayInt *revDescI) throw(INTERP_KERNEL::Exception)
2520       {
2521         DataArrayInt *neighbors=0,*neighborsIdx=0;
2522         MEDCouplingUMesh::ComputeNeighborsOfCellsAdv(desc,descI,revDesc,revDescI,neighbors,neighborsIdx);
2523         PyObject *ret=PyTuple_New(2);
2524         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(neighbors),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2525         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(neighborsIdx),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2526         return ret;
2527       }
2528
2529       PyObject *emulateMEDMEMBDC(const MEDCouplingUMesh *nM1LevMesh)
2530       {
2531         MEDCouplingAutoRefCountObjectPtr<DataArrayInt> d0=DataArrayInt::New();
2532         MEDCouplingAutoRefCountObjectPtr<DataArrayInt> d1=DataArrayInt::New();
2533         DataArrayInt *d2,*d3,*d4,*dd5;
2534         MEDCouplingUMesh *mOut=self->emulateMEDMEMBDC(nM1LevMesh,d0,d1,d2,d3,d4,dd5);
2535         PyObject *ret=PyTuple_New(7);
2536         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(mOut),SWIGTYPE_p_ParaMEDMEM__MEDCouplingUMesh, SWIG_POINTER_OWN | 0 ));
2537         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(d0.retn()),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2538         PyTuple_SetItem(ret,2,SWIG_NewPointerObj(SWIG_as_voidptr(d1.retn()),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2539         PyTuple_SetItem(ret,3,SWIG_NewPointerObj(SWIG_as_voidptr(d2),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2540         PyTuple_SetItem(ret,4,SWIG_NewPointerObj(SWIG_as_voidptr(d3),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2541         PyTuple_SetItem(ret,5,SWIG_NewPointerObj(SWIG_as_voidptr(d4),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2542         PyTuple_SetItem(ret,6,SWIG_NewPointerObj(SWIG_as_voidptr(dd5),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2543         return ret;
2544       }
2545
2546       DataArrayDouble *getPartBarycenterAndOwner(DataArrayInt *da) const throw(INTERP_KERNEL::Exception)
2547       {
2548         if(!da)
2549           throw INTERP_KERNEL::Exception("Not null DataArrayInt instance expected !");
2550         da->checkAllocated();
2551         return self->getPartBarycenterAndOwner(da->getConstPointer(),da->getConstPointer()+da->getNbOfElems());
2552       }
2553
2554       DataArrayDouble *getPartMeasureField(bool isAbs, DataArrayInt *da) const throw(INTERP_KERNEL::Exception)
2555       {
2556         if(!da)
2557           throw INTERP_KERNEL::Exception("Not null DataArrayInt instance expected !");
2558         da->checkAllocated();
2559         return self->getPartMeasureField(isAbs,da->getConstPointer(),da->getConstPointer()+da->getNbOfElems());
2560       }
2561
2562       MEDCouplingFieldDouble *buildPartOrthogonalField(DataArrayInt *da) const throw(INTERP_KERNEL::Exception)
2563       {
2564         if(!da)
2565           throw INTERP_KERNEL::Exception("Not null DataArrayInt instance expected !");
2566         da->checkAllocated();
2567         return self->buildPartOrthogonalField(da->getConstPointer(),da->getConstPointer()+da->getNbOfElems());
2568       }
2569
2570       PyObject *getTypesOfPart(DataArrayInt *da) const throw(INTERP_KERNEL::Exception)
2571       {
2572         if(!da)
2573           throw INTERP_KERNEL::Exception("Not null DataArrayInt instance expected !");
2574         da->checkAllocated();
2575         std::set<INTERP_KERNEL::NormalizedCellType> result=self->getTypesOfPart(da->getConstPointer(),da->getConstPointer()+da->getNbOfElems());
2576         std::set<INTERP_KERNEL::NormalizedCellType>::const_iterator iL=result.begin();
2577         PyObject *res = PyList_New(result.size());
2578         for (int i=0;iL!=result.end(); i++, iL++)
2579           PyList_SetItem(res,i,PyInt_FromLong(*iL));
2580         return res;
2581       }
2582
2583       DataArrayInt *keepCellIdsByType(INTERP_KERNEL::NormalizedCellType type, DataArrayInt *da) const throw(INTERP_KERNEL::Exception)
2584       {
2585         if(!da)
2586           throw INTERP_KERNEL::Exception("Not null DataArrayInt instance expected !");
2587         da->checkAllocated();
2588         DataArrayInt *ret=self->keepCellIdsByType(type,da->getConstPointer(),da->getConstPointer()+da->getNbOfElems());
2589         ret->setName(da->getName().c_str());
2590         return ret;
2591       }
2592
2593       static PyObject *Intersect2DMeshes(const MEDCouplingUMesh *m1, const MEDCouplingUMesh *m2, double eps) throw(INTERP_KERNEL::Exception)
2594       {
2595         DataArrayInt *cellNb1=0,*cellNb2=0;
2596         MEDCouplingUMesh *mret=MEDCouplingUMesh::Intersect2DMeshes(m1,m2,eps,cellNb1,cellNb2);
2597         PyObject *ret=PyTuple_New(3);
2598         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(mret),SWIGTYPE_p_ParaMEDMEM__MEDCouplingUMesh, SWIG_POINTER_OWN | 0 ));
2599         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(cellNb1),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2600         PyTuple_SetItem(ret,2,SWIG_NewPointerObj(SWIG_as_voidptr(cellNb2),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2601         return ret;
2602       }
2603
2604       PyObject *buildSlice3D(PyObject *origin, PyObject *vec, double eps) const throw(INTERP_KERNEL::Exception)
2605       {
2606         int spaceDim=self->getSpaceDimension();
2607         if(spaceDim!=3)
2608           throw INTERP_KERNEL::Exception("Python wrap of MEDCouplingUMesh::buildSlice3D : works only for spaceDim 3 !");
2609         double val,val2;
2610         DataArrayDouble *a,*a2;
2611         DataArrayDoubleTuple *aa,*aa2;
2612         std::vector<double> bb,bb2;
2613         int sw;
2614         const char msg[]="Python wrap of MEDCouplingUMesh::buildSlice3D : 1st paramater for origin.";
2615         const char msg2[]="Python wrap of MEDCouplingUMesh::buildSlice3D : 2nd paramater for vector.";
2616         const double *orig=convertObjToPossibleCpp5_Safe(origin,sw,val,a,aa,bb,msg,1,spaceDim,true);
2617         const double *vect=convertObjToPossibleCpp5_Safe(vec,sw,val2,a2,aa2,bb2,msg2,1,spaceDim,true);
2618         //
2619         DataArrayInt *cellIds=0;
2620         MEDCouplingUMesh *ret0=self->buildSlice3D(orig,vect,eps,cellIds);
2621         PyObject *ret=PyTuple_New(2);
2622         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(ret0),SWIGTYPE_p_ParaMEDMEM__MEDCouplingUMesh, SWIG_POINTER_OWN | 0 ));
2623         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(cellIds),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2624         return ret;
2625       }
2626
2627       PyObject *buildSlice3DSurf(PyObject *origin, PyObject *vec, double eps) const throw(INTERP_KERNEL::Exception)
2628       {
2629         int spaceDim=self->getSpaceDimension();
2630         if(spaceDim!=3)
2631           throw INTERP_KERNEL::Exception("Python wrap of MEDCouplingUMesh::buildSlice3DSurf : works only for spaceDim 3 !");
2632         double val,val2;
2633         DataArrayDouble *a,*a2;
2634         DataArrayDoubleTuple *aa,*aa2;
2635         std::vector<double> bb,bb2;
2636         int sw;
2637         const char msg[]="Python wrap of MEDCouplingUMesh::buildSlice3DSurf : 1st paramater for origin.";
2638         const char msg2[]="Python wrap of MEDCouplingUMesh::buildSlice3DSurf : 2nd paramater for vector.";
2639         const double *orig=convertObjToPossibleCpp5_Safe(origin,sw,val,a,aa,bb,msg,1,spaceDim,true);
2640         const double *vect=convertObjToPossibleCpp5_Safe(vec,sw,val2,a2,aa2,bb2,msg2,1,spaceDim,true);
2641         //
2642         DataArrayInt *cellIds=0;
2643         MEDCouplingUMesh *ret0=self->buildSlice3DSurf(orig,vect,eps,cellIds);
2644         PyObject *ret=PyTuple_New(2);
2645         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(ret0),SWIGTYPE_p_ParaMEDMEM__MEDCouplingUMesh, SWIG_POINTER_OWN | 0 ));
2646         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(cellIds),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2647         return ret;
2648       }
2649
2650       DataArrayInt *getCellIdsCrossingPlane(PyObject *origin, PyObject *vec, double eps) const throw(INTERP_KERNEL::Exception)
2651       {
2652         int spaceDim=self->getSpaceDimension();
2653         if(spaceDim!=3)
2654           throw INTERP_KERNEL::Exception("Python wrap of MEDCouplingUMesh::getCellIdsCrossingPlane : works only for spaceDim 3 !");
2655         double val,val2;
2656         DataArrayDouble *a,*a2;
2657         DataArrayDoubleTuple *aa,*aa2;
2658         std::vector<double> bb,bb2;
2659         int sw;
2660         const char msg[]="Python wrap of MEDCouplingUMesh::getCellIdsCrossingPlane : 1st paramater for origin.";
2661         const char msg2[]="Python wrap of MEDCouplingUMesh::getCellIdsCrossingPlane : 2nd paramater for vector.";
2662         const double *orig=convertObjToPossibleCpp5_Safe(origin,sw,val,a,aa,bb,msg,1,spaceDim,true);
2663         const double *vect=convertObjToPossibleCpp5_Safe(vec,sw,val2,a2,aa2,bb2,msg2,1,spaceDim,true);
2664         return self->getCellIdsCrossingPlane(orig,vect,eps);
2665       }
2666
2667       void convertToPolyTypes(PyObject *li) throw(INTERP_KERNEL::Exception)
2668       {
2669         int sw;
2670         int pos1;
2671         std::vector<int> pos2;
2672         DataArrayInt *pos3=0;
2673         DataArrayIntTuple *pos4=0;
2674         convertObjToPossibleCpp1(li,sw,pos1,pos2,pos3,pos4);
2675         switch(sw)
2676           {
2677           case 1:
2678             {
2679               self->convertToPolyTypes(&pos1,&pos1+1);
2680               return;
2681             }
2682           case 2:
2683             {
2684               if(pos2.empty())
2685                 return;
2686               self->convertToPolyTypes(&pos2[0],&pos2[0]+pos2.size());
2687               return ;
2688             }
2689           case 3:
2690             {
2691               self->convertToPolyTypes(pos3->begin(),pos3->end());
2692               return ;
2693             }
2694           default:
2695             throw INTERP_KERNEL::Exception("MEDCouplingUMesh::convertToPolyTypes : unexpected input array type recognized !");
2696           }
2697       }
2698     }
2699     void convertAllToPoly();
2700     void convertExtrudedPolyhedra() throw(INTERP_KERNEL::Exception);
2701     bool unPolyze() throw(INTERP_KERNEL::Exception);
2702     void simplifyPolyhedra(double eps) throw(INTERP_KERNEL::Exception);
2703     MEDCouplingUMesh *buildSpreadZonesWithPoly() const throw(INTERP_KERNEL::Exception);
2704     MEDCouplingUMesh *buildExtrudedMesh(const MEDCouplingUMesh *mesh1D, int policy) throw(INTERP_KERNEL::Exception);
2705   };
2706
2707   //== MEDCouplingUMesh End
2708
2709   //== MEDCouplingExtrudedMesh
2710
2711   class MEDCouplingExtrudedMesh : public ParaMEDMEM::MEDCouplingMesh
2712   {
2713   public:
2714     static MEDCouplingExtrudedMesh *New(const MEDCouplingUMesh *mesh3D, const MEDCouplingUMesh *mesh2D, int cell2DId) throw(INTERP_KERNEL::Exception);
2715     MEDCouplingUMesh *build3DUnstructuredMesh() const throw(INTERP_KERNEL::Exception);
2716     %extend {
2717       MEDCouplingExtrudedMesh(const MEDCouplingUMesh *mesh3D, const MEDCouplingUMesh *mesh2D, int cell2DId) throw(INTERP_KERNEL::Exception)
2718       {
2719         return MEDCouplingExtrudedMesh::New(mesh3D,mesh2D,cell2DId);
2720       }
2721       
2722       std::string __str__() const throw(INTERP_KERNEL::Exception)
2723       {
2724         return self->simpleRepr();
2725       }
2726
2727       std::string __repr__() const throw(INTERP_KERNEL::Exception)
2728       {
2729         std::ostringstream oss;
2730         self->reprQuickOverview(oss);
2731         return oss.str();
2732       }
2733       
2734       PyObject *getMesh2D() const throw(INTERP_KERNEL::Exception)
2735       {
2736         MEDCouplingUMesh *ret=self->getMesh2D();
2737         if(ret)
2738           ret->incrRef();
2739         return convertMesh(ret, SWIG_POINTER_OWN | 0 );
2740       }
2741       PyObject *getMesh1D() const throw(INTERP_KERNEL::Exception)
2742       {
2743         MEDCouplingUMesh *ret=self->getMesh1D();
2744         if(ret)
2745           ret->incrRef();
2746         return convertMesh(ret, SWIG_POINTER_OWN | 0 );
2747       }
2748       PyObject *getMesh3DIds() const throw(INTERP_KERNEL::Exception)
2749       {
2750         DataArrayInt *ret=self->getMesh3DIds();
2751         if(ret)
2752           ret->incrRef();
2753         return SWIG_NewPointerObj(SWIG_as_voidptr(ret),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 );
2754       } 
2755     }
2756   };
2757
2758   //== MEDCouplingExtrudedMesh End
2759
2760   class MEDCoupling1GTUMesh : public ParaMEDMEM::MEDCouplingPointSet
2761   {
2762   public:
2763     static MEDCoupling1GTUMesh *New(const char *name, INTERP_KERNEL::NormalizedCellType type) throw(INTERP_KERNEL::Exception);
2764     static MEDCoupling1GTUMesh *New(const MEDCouplingUMesh *m) throw(INTERP_KERNEL::Exception);
2765     INTERP_KERNEL::NormalizedCellType getCellModelEnum() const throw(INTERP_KERNEL::Exception);
2766     int getNodalConnectivityLength() const throw(INTERP_KERNEL::Exception);
2767     virtual void allocateCells(int nbOfCells=0) throw(INTERP_KERNEL::Exception);
2768     %extend
2769     {
2770       virtual void insertNextCell(PyObject *li) throw(INTERP_KERNEL::Exception)
2771       {
2772         int szArr,sw,iTypppArr;
2773         std::vector<int> stdvecTyyppArr;
2774         const int *tmp=convertObjToPossibleCpp1_Safe(li,sw,szArr,iTypppArr,stdvecTyyppArr);
2775         self->insertNextCell(tmp,tmp+szArr);
2776       }
2777
2778       virtual DataArrayInt *getNodalConnectivity() const throw(INTERP_KERNEL::Exception)
2779       {
2780         DataArrayInt *ret=self->getNodalConnectivity();
2781         if(ret) ret->incrRef();
2782         return ret;
2783       }
2784       
2785       static MEDCouplingUMesh *AggregateOnSameCoordsToUMesh(PyObject *li) throw(INTERP_KERNEL::Exception)
2786       {
2787         std::vector< const MEDCoupling1GTUMesh *> parts;
2788         convertFromPyObjVectorOfObj<const ParaMEDMEM::MEDCoupling1GTUMesh *>(li,SWIGTYPE_p_ParaMEDMEM__MEDCoupling1GTUMesh,"MEDCoupling1GTUMesh",parts);
2789         return MEDCoupling1GTUMesh::AggregateOnSameCoordsToUMesh(parts);
2790       }
2791     }
2792   };
2793
2794   //== MEDCoupling1SGTUMesh
2795
2796   class MEDCoupling1SGTUMesh : public ParaMEDMEM::MEDCoupling1GTUMesh
2797   {
2798   public:
2799     static MEDCoupling1SGTUMesh *New(const char *name, INTERP_KERNEL::NormalizedCellType type) throw(INTERP_KERNEL::Exception);
2800     static MEDCoupling1SGTUMesh *New(const MEDCouplingUMesh *m) throw(INTERP_KERNEL::Exception);
2801     void setNodalConnectivity(DataArrayInt *nodalConn) throw(INTERP_KERNEL::Exception);
2802     int getNumberOfNodesPerCell() const throw(INTERP_KERNEL::Exception);
2803     static MEDCoupling1SGTUMesh *Merge1SGTUMeshes(const MEDCoupling1SGTUMesh *mesh1, const MEDCoupling1SGTUMesh *mesh2) throw(INTERP_KERNEL::Exception);
2804     MEDCoupling1SGTUMesh *buildSetInstanceFromThis(int spaceDim) const throw(INTERP_KERNEL::Exception);
2805     %extend
2806     {
2807       MEDCoupling1SGTUMesh(const char *name, INTERP_KERNEL::NormalizedCellType type) throw(INTERP_KERNEL::Exception)
2808       {
2809         return MEDCoupling1SGTUMesh::New(name,type);
2810       }
2811
2812       std::string __str__() const throw(INTERP_KERNEL::Exception)
2813       {
2814         return self->simpleRepr();
2815       }
2816       
2817       std::string __repr__() const throw(INTERP_KERNEL::Exception)
2818       {
2819         std::ostringstream oss;
2820         self->reprQuickOverview(oss);
2821         return oss.str();
2822       }
2823
2824       static MEDCoupling1SGTUMesh *Merge1SGTUMeshes(PyObject *li) throw(INTERP_KERNEL::Exception)
2825       {
2826         std::vector<const ParaMEDMEM::MEDCoupling1SGTUMesh *> tmp;
2827         convertFromPyObjVectorOfObj<const ParaMEDMEM::MEDCoupling1SGTUMesh *>(li,SWIGTYPE_p_ParaMEDMEM__MEDCoupling1SGTUMesh,"MEDCoupling1SGTUMesh",tmp);
2828         return MEDCoupling1SGTUMesh::Merge1SGTUMeshes(tmp);
2829       }
2830       
2831       static MEDCoupling1SGTUMesh *Merge1SGTUMeshesOnSameCoords(PyObject *li) throw(INTERP_KERNEL::Exception)
2832       {
2833         std::vector<const ParaMEDMEM::MEDCoupling1SGTUMesh *> tmp;
2834         convertFromPyObjVectorOfObj<const ParaMEDMEM::MEDCoupling1SGTUMesh *>(li,SWIGTYPE_p_ParaMEDMEM__MEDCoupling1SGTUMesh,"MEDCoupling1SGTUMesh",tmp);
2835         return MEDCoupling1SGTUMesh::Merge1SGTUMeshesOnSameCoords(tmp);
2836       }
2837     }
2838   };
2839   
2840   //== MEDCoupling1SGTUMesh End
2841
2842   //== MEDCoupling1DGTUMesh
2843
2844   class MEDCoupling1DGTUMesh : public ParaMEDMEM::MEDCoupling1GTUMesh
2845   {
2846   public:
2847     static MEDCoupling1DGTUMesh *New(const char *name, INTERP_KERNEL::NormalizedCellType type) throw(INTERP_KERNEL::Exception);
2848     static MEDCoupling1DGTUMesh *New(const MEDCouplingUMesh *m) throw(INTERP_KERNEL::Exception);
2849     void setNodalConnectivity(DataArrayInt *nodalConn, DataArrayInt *nodalConnIndex) throw(INTERP_KERNEL::Exception);
2850     MEDCoupling1DGTUMesh *buildSetInstanceFromThis(int spaceDim) const throw(INTERP_KERNEL::Exception);
2851     bool isPacked() const throw(INTERP_KERNEL::Exception);
2852     %extend
2853     {
2854       MEDCoupling1DGTUMesh(const char *name, INTERP_KERNEL::NormalizedCellType type) throw(INTERP_KERNEL::Exception)
2855       {
2856         return MEDCoupling1DGTUMesh::New(name,type);
2857       }
2858
2859       std::string __str__() const throw(INTERP_KERNEL::Exception)
2860       {
2861         return self->simpleRepr();
2862       }
2863       
2864       std::string __repr__() const throw(INTERP_KERNEL::Exception)
2865       {
2866         std::ostringstream oss;
2867         self->reprQuickOverview(oss);
2868         return oss.str();
2869       }
2870
2871       DataArrayInt *getNodalConnectivityIndex() const throw(INTERP_KERNEL::Exception)
2872       {
2873         DataArrayInt *ret=self->getNodalConnectivityIndex();
2874         if(ret) ret->incrRef();
2875         return ret;
2876       }
2877
2878       PyObject *retrievePackedNodalConnectivity() const throw(INTERP_KERNEL::Exception)
2879       {
2880         DataArrayInt *ret1=0,*ret2=0;
2881         bool ret0=self->retrievePackedNodalConnectivity(ret1,ret2);
2882         PyObject *ret0Py=ret0?Py_True:Py_False;
2883         Py_XINCREF(ret0Py);
2884         PyObject *ret=PyTuple_New(3);
2885         PyTuple_SetItem(ret,0,ret0Py);
2886         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(ret1),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2887         PyTuple_SetItem(ret,2,SWIG_NewPointerObj(SWIG_as_voidptr(ret2),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2888         return ret;
2889       }
2890       
2891       PyObject *copyWithNodalConnectivityPacked() const throw(INTERP_KERNEL::Exception)
2892       {
2893         bool ret1;
2894         MEDCoupling1DGTUMesh *ret0=self->copyWithNodalConnectivityPacked(ret1);
2895         PyObject *ret=PyTuple_New(2);
2896         PyObject *ret1Py=ret1?Py_True:Py_False; Py_XINCREF(ret1Py);
2897         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(ret0),SWIGTYPE_p_ParaMEDMEM__MEDCoupling1DGTUMesh, SWIG_POINTER_OWN | 0 ));
2898         PyTuple_SetItem(ret,1,ret1Py);
2899         return ret;
2900       }
2901
2902       static MEDCoupling1DGTUMesh *Merge1DGTUMeshes(PyObject *li) throw(INTERP_KERNEL::Exception)
2903       {
2904         std::vector<const ParaMEDMEM::MEDCoupling1DGTUMesh *> tmp;
2905         convertFromPyObjVectorOfObj<const ParaMEDMEM::MEDCoupling1DGTUMesh *>(li,SWIGTYPE_p_ParaMEDMEM__MEDCoupling1DGTUMesh,"MEDCoupling1DGTUMesh",tmp);
2906         return MEDCoupling1DGTUMesh::Merge1DGTUMeshes(tmp);
2907       }
2908       
2909       static MEDCoupling1DGTUMesh *Merge1DGTUMeshesOnSameCoords(PyObject *li) throw(INTERP_KERNEL::Exception)
2910       {
2911         std::vector<const ParaMEDMEM::MEDCoupling1DGTUMesh *> tmp;
2912         convertFromPyObjVectorOfObj<const ParaMEDMEM::MEDCoupling1DGTUMesh *>(li,SWIGTYPE_p_ParaMEDMEM__MEDCoupling1DGTUMesh,"MEDCoupling1DGTUMesh",tmp);
2913         return MEDCoupling1DGTUMesh::Merge1DGTUMeshesOnSameCoords(tmp);
2914       }
2915       
2916       static DataArrayInt *AggregateNodalConnAndShiftNodeIds(PyObject *li, const std::vector<int>& offsetInNodeIdsPerElt) throw(INTERP_KERNEL::Exception)
2917       {
2918         std::vector<const ParaMEDMEM::DataArrayInt *> tmp;
2919         convertFromPyObjVectorOfObj<const ParaMEDMEM::DataArrayInt *>(li,SWIGTYPE_p_ParaMEDMEM__DataArrayInt,"DataArrayInt",tmp);
2920         return MEDCoupling1DGTUMesh::AggregateNodalConnAndShiftNodeIds(tmp,offsetInNodeIdsPerElt);
2921       }
2922     }
2923   };
2924
2925   //== MEDCoupling1DGTUMeshEnd
2926
2927   class MEDCouplingStructuredMesh : public ParaMEDMEM::MEDCouplingMesh
2928   {
2929   public:
2930     int getCellIdFromPos(int i, int j, int k) const throw(INTERP_KERNEL::Exception);
2931     int getNodeIdFromPos(int i, int j, int k) const throw(INTERP_KERNEL::Exception);
2932     static INTERP_KERNEL::NormalizedCellType GetGeoTypeGivenMeshDimension(int meshDim) throw(INTERP_KERNEL::Exception);
2933   };
2934
2935   //== MEDCouplingCMesh
2936   
2937   class MEDCouplingCMesh : public ParaMEDMEM::MEDCouplingStructuredMesh
2938   {
2939   public:
2940     static MEDCouplingCMesh *New();
2941     static MEDCouplingCMesh *New(const char *meshName);
2942     MEDCouplingCMesh *clone(bool recDeepCpy) const;
2943     void setCoords(const DataArrayDouble *coordsX,
2944                    const DataArrayDouble *coordsY=0,
2945                    const DataArrayDouble *coordsZ=0) throw(INTERP_KERNEL::Exception);
2946     void setCoordsAt(int i, const DataArrayDouble *arr) throw(INTERP_KERNEL::Exception);
2947     %extend {
2948       MEDCouplingCMesh()
2949       {
2950         return MEDCouplingCMesh::New();
2951       }
2952       MEDCouplingCMesh(const char *meshName)
2953       {
2954         return MEDCouplingCMesh::New(meshName);
2955       }
2956       std::string __str__() const throw(INTERP_KERNEL::Exception)
2957       {
2958         return self->simpleRepr();
2959       }
2960       std::string __repr__() const throw(INTERP_KERNEL::Exception)
2961       {
2962         std::ostringstream oss;
2963         self->reprQuickOverview(oss);
2964         return oss.str();
2965       }
2966       DataArrayDouble *getCoordsAt(int i) throw(INTERP_KERNEL::Exception)
2967       {
2968         DataArrayDouble *ret=self->getCoordsAt(i);
2969         if(ret)
2970           ret->incrRef();
2971         return ret;
2972       }
2973     }
2974   };
2975
2976   //== MEDCouplingCMesh End
2977
2978   //== MEDCouplingCurveLinearMesh
2979
2980   class MEDCouplingCurveLinearMesh : public ParaMEDMEM::MEDCouplingStructuredMesh
2981   {
2982   public:
2983     static MEDCouplingCurveLinearMesh *New();
2984     static MEDCouplingCurveLinearMesh *New(const char *meshName);
2985     MEDCouplingCurveLinearMesh *clone(bool recDeepCpy) const;
2986     void setCoords(const DataArrayDouble *coords) throw(INTERP_KERNEL::Exception);
2987     std::vector<int> getNodeGridStructure() const throw(INTERP_KERNEL::Exception);
2988     %extend {
2989       MEDCouplingCurveLinearMesh()
2990       {
2991         return MEDCouplingCurveLinearMesh::New();
2992       }
2993       MEDCouplingCurveLinearMesh(const char *meshName)
2994       {
2995         return MEDCouplingCurveLinearMesh::New(meshName);
2996       }
2997       std::string __str__() const throw(INTERP_KERNEL::Exception) 
2998       {
2999         return self->simpleRepr();
3000       }
3001       std::string __repr__() const throw(INTERP_KERNEL::Exception)
3002       {
3003         std::ostringstream oss;
3004         self->reprQuickOverview(oss);
3005         return oss.str();
3006       }
3007       DataArrayDouble *getCoords() throw(INTERP_KERNEL::Exception)
3008       {
3009         DataArrayDouble *ret=self->getCoords();
3010         if(ret)
3011           ret->incrRef();
3012         return ret;
3013       }
3014       void setNodeGridStructure(PyObject *gridStruct) throw(INTERP_KERNEL::Exception)
3015       {
3016         int szArr,sw,iTypppArr;
3017         std::vector<int> stdvecTyyppArr;
3018         const int *tmp=convertObjToPossibleCpp1_Safe(gridStruct,sw,szArr,iTypppArr,stdvecTyyppArr);
3019         self->setNodeGridStructure(tmp,tmp+szArr);
3020       }
3021     }
3022   };
3023
3024   //== MEDCouplingCurveLinearMesh End
3025 }
3026
3027 %extend ParaMEDMEM::MEDCouplingFieldDiscretization
3028 {
3029   MEDCouplingFieldDiscretization *clonePart(PyObject *li)
3030   {
3031     int sz=0,sw=-1,val1=-1;
3032     std::vector<int> val2;
3033     const int *inp=convertObjToPossibleCpp1_Safe(li,sw,sz,val1,val2);
3034     return self->clonePart(inp,inp+sz);
3035   }
3036
3037   PyObject *buildSubMeshDataRange(const MEDCouplingMesh *mesh, int beginCellIds, int endCellIds, int stepCellIds, int& beginOut, int& endOut, int& stepOut, DataArrayInt *&di) const throw(INTERP_KERNEL::Exception)
3038   {
3039     DataArrayInt *ret1=0;
3040     int bb,ee,ss;
3041     MEDCouplingMesh *ret0=self->buildSubMeshDataRange(mesh,begin,end,step,bb,ee,ss,ret1);
3042     PyObject *res=PyTuple_New(2);
3043     PyTuple_SetItem(res,0,convertMesh(ret0, SWIG_POINTER_OWN | 0 ));
3044     if(ret1)
3045       PyTuple_SetItem(res,1,SWIG_NewPointerObj((void*)ret1,SWIGTYPE_p_ParaMEDMEM__DataArrayInt,SWIG_POINTER_OWN | 0));
3046     else
3047       {
3048         PyObject *res1=PySlice_New(PyInt_FromLong(bb),PyInt_FromLong(ee),PyInt_FromLong(ss));
3049         PyTuple_SetItem(res,1,res1);
3050       }
3051     return res;
3052   }
3053   
3054   PyObject *computeMeshRestrictionFromTupleIds(const MEDCouplingMesh *mesh, PyObject *tupleIds) const throw(INTERP_KERNEL::Exception)
3055   {
3056     std::vector<int> vVal; int iVal=-1;
3057     int sz=-1,sw=0;
3058     const int *tupleIdsBg=convertObjToPossibleCpp1_Safe(tupleIds,sw,sz,iVal,vVal);
3059     if(sw==0)
3060       throw INTERP_KERNEL::Exception("MEDCouplingFieldDiscretization::computeMeshRestrictionFromTupleIds : none parameter in input !");
3061     DataArrayInt *ret0=0,*ret1=0;
3062     self->computeMeshRestrictionFromTupleIds(mesh,tupleIdsBg,tupleIdsBg+sz,ret0,ret1);
3063     PyObject *pyRet=PyTuple_New(2);
3064     PyTuple_SetItem(pyRet,0,SWIG_NewPointerObj(SWIG_as_voidptr(ret0),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
3065     PyTuple_SetItem(pyRet,1,SWIG_NewPointerObj(SWIG_as_voidptr(ret1),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
3066     return pyRet;
3067   }
3068 }
3069
3070 %extend ParaMEDMEM::MEDCouplingFieldDiscretizationP0
3071 {
3072   PyObject *computeMeshRestrictionFromTupleIds(const MEDCouplingMesh *mesh, PyObject *tupleIds) const throw(INTERP_KERNEL::Exception)
3073   { return ParaMEDMEM_MEDCouplingFieldDiscretization_computeMeshRestrictionFromTupleIds__SWIG_1(self,mesh,tupleIds); }
3074 }
3075
3076 %extend ParaMEDMEM::MEDCouplingFieldDiscretizationOnNodes
3077 {
3078   PyObject *computeMeshRestrictionFromTupleIds(const MEDCouplingMesh *mesh, PyObject *tupleIds) const throw(INTERP_KERNEL::Exception)
3079   { return ParaMEDMEM_MEDCouplingFieldDiscretization_computeMeshRestrictionFromTupleIds__SWIG_1(self,mesh,tupleIds); }
3080 }
3081
3082 %extend ParaMEDMEM::MEDCouplingFieldDiscretizationGauss
3083 {
3084   PyObject *computeMeshRestrictionFromTupleIds(const MEDCouplingMesh *mesh, PyObject *tupleIds) const throw(INTERP_KERNEL::Exception)
3085   { return ParaMEDMEM_MEDCouplingFieldDiscretization_computeMeshRestrictionFromTupleIds__SWIG_1(self,mesh,tupleIds); }
3086 }
3087
3088 %extend ParaMEDMEM::MEDCouplingFieldDiscretizationGaussNE
3089 {
3090   PyObject *computeMeshRestrictionFromTupleIds(const MEDCouplingMesh *mesh, PyObject *tupleIds) const throw(INTERP_KERNEL::Exception)
3091   { return ParaMEDMEM_MEDCouplingFieldDiscretization_computeMeshRestrictionFromTupleIds__SWIG_1(self,mesh,tupleIds); }
3092 }
3093
3094 %extend ParaMEDMEM::MEDCouplingFieldDiscretizationPerCell
3095 {
3096   PyObject *getArrayOfDiscIds() const
3097   {
3098     DataArrayInt *ret=const_cast<DataArrayInt *>(self->getArrayOfDiscIds());
3099     if(ret)
3100       ret->incrRef();
3101     return SWIG_NewPointerObj(SWIG_as_voidptr(ret),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 );
3102   }
3103
3104   PyObject *splitIntoSingleGaussDicrPerCellType() const throw(INTERP_KERNEL::Exception)
3105   {
3106     std::vector<int> ret1;
3107     std::vector<DataArrayInt *> ret0=self->splitIntoSingleGaussDicrPerCellType(ret1);
3108     std::size_t sz=ret0.size();
3109     PyObject *pyRet=PyTuple_New(2);
3110     PyObject *pyRet0=PyList_New((int)sz);
3111     PyObject *pyRet1=PyList_New((int)sz);
3112     for(std::size_t i=0;i<sz;i++)
3113       {
3114         PyList_SetItem(pyRet0,i,SWIG_NewPointerObj(SWIG_as_voidptr(ret0[i]),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
3115         PyList_SetItem(pyRet1,i,PyInt_FromLong(ret1[i]));
3116       }
3117     PyTuple_SetItem(pyRet,0,pyRet0);
3118     PyTuple_SetItem(pyRet,1,pyRet1);
3119     return pyRet;
3120   }
3121 }
3122
3123 %extend ParaMEDMEM::MEDCouplingFieldDiscretizationKriging
3124 {
3125   PyObject *computeVectorOfCoefficients(const MEDCouplingMesh *mesh, const DataArrayDouble *arr) const
3126   {
3127     int ret1;
3128     DataArrayDouble *ret0=self->computeVectorOfCoefficients(mesh,arr,ret1);
3129     PyObject *ret=PyTuple_New(2);
3130     PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(ret0),SWIGTYPE_p_ParaMEDMEM__DataArrayDouble, SWIG_POINTER_OWN | 0 ));
3131     PyTuple_SetItem(ret,1,PyInt_FromLong(ret1));
3132     return ret;
3133   }
3134 }
3135
3136 namespace ParaMEDMEM
3137 {
3138   class MEDCouplingField : public ParaMEDMEM::RefCountObject, public ParaMEDMEM::TimeLabel
3139   {
3140   public:
3141     virtual void checkCoherency() const throw(INTERP_KERNEL::Exception);
3142     virtual bool areCompatibleForMerge(const MEDCouplingField *other) const throw(INTERP_KERNEL::Exception);
3143     virtual bool isEqual(const MEDCouplingField *other, double meshPrec, double valsPrec) const throw(INTERP_KERNEL::Exception);
3144     virtual bool isEqualWithoutConsideringStr(const MEDCouplingField *other, double meshPrec, double valsPrec) const throw(INTERP_KERNEL::Exception);
3145     virtual void copyTinyStringsFrom(const MEDCouplingField *other) throw(INTERP_KERNEL::Exception);
3146     void setMesh(const ParaMEDMEM::MEDCouplingMesh *mesh) throw(INTERP_KERNEL::Exception);
3147     void setName(const char *name) throw(INTERP_KERNEL::Exception);
3148     const char *getDescription() const throw(INTERP_KERNEL::Exception);
3149     void setDescription(const char *desc) throw(INTERP_KERNEL::Exception);
3150     const char *getName() const throw(INTERP_KERNEL::Exception);
3151     TypeOfField getTypeOfField() const throw(INTERP_KERNEL::Exception);
3152     NatureOfField getNature() const throw(INTERP_KERNEL::Exception);
3153     virtual void setNature(NatureOfField nat) throw(INTERP_KERNEL::Exception);
3154     DataArrayDouble *getLocalizationOfDiscr() const throw(INTERP_KERNEL::Exception);
3155     MEDCouplingFieldDouble *buildMeasureField(bool isAbs) const throw(INTERP_KERNEL::Exception);
3156     int getNumberOfTuplesExpected() const throw(INTERP_KERNEL::Exception);
3157     int getNumberOfMeshPlacesExpected() const throw(INTERP_KERNEL::Exception);
3158     void setGaussLocalizationOnType(INTERP_KERNEL::NormalizedCellType type, const std::vector<double>& refCoo,
3159                                     const std::vector<double>& gsCoo, const std::vector<double>& wg) throw(INTERP_KERNEL::Exception);
3160     void clearGaussLocalizations() throw(INTERP_KERNEL::Exception);
3161     MEDCouplingGaussLocalization& getGaussLocalization(int locId) throw(INTERP_KERNEL::Exception);
3162     int getNbOfGaussLocalization() const throw(INTERP_KERNEL::Exception);
3163     int getGaussLocalizationIdOfOneCell(int cellId) const throw(INTERP_KERNEL::Exception);
3164     const MEDCouplingGaussLocalization& getGaussLocalization(int locId) const throw(INTERP_KERNEL::Exception);
3165     int getGaussLocalizationIdOfOneType(INTERP_KERNEL::NormalizedCellType type) const throw(INTERP_KERNEL::Exception);
3166     void setDiscretization(MEDCouplingFieldDiscretization *newDisc);
3167     %extend {
3168       PyObject *getMesh() const throw(INTERP_KERNEL::Exception)
3169       {
3170         MEDCouplingMesh *ret1=const_cast<MEDCouplingMesh *>(self->getMesh());
3171         if(ret1)
3172           ret1->incrRef();
3173         return convertMesh(ret1,SWIG_POINTER_OWN | 0 );
3174       }
3175
3176       PyObject *getDiscretization() throw(INTERP_KERNEL::Exception)
3177       {
3178         MEDCouplingFieldDiscretization *ret=self->getDiscretization();
3179         if(ret)
3180           ret->incrRef();
3181         return convertFieldDiscretization(ret,SWIG_POINTER_OWN | 0 );
3182       }
3183
3184       PyObject *getGaussLocalizationIdsOfOneType(INTERP_KERNEL::NormalizedCellType type) const throw(INTERP_KERNEL::Exception)
3185       {
3186         std::set<int> ret=self->getGaussLocalizationIdsOfOneType(type);
3187         return convertIntArrToPyList3(ret);
3188       }
3189
3190       PyObject *isEqualIfNotWhy(const MEDCouplingField *other, double meshPrec, double valsPrec) const throw(INTERP_KERNEL::Exception)
3191       {
3192         std::string ret1;
3193         bool ret0=self->isEqualIfNotWhy(other,meshPrec,valsPrec,ret1);
3194         PyObject *ret=PyTuple_New(2);
3195         PyObject *ret0Py=ret0?Py_True:Py_False;
3196         Py_XINCREF(ret0Py);
3197         PyTuple_SetItem(ret,0,ret0Py);
3198         PyTuple_SetItem(ret,1,PyString_FromString(ret1.c_str()));
3199         return ret;
3200       }
3201
3202       PyObject *buildSubMeshData(PyObject *li) const throw(INTERP_KERNEL::Exception)
3203       {
3204         DataArrayInt *ret1=0;
3205         MEDCouplingMesh *ret0=0;
3206         void *da=0;
3207         int res1=SWIG_ConvertPtr(li,&da,SWIGTYPE_p_ParaMEDMEM__DataArrayInt, 0 |  0 );
3208         if (!SWIG_IsOK(res1))
3209           {
3210             int size;
3211             INTERP_KERNEL::AutoPtr<int> tmp=convertPyToNewIntArr2(li,&size);
3212             ret0=self->buildSubMeshData(tmp,tmp+size,ret1);
3213           }
3214         else
3215           {
3216             DataArrayInt *da2=reinterpret_cast< DataArrayInt * >(da);
3217             if(!da2)
3218               throw INTERP_KERNEL::Exception("Not null DataArrayInt instance expected !");
3219             da2->checkAllocated();
3220             ret0=self->buildSubMeshData(da2->getConstPointer(),da2->getConstPointer()+da2->getNbOfElems(),ret1);
3221           }
3222         PyObject *res = PyList_New(2);
3223         PyList_SetItem(res,0,convertMesh(ret0, SWIG_POINTER_OWN | 0 ));
3224         PyList_SetItem(res,1,SWIG_NewPointerObj((void*)ret1,SWIGTYPE_p_ParaMEDMEM__DataArrayInt,SWIG_POINTER_OWN | 0));
3225         return res;
3226       }
3227
3228       PyObject *buildSubMeshDataRange(int begin, int end, int step) const throw(INTERP_KERNEL::Exception)
3229       {
3230         DataArrayInt *ret1=0;
3231         int bb,ee,ss;
3232         MEDCouplingMesh *ret0=self->buildSubMeshDataRange(begin,end,step,bb,ee,ss,ret1);
3233         PyObject *res=PyTuple_New(2);
3234         PyTuple_SetItem(res,0,convertMesh(ret0, SWIG_POINTER_OWN | 0 ));
3235         if(ret1)
3236           PyTuple_SetItem(res,1,SWIG_NewPointerObj((void*)ret1,SWIGTYPE_p_ParaMEDMEM__DataArrayInt,SWIG_POINTER_OWN | 0));
3237         else
3238           {
3239             PyObject *res1=PySlice_New(PyInt_FromLong(bb),PyInt_FromLong(ee),PyInt_FromLong(ss));
3240             PyTuple_SetItem(res,1,res1);
3241           }
3242         return res;
3243       }
3244
3245       DataArrayInt *computeTupleIdsToSelectFromCellIds(PyObject *li) const
3246       {
3247         int sw;
3248         int pos1;
3249         std::vector<int> pos2;
3250         DataArrayInt *pos3=0;
3251         DataArrayIntTuple *pos4=0;
3252         convertObjToPossibleCpp1(li,sw,pos1,pos2,pos3,pos4);
3253         switch(sw)
3254           {
3255           case 1:
3256             {
3257               return self->computeTupleIdsToSelectFromCellIds(&pos1,&pos1+1);
3258             }
3259           case 2:
3260             {
3261               return self->computeTupleIdsToSelectFromCellIds(&pos2[0],&pos2[0]+pos2.size());
3262             }
3263           case 3:
3264             {
3265               return self->computeTupleIdsToSelectFromCellIds(pos3->begin(),pos3->end());
3266             }
3267           default:
3268             throw INTERP_KERNEL::Exception("MEDCouplingField::computeTupleIdsToSelectFromCellIds : unexpected input array type recognized !");
3269           }
3270       }
3271
3272       void setGaussLocalizationOnCells(PyObject *li, const std::vector<double>& refCoo,
3273                                        const std::vector<double>& gsCoo, const std::vector<double>& wg) throw(INTERP_KERNEL::Exception)
3274       {
3275         void *da=0;
3276         int res1=SWIG_ConvertPtr(li,&da,SWIGTYPE_p_ParaMEDMEM__DataArrayInt, 0 |  0 );
3277         if (!SWIG_IsOK(res1))
3278           {
3279             int size;
3280             INTERP_KERNEL::AutoPtr<int> tmp=convertPyToNewIntArr2(li,&size);
3281             self->setGaussLocalizationOnCells(tmp,((int *)tmp)+size,refCoo,gsCoo,wg);
3282           }
3283         else
3284           {
3285             DataArrayInt *da2=reinterpret_cast< DataArrayInt * >(da);
3286             if(!da2)
3287               throw INTERP_KERNEL::Exception("Not null DataArrayInt instance expected !");
3288             da2->checkAllocated();
3289             self->setGaussLocalizationOnCells(da2->getConstPointer(),da2->getConstPointer()+da2->getNbOfElems(),refCoo,gsCoo,wg);
3290           }
3291       }
3292
3293       PyObject *getCellIdsHavingGaussLocalization(int locId) const throw(INTERP_KERNEL::Exception)
3294       {
3295         std::vector<int> tmp;
3296         self->getCellIdsHavingGaussLocalization(locId,tmp);
3297         DataArrayInt *ret=DataArrayInt::New();
3298         ret->alloc((int)tmp.size(),1);
3299         std::copy(tmp.begin(),tmp.end(),ret->getPointer());
3300         return SWIG_NewPointerObj(SWIG_as_voidptr(ret),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 );
3301       }
3302     }
3303   };
3304   
3305   class MEDCouplingFieldTemplate : public ParaMEDMEM::MEDCouplingField
3306   {
3307   public:
3308     static MEDCouplingFieldTemplate *New(const MEDCouplingFieldDouble& f) throw(INTERP_KERNEL::Exception);
3309     static MEDCouplingFieldTemplate *New(TypeOfField type);
3310     std::string simpleRepr() const throw(INTERP_KERNEL::Exception);
3311     std::string advancedRepr() const throw(INTERP_KERNEL::Exception);
3312     %extend
3313        {
3314          MEDCouplingFieldTemplate(const MEDCouplingFieldDouble& f) throw(INTERP_KERNEL::Exception)
3315          {
3316            return MEDCouplingFieldTemplate::New(f);
3317          }
3318          
3319          MEDCouplingFieldTemplate(TypeOfField type) throw(INTERP_KERNEL::Exception)
3320          {
3321            return MEDCouplingFieldTemplate::New(type);
3322          }
3323          
3324          std::string __str__() const throw(INTERP_KERNEL::Exception)
3325          {
3326            return self->simpleRepr();
3327          }
3328          
3329          std::string __repr__() const throw(INTERP_KERNEL::Exception)
3330          {
3331            std::ostringstream oss;
3332            self->reprQuickOverview(oss);
3333            return oss.str();
3334          }
3335        }
3336   };
3337   
3338   class MEDCouplingFieldDouble : public ParaMEDMEM::MEDCouplingField
3339   {
3340   public:
3341     static MEDCouplingFieldDouble *New(TypeOfField type, TypeOfTimeDiscretization td=ONE_TIME);
3342     static MEDCouplingFieldDouble *New(const MEDCouplingFieldTemplate& ft, TypeOfTimeDiscretization td=ONE_TIME);
3343     void setTimeUnit(const char *unit);
3344     const char *getTimeUnit() const;
3345     void synchronizeTimeWithSupport() throw(INTERP_KERNEL::Exception);
3346     void copyTinyAttrFrom(const MEDCouplingFieldDouble *other) throw(INTERP_KERNEL::Exception);
3347     void copyAllTinyAttrFrom(const MEDCouplingFieldDouble *other) throw(INTERP_KERNEL::Exception);
3348     std::string simpleRepr() const throw(INTERP_KERNEL::Exception);
3349     std::string advancedRepr() const throw(INTERP_KERNEL::Exception);
3350     void writeVTK(const char *fileName) const throw(INTERP_KERNEL::Exception);
3351     MEDCouplingFieldDouble *clone(bool recDeepCpy) const;
3352     MEDCouplingFieldDouble *cloneWithMesh(bool recDeepCpy) const;
3353     MEDCouplingFieldDouble *deepCpy() const;
3354     MEDCouplingFieldDouble *buildNewTimeReprFromThis(TypeOfTimeDiscretization td, bool deepCpy) const throw(INTERP_KERNEL::Exception);
3355     TypeOfTimeDiscretization getTimeDiscretization() const throw(INTERP_KERNEL::Exception);
3356     double getIJ(int tupleId, int compoId) const throw(INTERP_KERNEL::Exception);
3357     double getIJK(int cellId, int nodeIdInCell, int compoId) const throw(INTERP_KERNEL::Exception);
3358     void synchronizeTimeWithMesh() throw(INTERP_KERNEL::Exception);
3359     void setArray(DataArrayDouble *array) throw(INTERP_KERNEL::Exception);
3360     void setEndArray(DataArrayDouble *array) throw(INTERP_KERNEL::Exception);
3361     void setTime(double val, int iteration, int order) throw(INTERP_KERNEL::Exception);
3362     void setStartTime(double val, int iteration, int order) throw(INTERP_KERNEL::Exception);
3363     void setEndTime(double val, int iteration, int order) throw(INTERP_KERNEL::Exception);
3364     void applyLin(double a, double b, int compoId) throw(INTERP_KERNEL::Exception);
3365     int getNumberOfComponents() const throw(INTERP_KERNEL::Exception);
3366     int getNumberOfTuples() const throw(INTERP_KERNEL::Exception);
3367     int getNumberOfValues() const throw(INTERP_KERNEL::Exception);
3368     void setTimeTolerance(double val) throw(INTERP_KERNEL::Exception);
3369     double getTimeTolerance() const throw(INTERP_KERNEL::Exception);
3370     void setIteration(int it) throw(INTERP_KERNEL::Exception);
3371     void setEndIteration(int it) throw(INTERP_KERNEL::Exception);
3372     void setOrder(int order) throw(INTERP_KERNEL::Exception);
3373     void setEndOrder(int order) throw(INTERP_KERNEL::Exception);
3374     void setTimeValue(double val) throw(INTERP_KERNEL::Exception);
3375     void setEndTimeValue(double val) throw(INTERP_KERNEL::Exception);
3376     void changeUnderlyingMesh(const MEDCouplingMesh *other, int levOfCheck, double precOnMesh, double eps=1e-15) throw(INTERP_KERNEL::Exception);
3377     void substractInPlaceDM(const MEDCouplingFieldDouble *f, int levOfCheck, double precOnMesh, double eps=1e-15) throw(INTERP_KERNEL::Exception);
3378     bool mergeNodes(double eps, double epsOnVals=1e-15) throw(INTERP_KERNEL::Exception);
3379     bool mergeNodes2(double eps, double epsOnVals=1e-15) throw(INTERP_KERNEL::Exception);
3380     bool zipCoords(double epsOnVals=1e-15) throw(INTERP_KERNEL::Exception);
3381     bool zipConnectivity(int compType,double epsOnVals=1e-15) throw(INTERP_KERNEL::Exception);
3382     bool simplexize(int policy) throw(INTERP_KERNEL::Exception);
3383     MEDCouplingFieldDouble *doublyContractedProduct() const throw(INTERP_KERNEL::Exception);
3384     MEDCouplingFieldDouble *determinant() const throw(INTERP_KERNEL::Exception);
3385     MEDCouplingFieldDouble *eigenValues() const throw(INTERP_KERNEL::Exception);
3386     MEDCouplingFieldDouble *eigenVectors() const throw(INTERP_KERNEL::Exception);
3387     MEDCouplingFieldDouble *inverse() const throw(INTERP_KERNEL::Exception);
3388     MEDCouplingFieldDouble *trace() const throw(INTERP_KERNEL::Exception);
3389     MEDCouplingFieldDouble *deviator() const throw(INTERP_KERNEL::Exception);
3390     MEDCouplingFieldDouble *magnitude() const throw(INTERP_KERNEL::Exception);
3391     MEDCouplingFieldDouble *maxPerTuple() const throw(INTERP_KERNEL::Exception);
3392     void changeNbOfComponents(int newNbOfComp, double dftValue=0.) throw(INTERP_KERNEL::Exception);
3393     void sortPerTuple(bool asc) throw(INTERP_KERNEL::Exception);
3394     MEDCouplingFieldDouble &operator=(double value) throw(INTERP_KERNEL::Exception);
3395     void fillFromAnalytic(int nbOfComp, const char *func) throw(INTERP_KERNEL::Exception);
3396     void fillFromAnalytic2(int nbOfComp, const char *func) throw(INTERP_KERNEL::Exception);
3397     void fillFromAnalytic3(int nbOfComp, const std::vector<std::string>& varsOrder, const char *func) throw(INTERP_KERNEL::Exception);
3398     void applyFunc(int nbOfComp, const char *func) throw(INTERP_KERNEL::Exception);
3399     void applyFunc2(int nbOfComp, const char *func) throw(INTERP_KERNEL::Exception);
3400     void applyFunc3(int nbOfComp, const std::vector<std::string>& varsOrder, const char *func) throw(INTERP_KERNEL::Exception);
3401     void applyFunc(int nbOfComp, double val) throw(INTERP_KERNEL::Exception);
3402     void applyFunc(const char *func) throw(INTERP_KERNEL::Exception);
3403     void applyFuncFast32(const char *func) throw(INTERP_KERNEL::Exception);
3404     void applyFuncFast64(const char *func) throw(INTERP_KERNEL::Exception);
3405     double accumulate(int compId) const throw(INTERP_KERNEL::Exception);
3406     double getMaxValue() const throw(INTERP_KERNEL::Exception);
3407     double getMinValue() const throw(INTERP_KERNEL::Exception);
3408     double getAverageValue() const throw(INTERP_KERNEL::Exception);
3409     double norm2() const throw(INTERP_KERNEL::Exception);
3410     double normMax() const throw(INTERP_KERNEL::Exception);
3411     //do not put a default value to isWAbs because confusion in python with overloaded getWeightedAverageValue method
3412     double getWeightedAverageValue(int compId, bool isWAbs) const throw(INTERP_KERNEL::Exception);
3413     double integral(int compId, bool isWAbs) const throw(INTERP_KERNEL::Exception);
3414     double normL1(int compId) const throw(INTERP_KERNEL::Exception);
3415     double normL2(int compId) const throw(INTERP_KERNEL::Exception);
3416     DataArrayInt *getIdsInRange(double vmin, double vmax) const throw(INTERP_KERNEL::Exception);
3417     MEDCouplingFieldDouble *buildSubPartRange(int begin, int end, int step) const throw(INTERP_KERNEL::Exception);
3418     static MEDCouplingFieldDouble *MergeFields(const MEDCouplingFieldDouble *f1, const MEDCouplingFieldDouble *f2) throw(INTERP_KERNEL::Exception);
3419     static MEDCouplingFieldDouble *MeldFields(const MEDCouplingFieldDouble *f1, const MEDCouplingFieldDouble *f2) throw(INTERP_KERNEL::Exception);
3420     static MEDCouplingFieldDouble *DotFields(const MEDCouplingFieldDouble *f1, const MEDCouplingFieldDouble *f2) throw(INTERP_KERNEL::Exception);
3421     MEDCouplingFieldDouble *dot(const MEDCouplingFieldDouble& other) const throw(INTERP_KERNEL::Exception);
3422     static MEDCouplingFieldDouble *CrossProductFields(const MEDCouplingFieldDouble *f1, const MEDCouplingFieldDouble *f2) throw(INTERP_KERNEL::Exception);
3423     MEDCouplingFieldDouble *crossProduct(const MEDCouplingFieldDouble& other) const throw(INTERP_KERNEL::Exception);
3424     static MEDCouplingFieldDouble *MaxFields(const MEDCouplingFieldDouble *f1, const MEDCouplingFieldDouble *f2) throw(INTERP_KERNEL::Exception);
3425     MEDCouplingFieldDouble *max(const MEDCouplingFieldDouble& other) const throw(INTERP_KERNEL::Exception);
3426     static MEDCouplingFieldDouble *MinFields(const MEDCouplingFieldDouble *f1, const MEDCouplingFieldDouble *f2) throw(INTERP_KERNEL::Exception);
3427     static MEDCouplingFieldDouble *AddFields(const MEDCouplingFieldDouble *f1, const MEDCouplingFieldDouble *f2) throw(INTERP_KERNEL::Exception);
3428     static MEDCouplingFieldDouble *SubstractFields(const MEDCouplingFieldDouble *f1, const MEDCouplingFieldDouble *f2) throw(INTERP_KERNEL::Exception);
3429     static MEDCouplingFieldDouble *MultiplyFields(const MEDCouplingFieldDouble *f1, const MEDCouplingFieldDouble *f2) throw(INTERP_KERNEL::Exception);
3430     static MEDCouplingFieldDouble *DivideFields(const MEDCouplingFieldDouble *f1, const MEDCouplingFieldDouble *f2) throw(INTERP_KERNEL::Exception);
3431     MEDCouplingFieldDouble *min(const MEDCouplingFieldDouble& other) const throw(INTERP_KERNEL::Exception);
3432     MEDCouplingFieldDouble *negate() const throw(INTERP_KERNEL::Exception);
3433     %extend {
3434       MEDCouplingFieldDouble(TypeOfField type, TypeOfTimeDiscretization td=ONE_TIME)
3435       {
3436         return MEDCouplingFieldDouble::New(type,td);
3437       }
3438
3439       MEDCouplingFieldDouble(const MEDCouplingFieldTemplate& ft, TypeOfTimeDiscretization td=ONE_TIME)
3440       {
3441         return MEDCouplingFieldDouble::New(ft,td);
3442       }
3443
3444       std::string __str__() const throw(INTERP_KERNEL::Exception)
3445       {
3446         return self->simpleRepr();
3447       }
3448
3449       std::string __repr__() const throw(INTERP_KERNEL::Exception)
3450       {
3451         std::ostringstream oss;
3452         self->reprQuickOverview(oss);
3453         return oss.str();
3454       }
3455
3456       DataArrayDouble *getArray() throw(INTERP_KERNEL::Exception)
3457       {
3458         DataArrayDouble *ret=self->getArray();
3459         if(ret)
3460           ret->incrRef();
3461         return ret;
3462       }
3463
3464       PyObject *getArrays() const throw(INTERP_KERNEL::Exception)
3465       {
3466         std::vector<DataArrayDouble *> arrs=self->getArrays();
3467         for(std::vector<DataArrayDouble *>::iterator it=arrs.begin();it!=arrs.end();it++)
3468           if(*it)
3469             (*it)->incrRef();
3470         int sz=arrs.size();
3471         PyObject *ret=PyTuple_New(sz);
3472         for(int i=0;i<sz;i++)
3473           {
3474             if(arrs[i])
3475               PyTuple_SetItem(ret,i,SWIG_NewPointerObj(SWIG_as_voidptr(arrs[i]),SWIGTYPE_p_ParaMEDMEM__DataArrayDouble, SWIG_POINTER_OWN | 0 ));
3476             else
3477               PyTuple_SetItem(ret,i,SWIG_NewPointerObj(SWIG_as_voidptr(0),SWIGTYPE_p_ParaMEDMEM__DataArrayDouble, 0 | 0 ));
3478           }
3479         return ret;
3480       }
3481
3482       void setArrays(PyObject *ls) throw(INTERP_KERNEL::Exception)
3483       {
3484         std::vector<const DataArrayDouble *> tmp;
3485         convertFromPyObjVectorOfObj<const DataArrayDouble *>(ls,SWIGTYPE_p_ParaMEDMEM__DataArrayDouble,"DataArrayDouble",tmp);
3486         int sz=tmp.size();
3487         std::vector<DataArrayDouble *> arrs(sz);
3488         for(int i=0;i<sz;i++)
3489           arrs[i]=const_cast<DataArrayDouble *>(tmp[i]);
3490         self->setArrays(arrs);
3491       }
3492
3493       DataArrayDouble *getEndArray() throw(INTERP_KERNEL::Exception)
3494       {
3495         DataArrayDouble *ret=self->getEndArray();
3496         if(ret)
3497           ret->incrRef();
3498         return ret;
3499       }
3500
3501       PyObject *getValueOn(PyObject *sl) const throw(INTERP_KERNEL::Exception)
3502       {
3503         double val;
3504         DataArrayDouble *a;
3505         DataArrayDoubleTuple *aa;
3506         std::vector<double> bb;
3507         int sw;
3508         const MEDCouplingMesh *mesh=self->getMesh();
3509         if(!mesh)
3510           throw INTERP_KERNEL::Exception("Python wrap of MEDCouplingFieldDouble::getValueOn : no underlying mesh !");
3511         int spaceDim=mesh->getSpaceDimension();
3512         const char msg[]="Python wrap of MEDCouplingFieldDouble::getValueOn : ";
3513         const double *spaceLoc=convertObjToPossibleCpp5_Safe(sl,sw,val,a,aa,bb,msg,1,spaceDim,true);
3514         //
3515         int sz=self->getNumberOfComponents();
3516         INTERP_KERNEL::AutoPtr<double> res=new double[sz];
3517         self->getValueOn(spaceLoc,res);
3518         return convertDblArrToPyList(res,sz);
3519       }
3520
3521        PyObject *getValueOnPos(int i, int j, int k) const throw(INTERP_KERNEL::Exception)
3522        {
3523          int sz=self->getNumberOfComponents();
3524          INTERP_KERNEL::AutoPtr<double> res=new double[sz];
3525          self->getValueOnPos(i,j,k,res);
3526          return convertDblArrToPyList(res,sz);
3527        }
3528
3529       DataArrayDouble *getValueOnMulti(PyObject *li) const throw(INTERP_KERNEL::Exception)
3530       {
3531         void *da=0;
3532         int res1=SWIG_ConvertPtr(li,&da,SWIGTYPE_p_ParaMEDMEM__DataArrayDouble, 0 |  0 );
3533         if (!SWIG_IsOK(res1))
3534           {
3535             int size;
3536             INTERP_KERNEL::AutoCPtr<double> tmp=convertPyToNewDblArr2(li,&size);
3537             const MEDCouplingMesh *mesh=self->getMesh();
3538             if(!mesh)
3539               throw INTERP_KERNEL::Exception("Python wrap MEDCouplingFieldDouble::getValueOnMulti : lying on a null mesh !");
3540             int spaceDim=mesh->getSpaceDimension();
3541             int nbOfPoints=size/spaceDim;
3542             if(size%spaceDim!=0)
3543               {
3544                 throw INTERP_KERNEL::Exception("Invalid list length ! Must be a multiple of self.getMesh().getSpaceDimension() !");
3545               }
3546             return self->getValueOnMulti(tmp,nbOfPoints);
3547           }
3548         else
3549           {
3550             DataArrayDouble *da2=reinterpret_cast< DataArrayDouble * >(da);
3551             if(!da2)
3552               throw INTERP_KERNEL::Exception("Not null DataArrayDouble instance expected !");
3553             da2->checkAllocated();
3554             int size=da2->getNumberOfTuples();
3555             int nbOfCompo=da2->getNumberOfComponents();
3556             const MEDCouplingMesh *mesh=self->getMesh();
3557             if(!mesh)
3558               throw INTERP_KERNEL::Exception("Python wrap MEDCouplingFieldDouble::getValueOnMulti : lying on a null mesh !");
3559             if(nbOfCompo!=mesh->getSpaceDimension())
3560               {
3561                 throw INTERP_KERNEL::Exception("Invalid DataArrayDouble nb of components ! Expected same as self.getMesh().getSpaceDimension() !");
3562               }
3563             return self->getValueOnMulti(da2->getConstPointer(),size);
3564           }
3565       }
3566
3567       PyObject *getValueOn(PyObject *sl, double time) const throw(INTERP_KERNEL::Exception)
3568       {
3569         double val;
3570         DataArrayDouble *a;
3571         DataArrayDoubleTuple *aa;
3572         std::vector<double> bb;
3573         int sw;
3574         const MEDCouplingMesh *mesh=self->getMesh();
3575         if(!mesh)
3576           throw INTERP_KERNEL::Exception("Python wrap of MEDCouplingFieldDouble::getValueOn : no underlying mesh !");
3577         int spaceDim=mesh->getSpaceDimension();
3578         const char msg[]="Python wrap of MEDCouplingFieldDouble::getValueOn : ";
3579         const double *spaceLoc=convertObjToPossibleCpp5_Safe(sl,sw,val,a,aa,bb,msg,1,spaceDim,true);
3580         //
3581         //
3582         int sz=self->getNumberOfComponents();
3583         INTERP_KERNEL::AutoPtr<double> res=new double[sz];
3584         self->getValueOn(spaceLoc,time,res);
3585         return convertDblArrToPyList(res,sz);
3586       }
3587
3588       void setValues(PyObject *li, PyObject *nbOfTuples=0, PyObject *nbOfComp=0) throw(INTERP_KERNEL::Exception)
3589       {
3590         if(self->getArray()!=0)
3591           ParaMEDMEM_DataArrayDouble_setValues__SWIG_0(self->getArray(),li,nbOfTuples,nbOfComp);
3592         else
3593           {
3594             MEDCouplingAutoRefCountObjectPtr<DataArrayDouble> arr=DataArrayDouble::New();
3595             ParaMEDMEM_DataArrayDouble_setValues__SWIG_0(arr,li,nbOfTuples,nbOfComp);
3596             self->setArray(arr);
3597           }
3598       }
3599       
3600       PyObject *getTime() throw(INTERP_KERNEL::Exception)
3601       {
3602         int tmp1,tmp2;
3603         double tmp0=self->getTime(tmp1,tmp2);
3604         PyObject *res = PyList_New(3);
3605         PyList_SetItem(res,0,SWIG_From_double(tmp0));
3606         PyList_SetItem(res,1,SWIG_From_int(tmp1));
3607         PyList_SetItem(res,2,SWIG_From_int(tmp2));
3608         return res;
3609       }
3610
3611       PyObject *getStartTime() throw(INTERP_KERNEL::Exception)
3612       {
3613         int tmp1,tmp2;
3614         double tmp0=self->getStartTime(tmp1,tmp2);
3615         PyObject *res = PyList_New(3);
3616         PyList_SetItem(res,0,SWIG_From_double(tmp0));
3617         PyList_SetItem(res,1,SWIG_From_int(tmp1));
3618         PyList_SetItem(res,2,SWIG_From_int(tmp2));
3619         return res;
3620       }
3621
3622       PyObject *getEndTime() throw(INTERP_KERNEL::Exception)
3623       {
3624         int tmp1,tmp2;
3625         double tmp0=self->getEndTime(tmp1,tmp2);
3626         PyObject *res = PyList_New(3);
3627         PyList_SetItem(res,0,SWIG_From_double(tmp0));
3628         PyList_SetItem(res,1,SWIG_From_int(tmp1));
3629         PyList_SetItem(res,2,SWIG_From_int(tmp2));
3630         return res;
3631       }
3632       PyObject *accumulate() const throw(INTERP_KERNEL::Exception)
3633       {
3634         int sz=self->getNumberOfComponents();
3635         INTERP_KERNEL::AutoPtr<double> tmp=new double[sz];
3636         self->accumulate(tmp);
3637         return convertDblArrToPyList(tmp,sz);
3638       }
3639       PyObject *integral(bool isWAbs) const throw(INTERP_KERNEL::Exception)
3640       {
3641         int sz=self->getNumberOfComponents();
3642         INTERP_KERNEL::AutoPtr<double> tmp=new double[sz];
3643         self->integral(isWAbs,tmp);
3644         return convertDblArrToPyList(tmp,sz);
3645       }
3646       PyObject *getWeightedAverageValue(bool isWAbs=true) const throw(INTERP_KERNEL::Exception)
3647       {
3648         int sz=self->getNumberOfComponents();
3649         INTERP_KERNEL::AutoPtr<double> tmp=new double[sz];
3650         self->getWeightedAverageValue(tmp,isWAbs);
3651         return convertDblArrToPyList(tmp,sz);
3652       }
3653       PyObject *normL1() const throw(INTERP_KERNEL::Exception)
3654       {
3655         int sz=self->getNumberOfComponents();
3656         INTERP_KERNEL::AutoPtr<double> tmp=new double[sz];
3657         self->normL1(tmp);
3658         return convertDblArrToPyList(tmp,sz);
3659       }
3660       PyObject *normL2() const throw(INTERP_KERNEL::Exception)
3661       {
3662         int sz=self->getNumberOfComponents();
3663         INTERP_KERNEL::AutoPtr<double> tmp=new double[sz];
3664         self->normL2(tmp);
3665         return convertDblArrToPyList(tmp,sz);
3666       }
3667       void renumberCells(PyObject *li, bool check=true) throw(INTERP_KERNEL::Exception)
3668       {
3669         void *da=0;
3670         int res1=SWIG_ConvertPtr(li,&da,SWIGTYPE_p_ParaMEDMEM__DataArrayInt, 0 |  0 );
3671         if (!SWIG_IsOK(res1))
3672           {
3673             int size;
3674             INTERP_KERNEL::AutoPtr<int> tmp=convertPyToNewIntArr2(li,&size);
3675             self->renumberCells(tmp,check);
3676           }
3677         else
3678           {
3679             DataArrayInt *da2=reinterpret_cast< DataArrayInt * >(da);
3680             if(!da2)
3681               throw INTERP_KERNEL::Exception("Not null DataArrayInt instance expected !");
3682             da2->checkAllocated();
3683             self->renumberCells(da2->getConstPointer(),check);
3684           }
3685       }
3686       void renumberNodes(PyObject *li, double eps=1e-15) throw(INTERP_KERNEL::Exception)
3687       {
3688         void *da=0;
3689         int res1=SWIG_ConvertPtr(li,&da,SWIGTYPE_p_ParaMEDMEM__DataArrayInt, 0 |  0 );
3690         if (!SWIG_IsOK(res1))
3691           {
3692             int size;
3693             INTERP_KERNEL::AutoPtr<int> tmp=convertPyToNewIntArr2(li,&size);
3694             self->renumberNodes(tmp,eps);
3695           }
3696         else
3697           {
3698             DataArrayInt *da2=reinterpret_cast< DataArrayInt * >(da);
3699             if(!da2)
3700               throw INTERP_KERNEL::Exception("Not null DataArrayInt instance expected !");
3701             da2->checkAllocated();
3702             self->renumberNodes(da2->getConstPointer(),eps);
3703           }
3704       }
3705
3706       MEDCouplingFieldDouble *buildSubPart(PyObject *li) const throw(INTERP_KERNEL::Exception)
3707       {
3708         int sw;
3709         int singleVal;
3710         std::vector<int> multiVal;
3711         std::pair<int, std::pair<int,int> > slic;
3712         ParaMEDMEM::DataArrayInt *daIntTyypp=0;
3713         const MEDCouplingMesh *mesh=self->getMesh();
3714         if(!mesh)
3715           throw INTERP_KERNEL::Exception("MEDCouplingFieldDouble::buildSubPart : field lies on a null mesh !");
3716         int nbc=mesh->getNumberOfCells();
3717         convertObjToPossibleCpp2(li,nbc,sw,singleVal,multiVal,slic,daIntTyypp);
3718         switch(sw)
3719           {
3720           case 1:
3721             {
3722               if(singleVal>=nbc)
3723                 {
3724                   std::ostringstream oss;
3725                   oss << "Requesting for cell id " << singleVal << " having only " << nbc << " cells !";
3726                   throw INTERP_KERNEL::Exception(oss.str().c_str());
3727                 }
3728               if(singleVal>=0)
3729                 return self->buildSubPart(&singleVal,&singleVal+1);
3730               else
3731                 {
3732                   if(nbc+singleVal>0)
3733                     {
3734                       int tmp=nbc+singleVal;
3735                       return self->buildSubPart(&tmp,&tmp+1);
3736                     }
3737                   else
3738                     {
3739                       std::ostringstream oss;
3740                       oss << "Requesting for cell id " << singleVal << " having only " << nbc << " cells !";
3741                       throw INTERP_KERNEL::Exception(oss.str().c_str());
3742                     }
3743                 }
3744             }
3745           case 2:
3746             {
3747               return self->buildSubPart(&multiVal[0],&multiVal[0]+multiVal.size());
3748             }
3749           case 3:
3750             {
3751               return self->buildSubPartRange(slic.first,slic.second.first,slic.second.second);
3752             }
3753           case 4:
3754             {
3755               if(!daIntTyypp)
3756                 throw INTERP_KERNEL::Exception("MEDCouplingFieldDouble::buildSubPart : null instance has been given in input !");
3757               daIntTyypp->checkAllocated();
3758               return self->buildSubPart(daIntTyypp->begin(),daIntTyypp->end());
3759             }
3760           default:
3761             throw INTERP_KERNEL::Exception("MEDCouplingFieldDouble::buildSubPart : unrecognized type in input ! Possibilities are : int, list or tuple of int DataArrayInt instance !");
3762           }
3763       }
3764
3765       MEDCouplingFieldDouble *__getitem__(PyObject *li) const throw(INTERP_KERNEL::Exception)
3766       {
3767         const char msg[]="MEDCouplingFieldDouble::__getitem__ : invalid call  Available API are : \n-myField[dataArrayInt]\n-myField[slice]\n-myField[pythonListOfCellIds]\n-myField[integer]\n-myField[dataArrayInt,1]\n-myField[slice,1]\n-myField[pythonListOfCellIds,1]\n-myField[integer,1]\n";
3768         if(PyTuple_Check(li))
3769           {
3770             Py_ssize_t sz=PyTuple_Size(li);
3771             if(sz!=2)
3772               throw INTERP_KERNEL::Exception(msg);
3773             PyObject *elt0=PyTuple_GetItem(li,0),*elt1=PyTuple_GetItem(li,1);
3774             int sw;
3775             int singleVal;
3776             std::vector<int> multiVal;
3777             std::pair<int, std::pair<int,int> > slic;
3778             ParaMEDMEM::DataArrayInt *daIntTyypp=0;
3779             if(!self->getArray())
3780               throw INTERP_KERNEL::Exception("MEDCouplingFieldDouble::__getitem__ : no array set on field to deduce number of components !");
3781             try
3782               { convertObjToPossibleCpp2(elt1,self->getArray()->getNumberOfComponents(),sw,singleVal,multiVal,slic,daIntTyypp); }
3783             catch(INTERP_KERNEL::Exception& e)
3784               { std::ostringstream oss; oss << "MEDCouplingFieldDouble::__getitem__ : invalid type in 2nd parameter (compo) !" << e.what(); throw INTERP_KERNEL::Exception(oss.str().c_str()); }
3785             MEDCouplingAutoRefCountObjectPtr<MEDCouplingFieldDouble> ret0=ParaMEDMEM_MEDCouplingFieldDouble_buildSubPart(self,elt0);
3786             DataArrayDouble *ret0Arr=ret0->getArray();
3787             if(!ret0Arr)
3788               throw INTERP_KERNEL::Exception("MEDCouplingFieldDouble::__getitem__ : no array exists to apply restriction on component on it !");
3789             switch(sw)
3790               {
3791               case 1:
3792                 {
3793                   std::vector<int> v2(1,singleVal);
3794                   MEDCouplingAutoRefCountObjectPtr<DataArrayDouble> aarr=static_cast<DataArrayDouble *>(ret0Arr->keepSelectedComponents(v2));
3795                   ret0->setArray(aarr);
3796                   return ret0.retn();
3797                 }
3798               case 2:
3799                 {
3800                   MEDCouplingAutoRefCountObjectPtr<DataArrayDouble> aarr=static_cast<DataArrayDouble *>(ret0Arr->keepSelectedComponents(multiVal));
3801                   ret0->setArray(aarr);
3802                   return ret0.retn();
3803                 }
3804               case 3:
3805                 {
3806                   int nbOfComp=DataArray::GetNumberOfItemGivenBESRelative(slic.first,slic.second.first,slic.second.second,"MEDCouplingFieldDouble::__getitem__ : invalid range in 2nd parameter (components) !");
3807                   std::vector<int> v2(nbOfComp);
3808                   for(int i=0;i<nbOfComp;i++)
3809                     v2[i]=slic.first+i*slic.second.second;
3810                   MEDCouplingAutoRefCountObjectPtr<DataArrayDouble> aarr=static_cast<DataArrayDouble *>(ret0Arr->keepSelectedComponents(v2));
3811                   ret0->setArray(aarr);
3812                   return ret0.retn();
3813                 }
3814               default:
3815                 throw INTERP_KERNEL::Exception(msg);
3816               }
3817             
3818           }
3819         else
3820           return ParaMEDMEM_MEDCouplingFieldDouble_buildSubPart(self,li);
3821       }
3822
3823       PyObject *getMaxValue2() const throw(INTERP_KERNEL::Exception)
3824       {
3825         DataArrayInt *tmp;
3826         double r1=self->getMaxValue2(tmp);
3827         PyObject *ret=PyTuple_New(2);
3828         PyTuple_SetItem(ret,0,PyFloat_FromDouble(r1));
3829         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(tmp),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
3830         return ret;
3831       }
3832       
3833       PyObject *getMinValue2() const throw(INTERP_KERNEL::Exception)
3834       {
3835         DataArrayInt *tmp;
3836         double r1=self->getMinValue2(tmp);
3837         PyObject *ret=PyTuple_New(2);
3838         PyTuple_SetItem(ret,0,PyFloat_FromDouble(r1));
3839         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(tmp),SWIGTYPE_p_ParaMEDMEM__DataArrayInt, SWIG_POINTER_OWN | 0 ));
3840         return ret;
3841       }
3842       
3843       MEDCouplingFieldDouble *keepSelectedComponents(PyObject *li) const throw(INTERP_KERNEL::Exception)
3844       {
3845         std::vector<int> tmp;
3846         convertPyToNewIntArr3(li,tmp);
3847         return self->keepSelectedComponents(tmp);
3848       }
3849
3850       void setSelectedComponents(const MEDCouplingFieldDouble *f, PyObject *li) throw(INTERP_KERNEL::Exception)
3851       {
3852         std::vector<int> tmp;
3853         convertPyToNewIntArr3(li,tmp);
3854         self->setSelectedComponents(f,tmp);
3855       }
3856
3857       MEDCouplingFieldDouble *extractSlice3D(PyObject *origin, PyObject *vec, double eps) const throw(INTERP_KERNEL::Exception)
3858       {
3859         double val,val2;
3860         DataArrayDouble *a,*a2;
3861         DataArrayDoubleTuple *aa,*aa2;
3862         std::vector<double> bb,bb2;
3863         int sw;
3864         int spaceDim=3;
3865         const char msg[]="Python wrap of MEDCouplingFieldDouble::extractSlice3D : 1st paramater for origin.";
3866         const char msg2[]="Python wrap of MEDCouplingFieldDouble::extractSlice3D : 2nd paramater for vector.";
3867         const double *orig=convertObjToPossibleCpp5_Safe(origin,sw,val,a,aa,bb,msg,1,spaceDim,true);
3868         const double *vect=convertObjToPossibleCpp5_Safe(vec,sw,val2,a2,aa2,bb2,msg2,1,spaceDim,true);
3869         //
3870         return self->extractSlice3D(orig,vect,eps);
3871       }
3872
3873       MEDCouplingFieldDouble *__add__(PyObject *obj) throw(INTERP_KERNEL::Exception)
3874       {
3875         return ParaMEDMEM_MEDCouplingFieldDouble___add__Impl(self,obj);
3876       }
3877
3878       MEDCouplingFieldDouble *__radd__(PyObject *obj) throw(INTERP_KERNEL::Exception)
3879       {
3880         return ParaMEDMEM_MEDCouplingFieldDouble___radd__Impl(self,obj);
3881       }
3882
3883       MEDCouplingFieldDouble *__sub__(PyObject *obj) throw(INTERP_KERNEL::Exception)
3884       {
3885         const char msg[]="Unexpected situation in MEDCouplingFieldDouble.__sub__ ! Expecting a not null MEDCouplingFieldDouble or DataArrayDouble or DataArrayDoubleTuple instance, or a list of double, or a double.";
3886         const char msg2[]="in MEDCouplingFieldDouble.__sub__ : self field has no Array of values set !";
3887         void *argp;
3888         //
3889         if(SWIG_IsOK(SWIG_ConvertPtr(obj,&argp,SWIGTYPE_p_ParaMEDMEM__MEDCouplingFieldDouble,0|0)))
3890           {
3891             MEDCouplingFieldDouble *other=reinterpret_cast< ParaMEDMEM::MEDCouplingFieldDouble * >(argp);
3892             if(other)
3893               return (*self)-(*other);
3894             else
3895               throw INTERP_KERNEL::Exception(msg);
3896           }
3897         //
3898         double val;
3899         DataArrayDouble *a;
3900         DataArrayDoubleTuple *aa;
3901         std::vector<double> bb;
3902         int sw;
3903         convertObjToPossibleCpp5(obj,sw,val,a,aa,bb);
3904         switch(sw)
3905           {
3906           case 1:
3907             {
3908               if(!self->getArray())
3909                 throw INTERP_KERNEL::Exception(msg2);
3910               MEDCouplingAutoRefCountObjectPtr<DataArrayDouble> ret=self->getArray()->deepCpy();
3911               ret->applyLin(1.,-val);
3912               MEDCouplingAutoRefCountObjectPtr<MEDCouplingFieldDouble> ret2=self->clone(false);
3913               ret2->setArray(ret);
3914               return ret2.retn();
3915             }
3916           case 2:
3917             {
3918               if(!self->getArray())
3919                 throw INTERP_KERNEL::Exception(msg2);
3920               MEDCouplingAutoRefCountObjectPtr<DataArrayDouble> ret=DataArrayDouble::Substract(self->getArray(),a);
3921               MEDCouplingAutoRefCountObjectPtr<MEDCouplingFieldDouble> ret2=self->clone(false);
3922               ret2->setArray(ret);
3923               return ret2.retn();
3924             }
3925           case 3:
3926             {
3927               if(!self->getArray())
3928                 throw INTERP_KERNEL::Exception(msg2);
3929               MEDCouplingAutoRefCountObjectPtr<DataArrayDouble> aaa=aa->buildDADouble(1,self->getNumberOfComponents());
3930               MEDCouplingAutoRefCountObjectPtr<DataArrayDouble> ret=DataArrayDouble::Substract(self->getArray(),aaa);
3931               MEDCouplingAutoRefCountObjectPtr<MEDCouplingFieldDouble> ret2=self->clone(false);
3932               ret2->setArray(ret);
3933               return ret2.retn();
3934             }
3935           case 4:
3936             {
3937               if(!self->getArray())
3938                 throw INTERP_KERNEL::Exception(msg2);
3939               MEDCouplingAutoRefCountObjectPtr<DataArrayDouble> aaa=DataArrayDouble::New(); aaa->useArray(&bb[0],false,CPP_DEALLOC,1,(int)bb.size());
3940               MEDCouplingAutoRefCountObjectPtr<DataArrayDouble> ret=DataArrayDouble::Substract(self->getArray(),aaa);
3941               MEDCouplingAutoRefCountObjectPtr<MEDCouplingFieldDouble> ret2=self->clone(false);
3942               ret2->setArray(ret);
3943               return ret2.retn();
3944             }
3945           default:
3946             { throw INTERP_KERNEL::Exception(msg); }
3947           }
3948       }
3949
3950       MEDCouplingFieldDouble *__rsub__(PyObject *obj) throw(INTERP_KERNEL::Exception)
3951       {
3952         return ParaMEDMEM_MEDCouplingFieldDouble___rsub__Impl(self,obj);
3953       }
3954
3955       MEDCouplingFieldDouble *__mul__(PyObject *obj) throw(INTERP_KERNEL::Exception)
3956       {
3957         return ParaMEDMEM_MEDCouplingFieldDouble___mul__Impl(self,obj);
3958       }
3959
3960       MEDCouplingFieldDouble *__rmul__(PyObject *obj) throw(INTERP_KERNEL::Exception)
3961       {
3962         return ParaMEDMEM_MEDCouplingFieldDouble___rmul__Impl(self,obj);
3963       }
3964
3965       MEDCouplingFieldDouble *__div__(PyObject *obj) throw(INTERP_KERNEL::Exception)
3966       {
3967         const char msg[]="Unexpected situation in MEDCouplingFieldDouble.__div__ ! Expecting a not null MEDCouplingFieldDouble or DataArrayDouble or DataArrayDoubleTuple instance, or a list of double, or a double.";
3968         const char msg2[]="in MEDCouplingFieldDouble.__div__ : self field has no Array of values set !";
3969         void *argp;
3970         //
3971         if(SWIG_IsOK(SWIG_ConvertPtr(obj,&argp,SWIGTYPE_p_ParaMEDMEM__MEDCouplingFieldDouble,0|0)))
3972           {
3973             MEDCouplingFieldDouble *other=reinterpret_cast< ParaMEDMEM::MEDCouplingFieldDouble * >(argp);
3974             if(other)
3975               return (*self)/(*other);
3976             else
3977               throw INTERP_KERNEL::Exception(msg);
3978           }
3979         //
3980         double val;
3981         DataArrayDouble *a;
3982         DataArrayDoubleTuple *aa;
3983         std::vector<double> bb;
3984         int sw;
3985         convertObjToPossibleCpp5(obj,sw,val,a,aa,bb);
3986         switch(sw)
3987           {
3988           case 1:
3989             {
3990               if(val==0.)
3991                 throw INTERP_KERNEL::Exception("MEDCouplingFieldDouble.__div__ : trying to divide by zero !");
3992               if(!self->getArray())
3993                 throw INTERP_KERNEL::Exception(msg2);
3994               MEDCouplingAutoRefCountObjectPtr<DataArrayDouble> ret=self->getArray()->deepCpy();
3995               ret->applyLin(1./val,0);
3996               MEDCouplingAutoRefCountObjectPtr<MEDCouplingFieldDouble> ret2=self->clone(false);
3997               ret2->setArray(ret);
3998               return ret2.retn();
3999             }
4000           case 2:
4001             {
4002               if(!self->getArray())
4003                 throw INTERP_KERNEL::Exception(msg2);
4004               MEDCouplingAutoRefCountObjectPtr<DataArrayDouble> ret=DataArrayDouble::Divide(self->getArray(),a);
4005               MEDCouplingAutoRefCountObjectPtr<MEDCouplingFieldDouble> ret2=self->clone(false);
4006               ret2->setArray(ret);
4007               return ret2.retn();
4008             }
4009           case 3:
4010             {
4011               if(!self->getArray())
4012                 throw INTERP_KERNEL::Exception(msg2);
4013               MEDCouplingAutoRefCountObjectPtr<DataArrayDouble> aaa=aa->buildDADouble(1,self->getNumberOfComponents());
4014               MEDCouplingAutoRefCountObjectPtr<DataArrayDouble> ret=DataArrayDouble::Divide(self->getArray(),aaa);
4015               MEDCouplingAutoRefCountObjectPtr<MEDCouplingFieldDouble> ret2=self->clone(false);
4016               ret2->setArray(ret);
4017               return ret2.retn();
4018             }
4019           case 4:
4020             {
4021               if(!self->getArray())
4022                 throw INTERP_KERNEL::Exception(msg2);
4023               MEDCouplingAutoRefCountObjectPtr<DataArrayDouble> aaa=DataArrayDouble::New(); aaa->useArray(&bb[0],false,CPP_DEALLOC,1,(int)bb.size());
4024               MEDCouplingAutoRefCountObjectPtr<DataArrayDouble> ret=DataArrayDouble::Divide(self->getArray(),aaa);
4025               MEDCouplingAutoRefCountObjectPtr<MEDCouplingFieldDouble> ret2=self->clone(false);
4026               ret2->setArray(ret);
4027               return ret2.retn();
4028             }
4029           default:
4030             { throw INTERP_KERNEL::Exception(msg); }
4031           }
4032       }
4033
4034       MEDCouplingFieldDouble *__rdiv__(PyObject *obj) throw(INTERP_KERNEL::Exception)
4035       {
4036         return ParaMEDMEM_MEDCouplingFieldDouble___rdiv__Impl(self,obj);
4037       }
4038
4039       MEDCouplingFieldDouble *__pow__(PyObject *obj) throw(INTERP_KERNEL::Exception)
4040       {
4041         const char msg[]="Unexpected situation in MEDCouplingFieldDouble.__pow__ ! Expecting a not null MEDCouplingFieldDouble or DataArrayDouble or DataArrayDoubleTuple instance, or a list of double, or a double.";
4042         const char msg2[]="in MEDCouplingFieldDouble.__pow__ : self field has no Array of values set !";
4043         void *argp;
4044         //
4045         if(SWIG_IsOK(SWIG_ConvertPtr(obj,&argp,SWIGTYPE_p_ParaMEDMEM__MEDCouplingFieldDouble,0|0)))
4046           {
4047             MEDCouplingFieldDouble *other=reinterpret_cast< ParaMEDMEM::MEDCouplingFieldDouble * >(argp);
4048             if(other)
4049               return (*self)^(*other);
4050             else
4051               throw INTERP_KERNEL::Exception(msg);
4052           }
4053         //
4054         double val;
4055         DataArrayDouble *a;
4056         DataArrayDoubleTuple *aa;
4057         std::vector<double> bb;
4058         int sw;
4059         convertObjToPossibleCpp5(obj,sw,val,a,aa,bb);
4060         switch(sw)
4061           {
4062           case 1:
4063             {
4064               if(!self->getArray())
4065                 throw INTERP_KERNEL::Exception(msg2);
4066               MEDCouplingAutoRefCountObjectPtr<DataArrayDouble> ret=self->getArray()->deepCpy();
4067               ret->applyPow(val);
4068               MEDCouplingAutoRefCountObjectPtr<MEDCouplingFieldDouble> ret2=self->clone(false);
4069               ret2->setArray(ret);
4070               return ret2.retn();
4071             }
4072           case 2:
4073             {
4074               if(!self->getArray())
4075                 throw INTERP_KERNEL::Exception(msg2);
4076               MEDCouplingAutoRefCountObjectPtr<DataArrayDouble> ret=DataArrayDouble::Pow(self->getArray(),a);
4077               MEDCouplingAutoRefCountObjectPtr<MEDCouplingFieldDouble> ret2=self->clone(false);
4078               ret2->setArray(ret);
4079               return ret2.retn();
4080             }
4081           case 3:
4082             {
4083               if(!self->getArray())
4084                 throw INTERP_KERNEL::Exception(msg2);
4085               MEDCouplingAutoRefCountObjectPtr<DataArrayDouble> aaa=aa->buildDADouble(1,self->getNumberOfComponents());
4086               MEDCouplingAutoRefCountObjectPtr<DataArrayDouble> ret=DataArrayDouble::Pow(self->getArray(),aaa);
4087               MEDCouplingAutoRefCountObjectPtr<MEDCouplingFieldDouble> ret2=self->clone(false);
4088               ret2->setArray(ret);
4089               return ret2.retn();
4090             }
4091           case 4:
4092             {
4093               if(!self->getArray())
4094                 throw INTERP_KERNEL::Exception(msg2);
4095               MEDCouplingAutoRefCountObjectPtr<DataArrayDouble> aaa=DataArrayDouble::New(); aaa->useArray(&bb[0],false,CPP_DEALLOC,1,(int)bb.size());
4096               MEDCouplingAutoRefCountObjectPtr<DataArrayDouble> ret=DataArrayDouble::Pow(self->getArray(),aaa);
4097               MEDCouplingAutoRefCountObjectPtr<MEDCouplingFieldDouble> ret2=self->clone(false);
4098               ret2->setArray(ret);
4099               return ret2.retn();
4100             }
4101           default:
4102             { throw INTERP_KERNEL::Exception(msg); }
4103           }
4104       }
4105
4106       MEDCouplingFieldDouble *__neg__() const throw(INTERP_KERNEL::Exception)
4107       {
4108         return self->negate();
4109       }
4110
4111       PyObject *___iadd___(PyObject *trueSelf, PyObject *obj) throw(INTERP_KERNEL::Exception)
4112       {
4113         const char msg[]="Unexpected situation in MEDCouplingFieldDouble.__iadd__ ! Expecting a not null MEDCouplingFieldDouble or DataArrayDouble or DataArrayDoubleTuple instance, or a list of double, or a double.";
4114         const char msg2[]="in MEDCouplingFieldDouble.__iadd__ : self field has no Array of values set !";
4115         void *argp;
4116         //
4117         if(SWIG_IsOK(SWIG_ConvertPtr(obj,&argp,SWIGTYPE_p_ParaMEDMEM__MEDCouplingFieldDouble,0|0)))
4118           {
4119             MEDCouplingFieldDouble *other=reinterpret_cast< ParaMEDMEM::MEDCouplingFieldDouble * >(argp);
4120             if(other)
4121               {
4122                 *self+=*other;
4123                 Py_XINCREF(trueSelf);
4124                 return trueSelf;
4125               }
4126             else
4127               throw INTERP_KERNEL::Exception(msg);
4128           }
4129         //
4130         double val;
4131         DataArrayDouble *a;
4132         DataArrayDoubleTuple *aa;
4133         std::vector<double> bb;
4134         int sw;
4135         convertObjToPossibleCpp5(obj,sw,val,a,aa,bb);
4136         switch(sw)
4137           {
4138           case 1:
4139             {
4140               if(!self->getArray())
4141                 throw INTERP_KERNEL::Exception(msg2);
4142               self->getArray()->applyLin(1.,val);
4143               Py_XINCREF(trueSelf);
4144               return trueSelf;
4145             }
4146           case 2:
4147             {
4148               MEDCouplingAutoRefCountObjectPtr<MEDCouplingFieldDouble> ret2=self->clone(false);
4149               ret2->setArray(a);
4150               *self+=*ret2;
4151               Py_XINCREF(trueSelf);
4152               return trueSelf;
4153             }
4154           case 3:
4155             {
4156               MEDCouplingAutoRefCountObjectPtr<DataArrayDouble> aaa=aa->buildDADouble(1,self->getNumberOfComponents());
4157               MEDCouplingAutoRefCountObjectPtr<MEDCouplingFieldDouble> ret2=self->clone(false);
4158               ret2->setArray(aaa);
4159               *self+=*ret2;
4160               Py_XINCREF(trueSelf);
4161               return trueSelf;
4162             }
4163           case 4:
4164             {
4165               if(!self->getArray())
4166                 throw INTERP_KERNEL::Exception(msg2);
4167               MEDCouplingAutoRefCountObjectPtr<DataArrayDouble> aaa=DataArrayDouble::New(); aaa->useArray(&bb[0],false,CPP_DEALLOC,1,(int)bb.size());
4168               self->getArray()->addEqual(aaa);
4169               Py_XINCREF(trueSelf);
4170               return trueSelf;
4171             }
4172           default:
4173             { throw INTERP_KERNEL::Exception(msg); }
4174           }
4175       }
4176
4177       PyObject *___isub___(PyObject *trueSelf, PyObject *obj) throw(INTERP_KERNEL::Exception)
4178       {
4179         const char msg[]="Unexpected situation in MEDCouplingFieldDouble.__isub__ ! Expecting a not null MEDCouplingFieldDouble or DataArrayDouble or DataArrayDoubleTuple instance, or a list of double, or a double.";
4180         const char msg2[]="in MEDCouplingFieldDouble.__isub__ : self field has no Array of values set !";
4181         void *argp;
4182         //
4183         if(SWIG_IsOK(SWIG_ConvertPtr(obj,&argp,SWIGTYPE_p_ParaMEDMEM__MEDCouplingFieldDouble,0|0)))
4184           {
4185             MEDCouplingFieldDouble *other=reinterpret_cast< ParaMEDMEM::MEDCouplingFieldDouble * >(argp);
4186             if(other)
4187               {
4188                 *self-=*other;
4189                 Py_XINCREF(trueSelf);
4190                 return trueSelf;
4191               }
4192             else
4193               throw INTERP_KERNEL::Exception(msg);
4194           }
4195         //
4196         double val;
4197         DataArrayDouble *a;
4198         DataArrayDoubleTuple *aa;
4199         std::vector<double> bb;
4200         int sw;
4201         convertObjToPossibleCpp5(obj,sw,val,a,aa,bb);
4202         switch(sw)
4203           {
4204           case 1:
4205             {
4206               if(!self->getArray())
4207                 throw INTERP_KERNEL::Exception(msg2);
4208               self->getArray()->applyLin(1.,-val);
4209               Py_XINCREF(trueSelf);
4210               return trueSelf;
4211             }
4212           case 2:
4213             {
4214               MEDCouplingAutoRefCountObjectPtr<MEDCouplingFieldDouble> ret2=self->clone(false);
4215               ret2->setArray(a);
4216               *self-=*ret2;
4217               Py_XINCREF(trueSelf);
4218               return trueSelf;
4219             }
4220           case 3:
4221             {
4222               MEDCouplingAutoRefCountObjectPtr<DataArrayDouble> aaa=aa->buildDADouble(1,self->getNumberOfComponents());
4223               MEDCouplingAutoRefCountObjectPtr<MEDCouplingFieldDouble> ret2=self->clone(false);
4224               ret2->setArray(aaa);
4225               *self-=*ret2;
4226               Py_XINCREF(trueSelf);
4227               return trueSelf;
4228             }
4229           case 4:
4230             {
4231               if(!self->getArray())
4232                 throw INTERP_KERNEL::Exception(msg2);
4233               MEDCouplingAutoRefCountObjectPtr<DataArrayDouble> aaa=DataArrayDouble::New(); aaa->useArray(&bb[0],false,CPP_DEALLOC,1,(int)bb.size());
4234               self->getArray()->substractEqual(aaa);
4235               Py_XINCREF(trueSelf);
4236               return trueSelf;
4237             }
4238           default:
4239             { throw INTERP_KERNEL::Exception(msg); }
4240           }
4241       }
4242
4243       PyObject *___imul___(PyObject *trueSelf, PyObject *obj) throw(INTERP_KERNEL::Exception)
4244       {
4245         const char msg[]="Unexpected situation in MEDCouplingFieldDouble.__imul__ ! Expecting a not null MEDCouplingFieldDouble or DataArrayDouble or DataArrayDoubleTuple instance, or a list of double, or a double.";
4246         const char msg2[]="in MEDCouplingFieldDouble.__imul__ : self field has no Array of values set !";
4247         void *argp;
4248         //
4249         if(SWIG_IsOK(SWIG_ConvertPtr(obj,&argp,SWIGTYPE_p_ParaMEDMEM__MEDCouplingFieldDouble,0|0)))
4250           {
4251             MEDCouplingFieldDouble *other=reinterpret_cast< ParaMEDMEM::MEDCouplingFieldDouble * >(argp);
4252             if(other)
4253               {
4254                 *self*=*other;
4255                 Py_XINCREF(trueSelf);
4256                 return trueSelf;
4257               }
4258             else
4259               throw INTERP_KERNEL::Exception(msg);
4260           }
4261         //
4262         double val;
4263         DataArrayDouble *a;
4264         DataArrayDoubleTuple *aa;
4265         std::vector<double> bb;
4266         int sw;
4267         convertObjToPossibleCpp5(obj,sw,val,a,aa,bb);
4268         switch(sw)
4269           {
4270           case 1:
4271             {
4272               if(!self->getArray())
4273                 throw INTERP_KERNEL::Exception(msg2);
4274               self->getArray()->applyLin(val,0);
4275               Py_XINCREF(trueSelf);
4276               return trueSelf;
4277             }
4278           case 2:
4279             {
4280               MEDCouplingAutoRefCountObjectPtr<MEDCouplingFieldDouble> ret2=self->clone(false);
4281               ret2->setArray(a);
4282               *self*=*ret2;
4283               Py_XINCREF(trueSelf);
4284               return trueSelf;
4285             }
4286           case 3:
4287             {
4288               MEDCouplingAutoRefCountObjectPtr<DataArrayDouble> aaa=aa->buildDADouble(1,self->getNumberOfComponents());
4289               MEDCouplingAutoRefCountObjectPtr<MEDCouplingFieldDouble> ret2=self->clone(false);
4290               ret2->setArray(aaa);
4291               *self*=*ret2;
4292               Py_XINCREF(trueSelf);
4293               return trueSelf;
4294             }
4295           case 4:
4296             {
4297               if(!self->getArray())
4298                 throw INTERP_KERNEL::Exception(msg2);
4299               MEDCouplingAutoRefCountObjectPtr<DataArrayDouble> aaa=DataArrayDouble::New(); aaa->useArray(&bb[0],false,CPP_DEALLOC,1,(int)bb.size());
4300               self->getArray()->multiplyEqual(aaa);
4301               Py_XINCREF(trueSelf);
4302               return trueSelf;
4303             }
4304           default:
4305             { throw INTERP_KERNEL::Exception(msg); }
4306           }
4307       }
4308
4309       PyObject *___idiv___(PyObject *trueSelf, PyObject *obj) throw(INTERP_KERNEL::Exception)
4310       {
4311         const char msg[]="Unexpected situation in MEDCouplingFieldDouble.__idiv__ ! Expecting a not null MEDCouplingFieldDouble or DataArrayDouble or DataArrayDoubleTuple instance, or a list of double, or a double.";
4312         const char msg2[]="in MEDCouplingFieldDouble.__idiv__ : self field has no Array of values set !";
4313         void *argp;
4314         //
4315         if(SWIG_IsOK(SWIG_ConvertPtr(obj,&argp,SWIGTYPE_p_ParaMEDMEM__MEDCouplingFieldDouble,0|0)))
4316           {
4317             MEDCouplingFieldDouble *other=reinterpret_cast< ParaMEDMEM::MEDCouplingFieldDouble * >(argp);
4318             if(other)
4319               {
4320                 *self/=*other;
4321                 Py_XINCREF(trueSelf);
4322                 return trueSelf;
4323               }
4324             else
4325               throw INTERP_KERNEL::Exception(msg);
4326           }
4327         //
4328         double val;
4329         DataArrayDouble *a;
4330         DataArrayDoubleTuple *aa;
4331         std::vector<double> bb;
4332         int sw;
4333         convertObjToPossibleCpp5(obj,sw,val,a,aa,bb);
4334         switch(sw)
4335           {
4336           case 1:
4337             {
4338               if(val==0.)
4339                 throw INTERP_KERNEL::Exception("MEDCouplingFieldDouble.__idiv__ : trying to divide by zero !");
4340               if(!self->getArray())
4341                 throw INTERP_KERNEL::Exception(msg2);
4342               self->getArray()->applyLin(1./val,0);
4343               Py_XINCREF(trueSelf);
4344               return trueSelf;
4345             }
4346           case 2:
4347             {
4348               MEDCouplingAutoRefCountObjectPtr<MEDCouplingFieldDouble> ret2=self->clone(false);
4349               ret2->setArray(a);
4350               *self/=*ret2;
4351               Py_XINCREF(trueSelf);
4352               return trueSelf;
4353             }
4354           case 3:
4355             {
4356               MEDCouplingAutoRefCountObjectPtr<DataArrayDouble> aaa=aa->buildDADouble(1,self->getNumberOfComponents());
4357               MEDCouplingAutoRefCountObjectPtr<MEDCouplingFieldDouble> ret2=self->clone(false);
4358               ret2->setArray(aaa);
4359               *self/=*ret2;
4360               Py_XINCREF(trueSelf);
4361               return trueSelf;
4362             }
4363           case 4:
4364             {
4365               if(!self->getArray())
4366                 throw INTERP_KERNEL::Exception(msg2);
4367               MEDCouplingAutoRefCountObjectPtr<DataArrayDouble> aaa=DataArrayDouble::New(); aaa->useArray(&bb[0],false,CPP_DEALLOC,1,(int)bb.size());
4368               self->getArray()->divideEqual(aaa);
4369               Py_XINCREF(trueSelf);
4370               return trueSelf;
4371             }
4372           default:
4373             { throw INTERP_KERNEL::Exception(msg); }
4374           }
4375       }
4376
4377       PyObject *___ipow___(PyObject *trueSelf, PyObject *obj) throw(INTERP_KERNEL::Exception)
4378       {
4379         const char msg[]="Unexpected situation in MEDCouplingFieldDouble.__ipow__ ! Expecting a not null MEDCouplingFieldDouble or DataArrayDouble or DataArrayDoubleTuple instance, or a list of double, or a double.";
4380         const char msg2[]="in MEDCouplingFieldDouble.__ipow__ : self field has no Array of values set !";
4381         void *argp;
4382         //
4383         if(SWIG_IsOK(SWIG_ConvertPtr(obj,&argp,SWIGTYPE_p_ParaMEDMEM__MEDCouplingFieldDouble,0|0)))
4384           {
4385             MEDCouplingFieldDouble *other=reinterpret_cast< ParaMEDMEM::MEDCouplingFieldDouble * >(argp);
4386             if(other)
4387               {
4388                 *self^=*other;
4389                 Py_XINCREF(trueSelf);
4390                 return trueSelf;
4391               }
4392             else
4393               throw INTERP_KERNEL::Exception(msg);
4394           }
4395         //
4396         double val;
4397         DataArrayDouble *a;
4398         DataArrayDoubleTuple *aa;
4399         std::vector<double> bb;
4400         int sw;
4401         convertObjToPossibleCpp5(obj,sw,val,a,aa,bb);
4402         switch(sw)
4403           {
4404           case 1:
4405             {
4406               if(!self->getArray())
4407                 throw INTERP_KERNEL::Exception(msg2);
4408               self->getArray()->applyPow(val);
4409               Py_XINCREF(trueSelf);
4410               return trueSelf;
4411             }
4412           case 2:
4413             {
4414               MEDCouplingAutoRefCountObjectPtr<MEDCouplingFieldDouble> ret2=self->clone(false);
4415               ret2->setArray(a);
4416               *self^=*ret2;
4417               Py_XINCREF(trueSelf);
4418               return trueSelf;
4419             }
4420           case 3:
4421             {
4422               MEDCouplingAutoRefCountObjectPtr<DataArrayDouble> aaa=aa->buildDADouble(1,self->getNumberOfComponents());
4423               MEDCouplingAutoRefCountObjectPtr<MEDCouplingFieldDouble> ret2=self->clone(false);
4424               ret2->setArray(aaa);
4425               *self^=*ret2;
4426               Py_XINCREF(trueSelf);
4427               return trueSelf;
4428             }
4429           case 4:
4430             {
4431               if(!self->getArray())
4432                 throw INTERP_KERNEL::Exception(msg2);
4433               MEDCouplingAutoRefCountObjectPtr<DataArrayDouble> aaa=DataArrayDouble::New(); aaa->useArray(&bb[0],false,CPP_DEALLOC,1,(int)bb.size());
4434               self->getArray()->powEqual(aaa);
4435               Py_XINCREF(trueSelf);
4436               return trueSelf;
4437             }
4438           default:
4439             { throw INTERP_KERNEL::Exception(msg); }
4440           }
4441       }
4442
4443       static MEDCouplingFieldDouble *MergeFields(PyObject *li) throw(INTERP_KERNEL::Exception)
4444       {
4445         std::vector<const MEDCouplingFieldDouble *> tmp;
4446         convertFromPyObjVectorOfObj<const ParaMEDMEM::MEDCouplingFieldDouble *>(li,SWIGTYPE_p_ParaMEDMEM__MEDCouplingFieldDouble,"MEDCouplingFieldDouble",tmp);
4447         return MEDCouplingFieldDouble::MergeFields(tmp);
4448       }
4449
4450       static void WriteVTK(const char *fileName, PyObject *li) throw(INTERP_KERNEL::Exception)
4451       {
4452         std::vector<const MEDCouplingFieldDouble *> tmp;
4453         convertFromPyObjVectorOfObj<const ParaMEDMEM::MEDCouplingFieldDouble *>(li,SWIGTYPE_p_ParaMEDMEM__MEDCouplingFieldDouble,"MEDCouplingFieldDouble",tmp);
4454         MEDCouplingFieldDouble::WriteVTK(fileName,tmp);
4455       }
4456     }
4457   };
4458
4459   class MEDCouplingMultiFields : public RefCountObject, public TimeLabel
4460   {
4461   public:
4462     int getNumberOfFields() const;
4463     MEDCouplingMultiFields *deepCpy() const;
4464     virtual std::string simpleRepr() const throw(INTERP_KERNEL::Exception);
4465     virtual std::string advancedRepr() const throw(INTERP_KERNEL::Exception);
4466     virtual bool isEqual(const MEDCouplingMultiFields *other, double meshPrec, double valsPrec) const;
4467     virtual bool isEqualWithoutConsideringStr(const MEDCouplingMultiFields *other, double meshPrec, double valsPrec) const;
4468     virtual void checkCoherency() const throw(INTERP_KERNEL::Exception);
4469     %extend
4470        {
4471          std::string __str__() const throw(INTERP_KERNEL::Exception)
4472          {
4473            return self->simpleRepr();
4474          }
4475          static MEDCouplingMultiFields *New(PyObject *li) throw(INTERP_KERNEL::Exception)
4476          {
4477            std::vector<const ParaMEDMEM::MEDCouplingFieldDouble *> tmp;
4478            convertFromPyObjVectorOfObj<const ParaMEDMEM::MEDCouplingFieldDouble *>(li,SWIGTYPE_p_ParaMEDMEM__MEDCouplingFieldDouble,"MEDCouplingFieldDouble",tmp);
4479            int sz=tmp.size();
4480            std::vector<MEDCouplingFieldDouble *> fs(sz);
4481            for(int i=0;i<sz;i++)
4482              fs[i]=const_cast<MEDCouplingFieldDouble *>(tmp[i]);
4483            return MEDCouplingMultiFields::New(fs);
4484          }
4485          MEDCouplingMultiFields(PyObject *li) throw(INTERP_KERNEL::Exception)
4486          {
4487            std::vector<const ParaMEDMEM::MEDCouplingFieldDouble *> tmp;
4488            convertFromPyObjVectorOfObj<const ParaMEDMEM::MEDCouplingFieldDouble *>(li,SWIGTYPE_p_ParaMEDMEM__MEDCouplingFieldDouble,"MEDCouplingFieldDouble",tmp);
4489            int sz=tmp.size();
4490            std::vector<MEDCouplingFieldDouble *> fs(sz);
4491            for(int i=0;i<sz;i++)
4492              fs[i]=const_cast<MEDCouplingFieldDouble *>(tmp[i]);
4493            return MEDCouplingMultiFields::New(fs);
4494          }
4495          PyObject *getFields() const
4496          {
4497            std::vector<const MEDCouplingFieldDouble *> fields=self->getFields();
4498            int sz=fields.size();
4499            PyObject *res = PyList_New(sz);
4500            for(int i=0;i<sz;i++)
4501              {
4502                if(fields[i])
4503                  {
4504                    fields[i]->incrRef();
4505                    PyList_SetItem(res,i,SWIG_NewPointerObj(SWIG_as_voidptr(fields[i]),SWIGTYPE_p_ParaMEDMEM__MEDCouplingFieldDouble, SWIG_POINTER_OWN | 0 ));
4506                  }
4507                else
4508                  {
4509                    PyList_SetItem(res,i,SWIG_NewPointerObj(SWIG_as_voidptr(0),SWIGTYPE_p_ParaMEDMEM__MEDCouplingFieldDouble, 0 ));
4510                  }
4511              }
4512            return res;
4513          }
4514          PyObject *getFieldAtPos(int id) const throw(INTERP_KERNEL::Exception)
4515          {
4516            const MEDCouplingFieldDouble *ret=self->getFieldAtPos(id);
4517            if(ret)
4518              {
4519                ret->incrRef();
4520                return SWIG_NewPointerObj(SWIG_as_voidptr(ret),SWIGTYPE_p_ParaMEDMEM__MEDCouplingFieldDouble, SWIG_POINTER_OWN | 0 );
4521              }
4522            else
4523              return SWIG_NewPointerObj(SWIG_as_voidptr(0),SWIGTYPE_p_ParaMEDMEM__MEDCouplingFieldDouble, 0 );
4524          }
4525          PyObject *getMeshes() const throw(INTERP_KERNEL::Exception)
4526          {
4527            std::vector<MEDCouplingMesh *> ms=self->getMeshes();
4528            int sz=ms.size();
4529            PyObject *res = PyList_New(sz);
4530            for(int i=0;i<sz;i++)
4531              {
4532                if(ms[i])
4533                  {
4534                    ms[i]->incrRef();
4535                    PyList_SetItem(res,i,convertMesh(ms[i], SWIG_POINTER_OWN | 0 ));
4536                  }
4537                else
4538                  {
4539                    PyList_SetItem(res,i,SWIG_NewPointerObj(SWIG_as_voidptr(0),SWIGTYPE_p_ParaMEDMEM__MEDCouplingUMesh, 0 ));
4540                  }
4541              }
4542            return res;
4543          }
4544          PyObject *getDifferentMeshes() const throw(INTERP_KERNEL::Exception)
4545          {
4546            std::vector<int> refs;
4547            std::vector<MEDCouplingMesh *> ms=self->getDifferentMeshes(refs);
4548            int sz=ms.size();
4549            PyObject *res = PyList_New(sz);
4550            for(int i=0;i<sz;i++)
4551              {
4552                if(ms[i])
4553                  {
4554                    ms[i]->incrRef();
4555                    PyList_SetItem(res,i,convertMesh(ms[i], SWIG_POINTER_OWN | 0 ));
4556                  }
4557                else
4558                  {
4559                    PyList_SetItem(res,i,SWIG_NewPointerObj(SWIG_as_voidptr(0),SWIGTYPE_p_ParaMEDMEM__MEDCouplingUMesh, 0 ));
4560                  }
4561              }
4562            //
4563            PyObject *ret=PyTuple_New(2);
4564            PyTuple_SetItem(ret,0,res);
4565            PyTuple_SetItem(ret,1,convertIntArrToPyList2(refs));
4566            return ret;
4567          }
4568          PyObject *getArrays() const throw(INTERP_KERNEL::Exception)
4569          {
4570            std::vector<DataArrayDouble *> ms=self->getArrays();
4571            int sz=ms.size();
4572            PyObject *res = PyList_New(sz);
4573            for(int i=0;i<sz;i++)
4574              {
4575                if(ms[i])
4576                  {
4577                    ms[i]->incrRef();
4578                    PyList_SetItem(res,i,SWIG_NewPointerObj(SWIG_as_voidptr(ms[i]),SWIGTYPE_p_ParaMEDMEM__DataArrayDouble, SWIG_POINTER_OWN | 0 ));
4579                  }
4580                else
4581                  {
4582                    PyList_SetItem(res,i,SWIG_NewPointerObj(SWIG_as_voidptr(0),SWIGTYPE_p_ParaMEDMEM__DataArrayDouble, 0 ));
4583                  }
4584              }
4585            return res;
4586          }
4587          PyObject *getDifferentArrays() const throw(INTERP_KERNEL::Exception)
4588          {
4589            std::vector< std::vector<int> > refs;
4590            std::vector<DataArrayDouble *> ms=self->getDifferentArrays(refs);
4591            int sz=ms.size();
4592            PyObject *res = PyList_New(sz);
4593            PyObject *res2 = PyList_New(sz);
4594            for(int i=0;i<sz;i++)
4595              {
4596                if(ms[i])
4597                  {
4598                    ms[i]->incrRef();
4599                    PyList_SetItem(res,i,SWIG_NewPointerObj(SWIG_as_voidptr(ms[i]),SWIGTYPE_p_ParaMEDMEM__DataArrayDouble, SWIG_POINTER_OWN | 0 ));
4600                  }
4601                else
4602                  {
4603                    PyList_SetItem(res,i,SWIG_NewPointerObj(SWIG_as_voidptr(0),SWIGTYPE_p_ParaMEDMEM__DataArrayDouble, 0 ));
4604                  }
4605                PyList_SetItem(res2,i,convertIntArrToPyList2(refs[i]));
4606              }
4607            //
4608            PyObject *ret=PyTuple_New(2);
4609            PyTuple_SetItem(ret,0,res);
4610            PyTuple_SetItem(ret,1,res2);
4611            return ret;
4612          }
4613        }
4614   };
4615   
4616   class MEDCouplingDefinitionTime
4617   {
4618   public:
4619     MEDCouplingDefinitionTime();
4620     void assign(const MEDCouplingDefinitionTime& other);
4621     bool isEqual(const MEDCouplingDefinitionTime& other) const;
4622     double getTimeResolution() const;
4623     std::vector<double> getHotSpotsTime() const;
4624     %extend
4625       {
4626         std::string __str__() const throw(INTERP_KERNEL::Exception)
4627           {
4628             std::ostringstream oss;
4629             self->appendRepr(oss);
4630             return oss.str();
4631           }
4632
4633         PyObject *getIdsOnTimeRight(double tm) const throw(INTERP_KERNEL::Exception)
4634         {
4635           int meshId,arrId,arrIdInField,fieldId;
4636           self->getIdsOnTimeRight(tm,meshId,arrId,arrIdInField,fieldId);
4637           PyObject *res=PyList_New(4);
4638           PyList_SetItem(res,0,PyInt_FromLong(meshId));
4639           PyList_SetItem(res,1,PyInt_FromLong(arrId));
4640           PyList_SetItem(res,2,PyInt_FromLong(arrIdInField));
4641           PyList_SetItem(res,3,PyInt_FromLong(fieldId));
4642           return res;
4643         }
4644
4645         PyObject *getIdsOnTimeLeft(double tm) const throw(INTERP_KERNEL::Exception)
4646         {
4647           int meshId,arrId,arrIdInField,fieldId;
4648           self->getIdsOnTimeLeft(tm,meshId,arrId,arrIdInField,fieldId);
4649           PyObject *res=PyList_New(4);
4650           PyList_SetItem(res,0,PyInt_FromLong(meshId));
4651           PyList_SetItem(res,1,PyInt_FromLong(arrId));
4652           PyList_SetItem(res,2,PyInt_FromLong(arrIdInField));
4653           PyList_SetItem(res,3,PyInt_FromLong(fieldId));
4654           return res;
4655         }
4656       }
4657   };
4658
4659   class MEDCouplingFieldOverTime : public MEDCouplingMultiFields
4660   {
4661   public:
4662     double getTimeTolerance() const throw(INTERP_KERNEL::Exception);
4663     MEDCouplingDefinitionTime getDefinitionTimeZone() const;
4664     
4665     %extend
4666       {
4667         MEDCouplingFieldOverTime(PyObject *li) throw(INTERP_KERNEL::Exception)
4668           {
4669             std::vector<const ParaMEDMEM::MEDCouplingFieldDouble *> tmp;
4670             convertFromPyObjVectorOfObj<const ParaMEDMEM::MEDCouplingFieldDouble *>(li,SWIGTYPE_p_ParaMEDMEM__MEDCouplingFieldDouble,"MEDCouplingFieldDouble",tmp);
4671             int sz=tmp.size();
4672             std::vector<MEDCouplingFieldDouble *> fs(sz);
4673             for(int i=0;i<sz;i++)
4674               fs[i]=const_cast<MEDCouplingFieldDouble *>(tmp[i]);
4675             return MEDCouplingFieldOverTime::New(fs);
4676           }
4677         std::string __str__() const throw(INTERP_KERNEL::Exception)
4678           {
4679             return self->simpleRepr();
4680           }
4681         static MEDCouplingFieldOverTime *New(PyObject *li) throw(INTERP_KERNEL::Exception)
4682         {
4683           std::vector<const ParaMEDMEM::MEDCouplingFieldDouble *> tmp;
4684           convertFromPyObjVectorOfObj<const ParaMEDMEM::MEDCouplingFieldDouble *>(li,SWIGTYPE_p_ParaMEDMEM__MEDCouplingFieldDouble,"MEDCouplingFieldDouble",tmp);
4685            int sz=tmp.size();
4686            std::vector<MEDCouplingFieldDouble *> fs(sz);
4687            for(int i=0;i<sz;i++)
4688              fs[i]=const_cast<MEDCouplingFieldDouble *>(tmp[i]);
4689            return MEDCouplingFieldOverTime::New(fs);
4690          }
4691       }
4692   };
4693 }
4694
4695 %pythoncode %{
4696 import os
4697 __filename=os.environ.get('PYTHONSTARTUP')
4698 if __filename and os.path.isfile(__filename):
4699   execfile(__filename)
4700   pass
4701 %}