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