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