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