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