Salome HOME
Correct error in wrapping
[tools/medcoupling.git] / src / MEDCoupling_Swig / MEDCouplingCommon.i
1 // Copyright (C) 2007-2016  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, or (at your option) any later version.
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 // Author : Anthony Geay (CEA/DEN)
20
21 %module MEDCoupling
22
23 #ifdef WITH_DOCSTRINGS
24 %include MEDCoupling_doc.i
25 #endif
26
27 %include std_vector.i
28 %include std_string.i
29
30 %{
31 #include "MEDCouplingMemArray.hxx"
32 #include "MEDCouplingUMesh.hxx"
33 #include "MEDCouplingMappedExtrudedMesh.hxx"
34 #include "MEDCouplingCMesh.hxx"
35 #include "MEDCouplingIMesh.hxx"
36 #include "MEDCouplingCurveLinearMesh.hxx"
37 #include "MEDCoupling1GTUMesh.hxx"
38 #include "MEDCouplingField.hxx"
39 #include "MEDCouplingFieldDouble.hxx"
40 #include "MEDCouplingFieldInt.hxx"
41 #include "MEDCouplingFieldFloat.hxx"
42 #include "MEDCouplingFieldTemplate.hxx"
43 #include "MEDCouplingGaussLocalization.hxx"
44 #include "MCAuto.hxx"
45 #include "MEDCouplingMultiFields.hxx"
46 #include "MEDCouplingFieldOverTime.hxx"
47 #include "MEDCouplingDefinitionTime.hxx"
48 #include "MEDCouplingFieldDiscretization.hxx"
49 #include "MEDCouplingCartesianAMRMesh.hxx"
50 #include "MEDCouplingAMRAttribute.hxx"
51 #include "MEDCouplingMatrix.hxx"
52 #include "MEDCouplingPartDefinition.hxx"
53 #include "MEDCouplingSkyLineArray.hxx"
54 #include "MEDCouplingTypemaps.i"
55
56 #include "InterpKernelAutoPtr.hxx"
57 #include "BoxSplittingOptions.hxx"
58
59 using namespace MEDCoupling;
60 using namespace INTERP_KERNEL;
61
62 %}
63
64 %template(ivec) std::vector<int>;
65 %template(dvec) std::vector<double>;
66 %template(svec) std::vector<std::string>;
67
68 ////////////////////
69 %typemap(out) MEDCoupling::MEDCouplingMesh*
70 {
71   $result=convertMesh($1,$owner);
72 }
73
74 %typemap(out) MEDCouplingMesh*
75 {
76   $result=convertMesh($1,$owner);
77 }
78 //$$$$$$$$$$$$$$$$$$
79
80 ////////////////////
81 %typemap(out) MEDCoupling::MEDCouplingPointSet*
82 {
83   $result=convertMesh($1,$owner);
84 }
85
86 %typemap(out) MEDCouplingPointSet*
87 {
88   $result=convertMesh($1,$owner);
89 }
90 //$$$$$$$$$$$$$$$$$$
91
92 ////////////////////
93 %typemap(out) MEDCouplingCartesianAMRPatchGen*
94 {
95   $result=convertCartesianAMRPatch($1,$owner);
96 }
97 //$$$$$$$$$$$$$$$$$$
98
99 ////////////////////
100 %typemap(out) MEDCouplingCartesianAMRMeshGen*
101 {
102   $result=convertCartesianAMRMesh($1,$owner);
103 }
104 //$$$$$$$$$$$$$$$$$$
105
106 ////////////////////
107 %typemap(out) MEDCouplingDataForGodFather*
108 {
109   $result=convertDataForGodFather($1,$owner);
110 }
111 //$$$$$$$$$$$$$$$$$$
112
113 ////////////////////
114 %typemap(out) MEDCoupling::MEDCoupling1GTUMesh*
115 {
116   $result=convertMesh($1,$owner);
117 }
118
119 %typemap(out) MEDCoupling1GTUMesh*
120 {
121   $result=convertMesh($1,$owner);
122 }
123 //$$$$$$$$$$$$$$$$$$
124
125 ////////////////////
126 %typemap(out) MEDCoupling::MEDCouplingStructuredMesh*
127 {
128   $result=convertMesh($1,$owner);
129 }
130
131 %typemap(out) MEDCouplingStructuredMesh*
132 {
133   $result=convertMesh($1,$owner);
134 }
135 //$$$$$$$$$$$$$$$$$$
136
137 ////////////////////
138 %typemap(out) MEDCoupling::MEDCouplingFieldDiscretization*
139 {
140   $result=convertFieldDiscretization($1,$owner);
141 }
142
143 %typemap(out) MEDCouplingFieldDiscretization*
144 {
145   $result=convertFieldDiscretization($1,$owner);
146 }
147 //$$$$$$$$$$$$$$$$$$
148
149 ////////////////////
150 %typemap(out) MEDCoupling::MEDCouplingMultiFields*
151 {
152   $result=convertMultiFields($1,$owner);
153 }
154
155 %typemap(out) MEDCouplingMultiFields*
156 {
157   $result=convertMultiFields($1,$owner);
158 }
159 //$$$$$$$$$$$$$$$$$$
160
161 ////////////////////
162 %typemap(out) MEDCoupling::PartDefinition*
163 {
164   $result=convertPartDefinition($1,$owner);
165 }
166
167 %typemap(out) PartDefinition*
168 {
169   $result=convertPartDefinition($1,$owner);
170 }
171 //$$$$$$$$$$$$$$$$$$
172
173 #ifdef WITH_NUMPY
174 %init %{ import_array(); %}
175 #endif
176
177 %init %{ initializeMe(); %}
178
179 %feature("autodoc", "1");
180 %feature("docstring");
181
182 %newobject MEDCoupling::MEDCouplingField::buildMeasureField;
183 %newobject MEDCoupling::MEDCouplingField::getLocalizationOfDiscr;
184 %newobject MEDCoupling::MEDCouplingField::computeTupleIdsToSelectFromCellIds;
185 %newobject MEDCoupling::MEDCouplingFieldDouble::New;
186 %newobject MEDCoupling::MEDCouplingFieldDouble::getArray;
187 %newobject MEDCoupling::MEDCouplingFieldDouble::getEndArray;
188 %newobject MEDCoupling::MEDCouplingFieldDouble::MergeFields;
189 %newobject MEDCoupling::MEDCouplingFieldDouble::MeldFields;
190 %newobject MEDCoupling::MEDCouplingFieldDouble::convertToIntField;
191 %newobject MEDCoupling::MEDCouplingFieldDouble::doublyContractedProduct;
192 %newobject MEDCoupling::MEDCouplingFieldDouble::determinant;
193 %newobject MEDCoupling::MEDCouplingFieldDouble::eigenValues;
194 %newobject MEDCoupling::MEDCouplingFieldDouble::eigenVectors;
195 %newobject MEDCoupling::MEDCouplingFieldDouble::inverse;
196 %newobject MEDCoupling::MEDCouplingFieldDouble::trace;
197 %newobject MEDCoupling::MEDCouplingFieldDouble::deviator;
198 %newobject MEDCoupling::MEDCouplingFieldDouble::magnitude;
199 %newobject MEDCoupling::MEDCouplingFieldDouble::maxPerTuple;
200 %newobject MEDCoupling::MEDCouplingFieldDouble::keepSelectedComponents;
201 %newobject MEDCoupling::MEDCouplingFieldDouble::extractSlice3D;
202 %newobject MEDCoupling::MEDCouplingFieldDouble::DotFields;
203 %newobject MEDCoupling::MEDCouplingFieldDouble::dot;
204 %newobject MEDCoupling::MEDCouplingFieldDouble::CrossProductFields;
205 %newobject MEDCoupling::MEDCouplingFieldDouble::crossProduct;
206 %newobject MEDCoupling::MEDCouplingFieldDouble::MaxFields;
207 %newobject MEDCoupling::MEDCouplingFieldDouble::max;
208 %newobject MEDCoupling::MEDCouplingFieldDouble::MinFields;
209 %newobject MEDCoupling::MEDCouplingFieldDouble::AddFields;
210 %newobject MEDCoupling::MEDCouplingFieldDouble::SubstractFields;
211 %newobject MEDCoupling::MEDCouplingFieldDouble::MultiplyFields;
212 %newobject MEDCoupling::MEDCouplingFieldDouble::DivideFields;
213 %newobject MEDCoupling::MEDCouplingFieldDouble::min;
214 %newobject MEDCoupling::MEDCouplingFieldDouble::negate;
215 %newobject MEDCoupling::MEDCouplingFieldDouble::findIdsInRange;
216 %newobject MEDCoupling::MEDCouplingFieldDouble::buildSubPart;
217 %newobject MEDCoupling::MEDCouplingFieldDouble::buildSubPartRange;
218 %newobject MEDCoupling::MEDCouplingFieldDouble::voronoize;
219 %newobject MEDCoupling::MEDCouplingFieldDouble::convertQuadraticCellsToLinear;
220 %newobject MEDCoupling::MEDCouplingFieldDouble::__getitem__;
221 %newobject MEDCoupling::MEDCouplingFieldDouble::__neg__;
222 %newobject MEDCoupling::MEDCouplingFieldDouble::__add__;
223 %newobject MEDCoupling::MEDCouplingFieldDouble::__sub__;
224 %newobject MEDCoupling::MEDCouplingFieldDouble::__mul__;
225 %newobject MEDCoupling::MEDCouplingFieldDouble::__div__;
226 %newobject MEDCoupling::MEDCouplingFieldDouble::__pow__;
227 %newobject MEDCoupling::MEDCouplingFieldDouble::__radd__;
228 %newobject MEDCoupling::MEDCouplingFieldDouble::__rsub__;
229 %newobject MEDCoupling::MEDCouplingFieldDouble::__rmul__;
230 %newobject MEDCoupling::MEDCouplingFieldDouble::__rdiv__;
231 %newobject MEDCoupling::MEDCouplingFieldDouble::clone;
232 %newobject MEDCoupling::MEDCouplingFieldDouble::cloneWithMesh;
233 %newobject MEDCoupling::MEDCouplingFieldDouble::deepCopy;
234 %newobject MEDCoupling::MEDCouplingFieldDouble::buildNewTimeReprFromThis;
235 %newobject MEDCoupling::MEDCouplingFieldDouble::nodeToCellDiscretization;
236 %newobject MEDCoupling::MEDCouplingFieldDouble::cellToNodeDiscretization;
237 %newobject MEDCoupling::MEDCouplingFieldDouble::getValueOnMulti;
238 %newobject MEDCoupling::MEDCouplingFieldDouble::computeVectorFieldCyl;
239 %newobject MEDCoupling::MEDCouplingFieldInt::New;
240 %newobject MEDCoupling::MEDCouplingFieldInt::convertToDblField;
241 %newobject MEDCoupling::MEDCouplingFieldInt::getArray;
242 %newobject MEDCoupling::MEDCouplingFieldInt::deepCopy;
243 %newobject MEDCoupling::MEDCouplingFieldInt::clone;
244 %newobject MEDCoupling::MEDCouplingFieldInt::cloneWithMesh;
245 %newobject MEDCoupling::MEDCouplingFieldInt::buildSubPart;
246 %newobject MEDCoupling::MEDCouplingFieldInt::buildSubPartRange;
247 %newobject MEDCoupling::MEDCouplingFieldInt::__getitem__;
248 %newobject MEDCoupling::MEDCouplingFieldFloat::New;
249 %newobject MEDCoupling::MEDCouplingFieldFloat::convertToDblField;
250 %newobject MEDCoupling::MEDCouplingFieldFloat::getArray;
251 %newobject MEDCoupling::MEDCouplingFieldFloat::deepCopy;
252 %newobject MEDCoupling::MEDCouplingFieldFloat::clone;
253 %newobject MEDCoupling::MEDCouplingFieldFloat::cloneWithMesh;
254 %newobject MEDCoupling::MEDCouplingFieldFloat::buildSubPart;
255 %newobject MEDCoupling::MEDCouplingFieldFloat::buildSubPartRange;
256 %newobject MEDCoupling::MEDCouplingFieldFloat::__getitem__;
257 %newobject MEDCoupling::MEDCouplingFieldTemplate::New;
258 %newobject MEDCoupling::MEDCouplingMesh::deepCopy;
259 %newobject MEDCoupling::MEDCouplingMesh::clone;
260 %newobject MEDCoupling::MEDCouplingMesh::checkDeepEquivalOnSameNodesWith;
261 %newobject MEDCoupling::MEDCouplingMesh::checkTypeConsistencyAndContig;
262 %newobject MEDCoupling::MEDCouplingMesh::computeNbOfNodesPerCell;
263 %newobject MEDCoupling::MEDCouplingMesh::computeNbOfFacesPerCell;
264 %newobject MEDCoupling::MEDCouplingMesh::computeEffectiveNbOfNodesPerCell;
265 %newobject MEDCoupling::MEDCouplingMesh::buildPartRange;
266 %newobject MEDCoupling::MEDCouplingMesh::giveCellsWithType;
267 %newobject MEDCoupling::MEDCouplingMesh::getCoordinatesAndOwner;
268 %newobject MEDCoupling::MEDCouplingMesh::computeCellCenterOfMass;
269 %newobject MEDCoupling::MEDCouplingMesh::computeIsoBarycenterOfNodesPerCell;
270 %newobject MEDCoupling::MEDCouplingMesh::buildOrthogonalField;
271 %newobject MEDCoupling::MEDCouplingMesh::getCellIdsFullyIncludedInNodeIds;
272 %newobject MEDCoupling::MEDCouplingMesh::mergeMyselfWith;
273 %newobject MEDCoupling::MEDCouplingMesh::fillFromAnalytic;
274 %newobject MEDCoupling::MEDCouplingMesh::fillFromAnalyticCompo;
275 %newobject MEDCoupling::MEDCouplingMesh::fillFromAnalyticNamedCompo;
276 %newobject MEDCoupling::MEDCouplingMesh::getMeasureField;
277 %newobject MEDCoupling::MEDCouplingMesh::simplexize;
278 %newobject MEDCoupling::MEDCouplingMesh::buildUnstructured;
279 %newobject MEDCoupling::MEDCouplingMesh::MergeMeshes;
280 %newobject MEDCoupling::MEDCouplingMesh::getDirectAccessOfCoordsArrIfInStructure;
281 %newobject MEDCoupling::MEDCouplingPointSet::zipCoordsTraducer;
282 %newobject MEDCoupling::MEDCouplingPointSet::getCellsInBoundingBox;
283 %newobject MEDCoupling::MEDCouplingPointSet::findBoundaryNodes;
284 %newobject MEDCoupling::MEDCouplingPointSet::buildBoundaryMesh;
285 %newobject MEDCoupling::MEDCouplingPointSet::MergeNodesArray;
286 %newobject MEDCoupling::MEDCouplingPointSet::buildPartOfMySelfSlice;
287 %newobject MEDCoupling::MEDCouplingPointSet::BuildInstanceFromMeshType;
288 %newobject MEDCoupling::MEDCouplingPointSet::zipConnectivityTraducer;
289 %newobject MEDCoupling::MEDCouplingPointSet::mergeMyselfWithOnSameCoords;
290 %newobject MEDCoupling::MEDCouplingPointSet::fillCellIdsToKeepFromNodeIds;
291 %newobject MEDCoupling::MEDCouplingPointSet::getCellIdsLyingOnNodes;
292 %newobject MEDCoupling::MEDCouplingPointSet::deepCopyConnectivityOnly;
293 %newobject MEDCoupling::MEDCouplingPointSet::getBoundingBoxForBBTree;
294 %newobject MEDCoupling::MEDCouplingPointSet::computeFetchedNodeIds;
295 %newobject MEDCoupling::MEDCouplingPointSet::ComputeNbOfInteractionsWithSrcCells;
296 %newobject MEDCoupling::MEDCouplingPointSet::computeDiameterField;
297 %newobject MEDCoupling::MEDCouplingPointSet::__getitem__;
298 %newobject MEDCoupling::MEDCouplingUMesh::New;
299 %newobject MEDCoupling::MEDCouplingUMesh::getNodalConnectivity;
300 %newobject MEDCoupling::MEDCouplingUMesh::getNodalConnectivityIndex;
301 %newobject MEDCoupling::MEDCouplingUMesh::__iter__;
302 %newobject MEDCoupling::MEDCouplingUMesh::cellsByType;
303 %newobject MEDCoupling::MEDCouplingUMesh::buildDescendingConnectivity;
304 %newobject MEDCoupling::MEDCouplingUMesh::buildDescendingConnectivity2;
305 %newobject MEDCoupling::MEDCouplingUMesh::explode3DMeshTo1D;
306 %newobject MEDCoupling::MEDCouplingUMesh::explodeMeshIntoMicroEdges;
307 %newobject MEDCoupling::MEDCouplingUMesh::buildExtrudedMesh;
308 %newobject MEDCoupling::MEDCouplingUMesh::buildSpreadZonesWithPoly;
309 %newobject MEDCoupling::MEDCouplingUMesh::MergeUMeshes;
310 %newobject MEDCoupling::MEDCouplingUMesh::MergeUMeshesOnSameCoords;
311 %newobject MEDCoupling::MEDCouplingUMesh::ComputeSpreadZoneGradually;
312 %newobject MEDCoupling::MEDCouplingUMesh::ComputeSpreadZoneGraduallyFromSeed;
313 %newobject MEDCoupling::MEDCouplingUMesh::buildNewNumberingFromCommNodesFrmt;
314 %newobject MEDCoupling::MEDCouplingUMesh::conformize2D;
315 %newobject MEDCoupling::MEDCouplingUMesh::conformize3D;
316 %newobject MEDCoupling::MEDCouplingUMesh::colinearize2D;
317 %newobject MEDCoupling::MEDCouplingUMesh::rearrange2ConsecutiveCellTypes;
318 %newobject MEDCoupling::MEDCouplingUMesh::sortCellsInMEDFileFrmt;
319 %newobject MEDCoupling::MEDCouplingUMesh::getRenumArrForMEDFileFrmt;
320 %newobject MEDCoupling::MEDCouplingUMesh::convertCellArrayPerGeoType;
321 %newobject MEDCoupling::MEDCouplingUMesh::getRenumArrForConsecutiveCellTypesSpec;
322 %newobject MEDCoupling::MEDCouplingUMesh::buildDirectionVectorField;
323 %newobject MEDCoupling::MEDCouplingUMesh::convertLinearCellsToQuadratic;
324 %newobject MEDCoupling::MEDCouplingUMesh::getEdgeRatioField;
325 %newobject MEDCoupling::MEDCouplingUMesh::getAspectRatioField;
326 %newobject MEDCoupling::MEDCouplingUMesh::getWarpField;
327 %newobject MEDCoupling::MEDCouplingUMesh::getSkewField;
328 %newobject MEDCoupling::MEDCouplingUMesh::getPartBarycenterAndOwner;
329 %newobject MEDCoupling::MEDCouplingUMesh::computePlaneEquationOf3DFaces;
330 %newobject MEDCoupling::MEDCouplingUMesh::getPartMeasureField;
331 %newobject MEDCoupling::MEDCouplingUMesh::buildPartOrthogonalField;
332 %newobject MEDCoupling::MEDCouplingUMesh::keepCellIdsByType;
333 %newobject MEDCoupling::MEDCouplingUMesh::Build0DMeshFromCoords;
334 %newobject MEDCoupling::MEDCouplingUMesh::Build1DMeshFromCoords;
335 %newobject MEDCoupling::MEDCouplingUMesh::findAndCorrectBadOriented3DExtrudedCells;
336 %newobject MEDCoupling::MEDCouplingUMesh::findAndCorrectBadOriented3DCells;
337 %newobject MEDCoupling::MEDCouplingUMesh::convertIntoSingleGeoTypeMesh;
338 %newobject MEDCoupling::MEDCouplingUMesh::convertNodalConnectivityToStaticGeoTypeMesh;
339 %newobject MEDCoupling::MEDCouplingUMesh::findCellIdsOnBoundary;
340 %newobject MEDCoupling::MEDCouplingUMesh::computeSkin;
341 %newobject MEDCoupling::MEDCouplingUMesh::buildSetInstanceFromThis;
342 %newobject MEDCoupling::MEDCouplingUMesh::getCellIdsCrossingPlane;
343 %newobject MEDCoupling::MEDCouplingUMesh::convexEnvelop2D;
344 %newobject MEDCoupling::MEDCouplingUMesh::ComputeRangesFromTypeDistribution;
345 %newobject MEDCoupling::MEDCouplingUMesh::buildUnionOf2DMesh;
346 %newobject MEDCoupling::MEDCouplingUMesh::buildUnionOf3DMesh;
347 %newobject MEDCoupling::MEDCouplingUMesh::generateGraph;
348 %newobject MEDCoupling::MEDCouplingUMesh::orderConsecutiveCells1D;
349 %newobject MEDCoupling::MEDCouplingUMesh::clipSingle3DCellByPlane;
350 %newobject MEDCoupling::MEDCouplingUMesh::getBoundingBoxForBBTreeFast;
351 %newobject MEDCoupling::MEDCouplingUMesh::getBoundingBoxForBBTree2DQuadratic;
352 %newobject MEDCoupling::MEDCouplingUMesh::getBoundingBoxForBBTree1DQuadratic;
353 %newobject MEDCoupling::MEDCouplingUMeshCellByTypeEntry::__iter__;
354 %newobject MEDCoupling::MEDCouplingUMeshCellEntry::__iter__;
355 %newobject MEDCoupling::MEDCoupling1GTUMesh::New;
356 %newobject MEDCoupling::MEDCoupling1GTUMesh::getNodalConnectivity;
357 %newobject MEDCoupling::MEDCoupling1GTUMesh::AggregateOnSameCoordsToUMesh;
358 %newobject MEDCoupling::MEDCoupling1SGTUMesh::New;
359 %newobject MEDCoupling::MEDCoupling1SGTUMesh::buildSetInstanceFromThis;
360 %newobject MEDCoupling::MEDCoupling1SGTUMesh::computeDualMesh;
361 %newobject MEDCoupling::MEDCoupling1SGTUMesh::explodeEachHexa8To6Quad4;
362 %newobject MEDCoupling::MEDCoupling1SGTUMesh::sortHexa8EachOther;
363 %newobject MEDCoupling::MEDCoupling1SGTUMesh::Merge1SGTUMeshes;
364 %newobject MEDCoupling::MEDCoupling1SGTUMesh::Merge1SGTUMeshesOnSameCoords;
365 %newobject MEDCoupling::MEDCoupling1DGTUMesh::New;
366 %newobject MEDCoupling::MEDCoupling1DGTUMesh::getNodalConnectivityIndex;
367 %newobject MEDCoupling::MEDCoupling1DGTUMesh::buildSetInstanceFromThis;
368 %newobject MEDCoupling::MEDCoupling1DGTUMesh::Merge1DGTUMeshes;
369 %newobject MEDCoupling::MEDCoupling1DGTUMesh::Merge1DGTUMeshesOnSameCoords;
370 %newobject MEDCoupling::MEDCouplingMappedExtrudedMesh::New;
371 %newobject MEDCoupling::MEDCouplingMappedExtrudedMesh::build3DUnstructuredMesh;
372 %newobject MEDCoupling::MEDCouplingStructuredMesh::buildStructuredSubPart;
373 %newobject MEDCoupling::MEDCouplingStructuredMesh::build1SGTUnstructured;
374 %newobject MEDCoupling::MEDCouplingStructuredMesh::build1SGTSubLevelMesh;
375 %newobject MEDCoupling::MEDCouplingStructuredMesh::BuildExplicitIdsFrom;
376 %newobject MEDCoupling::MEDCouplingStructuredMesh::ExtractFieldOfDoubleFrom;
377 %newobject MEDCoupling::MEDCouplingStructuredMesh::Build1GTNodalConnectivity;
378 %newobject MEDCoupling::MEDCouplingStructuredMesh::Build1GTNodalConnectivityOfSubLevelMesh;
379 %newobject MEDCoupling::MEDCouplingStructuredMesh::ComputeCornersGhost;
380 %newobject MEDCoupling::MEDCouplingCMesh::New;
381 %newobject MEDCoupling::MEDCouplingCMesh::getCoordsAt;
382 %newobject MEDCoupling::MEDCouplingCMesh::buildCurveLinear;
383 %newobject MEDCoupling::MEDCouplingIMesh::New;
384 %newobject MEDCoupling::MEDCouplingIMesh::asSingleCell;
385 %newobject MEDCoupling::MEDCouplingIMesh::buildWithGhost;
386 %newobject MEDCoupling::MEDCouplingIMesh::convertToCartesian;
387 %newobject MEDCoupling::MEDCouplingCurveLinearMesh::New;
388 %newobject MEDCoupling::MEDCouplingCurveLinearMesh::getCoords;
389 %newobject MEDCoupling::MEDCouplingMultiFields::New;
390 %newobject MEDCoupling::MEDCouplingMultiFields::deepCopy;
391 %newobject MEDCoupling::MEDCouplingFieldOverTime::New;
392 %newobject MEDCoupling::MEDCouplingCartesianAMRPatchGen::getMesh;
393 %newobject MEDCoupling::MEDCouplingCartesianAMRPatchGen::__getitem__;
394 %newobject MEDCoupling::MEDCouplingCartesianAMRMeshGen::deepCopy;
395 %newobject MEDCoupling::MEDCouplingCartesianAMRMeshGen::buildUnstructured;
396 %newobject MEDCoupling::MEDCouplingCartesianAMRMeshGen::extractGhostFrom;
397 %newobject MEDCoupling::MEDCouplingCartesianAMRMeshGen::buildMeshFromPatchEnvelop;
398 %newobject MEDCoupling::MEDCouplingCartesianAMRMeshGen::buildMeshOfDirectChildrenOnly;
399 %newobject MEDCoupling::MEDCouplingCartesianAMRMeshGen::getImageMesh;
400 %newobject MEDCoupling::MEDCouplingCartesianAMRMeshGen::getGodFather;
401 %newobject MEDCoupling::MEDCouplingCartesianAMRMeshGen::getFather;
402 %newobject MEDCoupling::MEDCouplingCartesianAMRMeshGen::getPatch;
403 %newobject MEDCoupling::MEDCouplingCartesianAMRMeshGen::createCellFieldOnPatch;
404 %newobject MEDCoupling::MEDCouplingCartesianAMRMeshGen::findPatchesInTheNeighborhoodOf;
405 %newobject MEDCoupling::MEDCouplingCartesianAMRMeshGen::getPatchAtPosition;
406 %newobject MEDCoupling::MEDCouplingCartesianAMRMeshGen::getMeshAtPosition;
407 %newobject MEDCoupling::MEDCouplingCartesianAMRMeshGen::__getitem__;
408 %newobject MEDCoupling::MEDCouplingCartesianAMRMesh::New;
409 %newobject MEDCoupling::MEDCouplingDataForGodFather::getMyGodFather;
410 %newobject MEDCoupling::MEDCouplingAMRAttribute::New;
411 %newobject MEDCoupling::MEDCouplingAMRAttribute::deepCopy;
412 %newobject MEDCoupling::MEDCouplingAMRAttribute::deepCpyWithoutGodFather;
413 %newobject MEDCoupling::MEDCouplingAMRAttribute::getFieldOn;
414 %newobject MEDCoupling::MEDCouplingAMRAttribute::projectTo;
415 %newobject MEDCoupling::MEDCouplingAMRAttribute::buildCellFieldOnRecurseWithoutOverlapWithoutGhost;
416 %newobject MEDCoupling::MEDCouplingAMRAttribute::buildCellFieldOnWithGhost;
417 %newobject MEDCoupling::MEDCouplingAMRAttribute::buildCellFieldOnWithoutGhost;
418 %newobject MEDCoupling::DenseMatrix::New;
419 %newobject MEDCoupling::DenseMatrix::deepCopy;
420 %newobject MEDCoupling::DenseMatrix::shallowCpy;
421 %newobject MEDCoupling::DenseMatrix::getData;
422 %newobject MEDCoupling::DenseMatrix::matVecMult;
423 %newobject MEDCoupling::DenseMatrix::MatVecMult;
424 %newobject MEDCoupling::DenseMatrix::__add__;
425 %newobject MEDCoupling::DenseMatrix::__sub__;
426 %newobject MEDCoupling::DenseMatrix::__mul__;
427 %newobject MEDCoupling::MEDCouplingGaussLocalization::localizePtsInRefCooForEachCell;
428 %newobject MEDCoupling::MEDCouplingGaussLocalization::buildRefCell;
429 %newobject MEDCoupling::MEDCouplingSkyLineArray::BuildFromPolyhedronConn;
430 %newobject MEDCoupling::MEDCouplingSkyLineArray::getSuperIndexArray;
431 %newobject MEDCoupling::MEDCouplingSkyLineArray::getIndexArray;
432 %newobject MEDCoupling::MEDCouplingSkyLineArray::getValuesArray;
433
434 %feature("unref") MEDCouplingPointSet "$this->decrRef();"
435 %feature("unref") MEDCouplingMesh "$this->decrRef();"
436 %feature("unref") MEDCouplingUMesh "$this->decrRef();"
437 %feature("unref") MEDCoupling1GTUMesh "$this->decrRef();"
438 %feature("unref") MEDCoupling1SGTUMesh "$this->decrRef();"
439 %feature("unref") MEDCoupling1DGTUMesh "$this->decrRef();"
440 %feature("unref") MEDCouplingMappedExtrudedMesh "$this->decrRef();"
441 %feature("unref") MEDCouplingCMesh "$this->decrRef();"
442 %feature("unref") MEDCouplingIMesh "$this->decrRef();"
443 %feature("unref") MEDCouplingCurveLinearMesh "$this->decrRef();"
444 %feature("unref") MEDCouplingField "$this->decrRef();"
445 %feature("unref") MEDCouplingFieldDiscretizationP0 "$this->decrRef();"
446 %feature("unref") MEDCouplingFieldDiscretizationP1 "$this->decrRef();"
447 %feature("unref") MEDCouplingFieldDiscretizationGauss "$this->decrRef();"
448 %feature("unref") MEDCouplingFieldDiscretizationGaussNE "$this->decrRef();"
449 %feature("unref") MEDCouplingFieldDiscretizationKriging "$this->decrRef();"
450 %feature("unref") MEDCouplingFieldDouble "$this->decrRef();"
451 %feature("unref") MEDCouplingMultiFields "$this->decrRef();"
452 %feature("unref") MEDCouplingFieldTemplate "$this->decrRef();"
453 %feature("unref") MEDCouplingMultiFields "$this->decrRef();"
454 %feature("unref") MEDCouplingCartesianAMRMeshGen "$this->decrRef();"
455 %feature("unref") MEDCouplingCartesianAMRMesh "$this->decrRef();"
456 %feature("unref") MEDCouplingCartesianAMRMeshSub "$this->decrRef();"
457 %feature("unref") MEDCouplingCartesianAMRPatchGen "$this->decrRef();"
458 %feature("unref") MEDCouplingCartesianAMRPatchGF "$this->decrRef();"
459 %feature("unref") MEDCouplingCartesianAMRPatch "$this->decrRef();"
460 %feature("unref") MEDCouplingDataForGodFather "$this->decrRef();"
461 %feature("unref") MEDCouplingAMRAttribute "$this->decrRef();"
462 %feature("unref") DenseMatrix "$this->decrRef();"
463 %feature("unref") MEDCouplingSkyLineArray "$this->decrRef();"
464
465 %rename(assign) *::operator=;
466 %ignore MEDCoupling::MEDCouplingGaussLocalization::pushTinySerializationIntInfo;
467 %ignore MEDCoupling::MEDCouplingGaussLocalization::pushTinySerializationDblInfo;
468 %ignore MEDCoupling::MEDCouplingGaussLocalization::fillWithValues;
469 %ignore MEDCoupling::MEDCouplingGaussLocalization::buildNewInstanceFromTinyInfo;
470
471 %nodefaultctor;
472
473 %rename (InterpKernelException) INTERP_KERNEL::Exception;
474
475 %include "MEDCouplingRefCountObject.i"
476 %include "MEDCouplingMemArray.i"
477
478 %{
479   void initializeMe()
480   {// AGY : here initialization of C++ traits in MEDCouplingDataArrayTypemaps.i for code factorization. Awful, I know, but no other solutions.
481     SWIGTITraits<double>::TI=SWIGTYPE_p_MEDCoupling__DataArrayDouble;
482     SWIGTITraits<float>::TI=SWIGTYPE_p_MEDCoupling__DataArrayFloat;
483     SWIGTITraits<int>::TI=SWIGTYPE_p_MEDCoupling__DataArrayInt;
484     SWIGTITraits<double>::TI_TUPLE=SWIGTYPE_p_MEDCoupling__DataArrayDoubleTuple;
485     SWIGTITraits<float>::TI_TUPLE=SWIGTYPE_p_MEDCoupling__DataArrayFloatTuple;
486     SWIGTITraits<int>::TI_TUPLE=SWIGTYPE_p_MEDCoupling__DataArrayIntTuple;
487   }
488 %}
489
490 namespace INTERP_KERNEL
491
492   /*!
493    * \class BoxSplittingOptions
494    * Class defining the options for box splitting used for AMR algorithm like creation of patches following a criterion.
495    */
496   class BoxSplittingOptions
497   {
498   public:
499     BoxSplittingOptions();
500     void init() throw(INTERP_KERNEL::Exception);
501     double getEfficiencyGoal() const throw(INTERP_KERNEL::Exception);
502     void setEfficiencyGoal(double efficiency) throw(INTERP_KERNEL::Exception);
503     double getEfficiencyThreshold() const throw(INTERP_KERNEL::Exception);
504     void setEfficiencyThreshold(double efficiencyThreshold) throw(INTERP_KERNEL::Exception);
505     int getMinimumPatchLength() const throw(INTERP_KERNEL::Exception);
506     void setMinimumPatchLength(int minPatchLength) throw(INTERP_KERNEL::Exception);
507     int getMaximumPatchLength() const throw(INTERP_KERNEL::Exception);
508     void setMaximumPatchLength(int maxPatchLength) throw(INTERP_KERNEL::Exception);
509     int getMaximumNbOfCellsInPatch() const throw(INTERP_KERNEL::Exception);
510     void setMaximumNbOfCellsInPatch(int maxNbCellsInPatch) throw(INTERP_KERNEL::Exception);
511     void copyOptions(const BoxSplittingOptions & other) throw(INTERP_KERNEL::Exception);
512     std::string printOptions() const throw(INTERP_KERNEL::Exception);
513     %extend
514     {
515       std::string __str__() const throw(INTERP_KERNEL::Exception)
516       {
517         return self->printOptions();
518       }
519     }
520   };
521 }
522
523 namespace MEDCoupling
524 {
525   typedef enum
526     {
527       ON_CELLS = 0,
528       ON_NODES = 1,
529       ON_GAUSS_PT = 2,
530       ON_GAUSS_NE = 3,
531       ON_NODES_KR = 4
532     } TypeOfField;
533
534   typedef enum
535     {
536       NO_TIME = 4,
537       ONE_TIME = 5,
538       LINEAR_TIME = 6,
539       CONST_ON_TIME_INTERVAL = 7
540     } TypeOfTimeDiscretization;
541
542   typedef enum
543     {
544       UNSTRUCTURED = 5,
545       CARTESIAN = 7,
546       EXTRUDED = 8,
547       CURVE_LINEAR = 9,
548       SINGLE_STATIC_GEO_TYPE_UNSTRUCTURED = 10,
549       SINGLE_DYNAMIC_GEO_TYPE_UNSTRUCTURED = 11,
550       IMAGE_GRID = 12
551     } MEDCouplingMeshType;
552
553   class DataArrayInt;
554   class DataArrayDouble;
555   class MEDCouplingUMesh;
556   class MEDCouplingCMesh;
557   class MEDCouplingFieldDouble;
558
559   %extend RefCountObject
560   {
561     std::string getHiddenCppPointer() const
562     {
563       std::ostringstream oss; oss << "C++ Pointer address is : " << self;
564       return oss.str();
565     }
566   }
567
568   %extend MEDCouplingGaussLocalization
569   {
570     std::string __str__() const throw(INTERP_KERNEL::Exception)
571     {
572       return self->getStringRepr();
573     }
574
575     std::string __repr__() const throw(INTERP_KERNEL::Exception)
576     {
577       std::ostringstream oss; oss << "MEDCouplingGaussLocalization C++ instance at " << self << "." << std::endl;
578       oss << self->getStringRepr();
579       return oss.str();
580     }
581   }
582
583   //== MEDCouplingMesh
584   
585   class MEDCouplingMesh : public RefCountObject, public TimeLabel
586   {
587   public:
588     void setName(const std::string& name);
589     std::string getName() const;
590     void setDescription(const std::string& descr);
591     std::string getDescription() const;
592     void setTime(double val, int iteration, int order);
593     void setTimeUnit(const std::string& unit);
594     std::string getTimeUnit() const;
595     virtual MEDCouplingMeshType getType() const throw(INTERP_KERNEL::Exception);
596     bool isStructured() const throw(INTERP_KERNEL::Exception);
597     virtual MEDCouplingMesh *deepCopy() const throw(INTERP_KERNEL::Exception);
598     virtual MEDCouplingMesh *clone(bool recDeepCpy) const throw(INTERP_KERNEL::Exception);
599     virtual bool isEqual(const MEDCouplingMesh *other, double prec) const throw(INTERP_KERNEL::Exception);
600     virtual bool isEqualWithoutConsideringStr(const MEDCouplingMesh *other, double prec) const throw(INTERP_KERNEL::Exception);
601     virtual void checkFastEquivalWith(const MEDCouplingMesh *other, double prec) const throw(INTERP_KERNEL::Exception);
602     virtual void copyTinyStringsFrom(const MEDCouplingMesh *other) throw(INTERP_KERNEL::Exception);
603     virtual void copyTinyInfoFrom(const MEDCouplingMesh *other) throw(INTERP_KERNEL::Exception);
604     virtual void checkConsistencyLight() const throw(INTERP_KERNEL::Exception);
605     virtual void checkConsistency(double eps=1e-12) const throw(INTERP_KERNEL::Exception);
606     virtual int getNumberOfCells() const throw(INTERP_KERNEL::Exception);
607     virtual int getNumberOfNodes() const throw(INTERP_KERNEL::Exception);
608     virtual int getSpaceDimension() const throw(INTERP_KERNEL::Exception);
609     virtual int getMeshDimension() const throw(INTERP_KERNEL::Exception);
610     virtual DataArrayDouble *getCoordinatesAndOwner() const throw(INTERP_KERNEL::Exception);
611     virtual DataArrayDouble *computeCellCenterOfMass() const throw(INTERP_KERNEL::Exception);
612     virtual DataArrayDouble *computeIsoBarycenterOfNodesPerCell() const throw(INTERP_KERNEL::Exception);
613     virtual DataArrayInt *giveCellsWithType(INTERP_KERNEL::NormalizedCellType type) const throw(INTERP_KERNEL::Exception);
614     virtual DataArrayInt *computeNbOfNodesPerCell() const throw(INTERP_KERNEL::Exception);
615     virtual DataArrayInt *computeNbOfFacesPerCell() const throw(INTERP_KERNEL::Exception);
616     virtual DataArrayInt *computeEffectiveNbOfNodesPerCell() const throw(INTERP_KERNEL::Exception);
617     virtual MEDCouplingMesh *buildPartRange(int beginCellIds, int endCellIds, int stepCellIds) const throw(INTERP_KERNEL::Exception);
618     virtual int getNumberOfCellsWithType(INTERP_KERNEL::NormalizedCellType type) const throw(INTERP_KERNEL::Exception);
619     virtual INTERP_KERNEL::NormalizedCellType getTypeOfCell(int cellId) const throw(INTERP_KERNEL::Exception);
620     virtual std::string simpleRepr() const throw(INTERP_KERNEL::Exception);
621     virtual std::string advancedRepr() const throw(INTERP_KERNEL::Exception);
622     std::string writeVTK(const std::string& fileName, bool isBinary=true) const throw(INTERP_KERNEL::Exception);
623     virtual std::string getVTKFileExtension() const;
624     std::string getVTKFileNameOf(const std::string& fileName) const;
625     // tools
626     virtual MEDCouplingFieldDouble *getMeasureField(bool isAbs) const throw(INTERP_KERNEL::Exception);
627     virtual MEDCouplingFieldDouble *getMeasureFieldOnNode(bool isAbs) const throw(INTERP_KERNEL::Exception);
628     virtual MEDCouplingFieldDouble *fillFromAnalytic(TypeOfField t, int nbOfComp, const std::string& func) const throw(INTERP_KERNEL::Exception);
629     virtual MEDCouplingFieldDouble *fillFromAnalyticCompo(TypeOfField t, int nbOfComp, const std::string& func) const throw(INTERP_KERNEL::Exception);
630     virtual MEDCouplingFieldDouble *fillFromAnalyticNamedCompo(TypeOfField t, int nbOfComp, const std::vector<std::string>& varsOrder, const std::string& func) const throw(INTERP_KERNEL::Exception);
631     virtual MEDCouplingFieldDouble *buildOrthogonalField() const throw(INTERP_KERNEL::Exception);
632     virtual MEDCouplingUMesh *buildUnstructured() const throw(INTERP_KERNEL::Exception);
633     virtual MEDCouplingMesh *mergeMyselfWith(const MEDCouplingMesh *other) const throw(INTERP_KERNEL::Exception);
634     virtual bool areCompatibleForMerge(const MEDCouplingMesh *other) const throw(INTERP_KERNEL::Exception);
635     virtual DataArrayInt *simplexize(int policy) throw(INTERP_KERNEL::Exception);
636     virtual void unserialization(const std::vector<double>& tinyInfoD, const std::vector<int>& tinyInfo, const DataArrayInt *a1, DataArrayDouble *a2, const std::vector<std::string>& littleStrings) throw(INTERP_KERNEL::Exception);
637     static MEDCouplingMesh *MergeMeshes(const MEDCouplingMesh *mesh1, const MEDCouplingMesh *mesh2) throw(INTERP_KERNEL::Exception);
638     static bool IsStaticGeometricType(INTERP_KERNEL::NormalizedCellType type) throw(INTERP_KERNEL::Exception);
639     static bool IsLinearGeometricType(INTERP_KERNEL::NormalizedCellType type) throw(INTERP_KERNEL::Exception);
640     static INTERP_KERNEL::NormalizedCellType GetCorrespondingPolyType(INTERP_KERNEL::NormalizedCellType type) throw(INTERP_KERNEL::Exception);
641     static int GetNumberOfNodesOfGeometricType(INTERP_KERNEL::NormalizedCellType type) throw(INTERP_KERNEL::Exception);
642     static int GetDimensionOfGeometricType(INTERP_KERNEL::NormalizedCellType type) throw(INTERP_KERNEL::Exception);
643     static const char *GetReprOfGeometricType(INTERP_KERNEL::NormalizedCellType type) throw(INTERP_KERNEL::Exception);
644     %extend
645        {
646          std::string __str__() const throw(INTERP_KERNEL::Exception)
647          {
648            return self->simpleRepr();
649          }
650
651          PyObject *getTime() throw(INTERP_KERNEL::Exception)
652          {
653            int tmp1,tmp2;
654            double tmp0=self->getTime(tmp1,tmp2);
655            PyObject *res = PyList_New(3);
656            PyList_SetItem(res,0,SWIG_From_double(tmp0));
657            PyList_SetItem(res,1,SWIG_From_int(tmp1));
658            PyList_SetItem(res,2,SWIG_From_int(tmp2));
659            return res;
660          }
661
662          DataArrayDouble *getDirectAccessOfCoordsArrIfInStructure() const throw(INTERP_KERNEL::Exception)
663          {
664            const DataArrayDouble *ret(self->getDirectAccessOfCoordsArrIfInStructure());
665            DataArrayDouble *ret2(const_cast<DataArrayDouble *>(ret));
666            if(ret2)
667              ret2->incrRef();
668            return ret2;
669          }
670          
671          int getCellContainingPoint(PyObject *p, double eps) const throw(INTERP_KERNEL::Exception)
672          {
673            double val;
674            DataArrayDouble *a;
675            DataArrayDoubleTuple *aa;
676            std::vector<double> bb;
677            int sw;
678            int spaceDim=self->getSpaceDimension();
679            const char msg[]="Python wrap of MEDCouplingMesh::getCellContainingPoint : ";
680            const double *pos=convertObjToPossibleCpp5_Safe(p,sw,val,a,aa,bb,msg,1,spaceDim,true);
681            return self->getCellContainingPoint(pos,eps);
682          }
683
684          PyObject *getCellsContainingPoints(PyObject *p, int nbOfPoints, double eps) const throw(INTERP_KERNEL::Exception)
685          {
686            double val;
687            DataArrayDouble *a;
688            DataArrayDoubleTuple *aa;
689            std::vector<double> bb;
690            int sw;
691            int spaceDim=self->getSpaceDimension();
692            const char msg[]="Python wrap of MEDCouplingMesh::getCellsContainingPoint : ";
693            const double *pos=convertObjToPossibleCpp5_Safe(p,sw,val,a,aa,bb,msg,nbOfPoints,spaceDim,true);
694            MCAuto<DataArrayInt> elts,eltsIndex;
695            self->getCellsContainingPoints(pos,nbOfPoints,eps,elts,eltsIndex);
696            PyObject *ret=PyTuple_New(2);
697            PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(elts.retn()),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
698            PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(eltsIndex.retn()),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
699            return ret;
700          }
701
702          PyObject *getCellsContainingPoints(PyObject *p, double eps) const throw(INTERP_KERNEL::Exception)
703          {
704            MCAuto<DataArrayInt> elts,eltsIndex;
705            int spaceDim=self->getSpaceDimension();
706            void *da=0;
707            int res1=SWIG_ConvertPtr(p,&da,SWIGTYPE_p_MEDCoupling__DataArrayDouble, 0 |  0 );
708            if (!SWIG_IsOK(res1))
709              {
710                int size;
711                INTERP_KERNEL::AutoCPtr<double> tmp=convertPyToNewDblArr2(p,&size);
712                int nbOfPoints=size/spaceDim;
713                if(size%spaceDim!=0)
714                  {
715                    throw INTERP_KERNEL::Exception("MEDCouplingMesh::getCellsContainingPoints : Invalid list length ! Must be a multiple of self.getSpaceDimension() !");
716                  }
717                self->getCellsContainingPoints(tmp,nbOfPoints,eps,elts,eltsIndex);
718              }
719            else
720              {
721                DataArrayDouble *da2=reinterpret_cast< DataArrayDouble * >(da);
722                if(!da2)
723                  throw INTERP_KERNEL::Exception("MEDCouplingMesh::getCellsContainingPoints : Not null DataArrayDouble instance expected !");
724                da2->checkAllocated();
725                int size=da2->getNumberOfTuples();
726                int nbOfCompo=da2->getNumberOfComponents();
727                if(nbOfCompo!=spaceDim)
728                  {
729                    throw INTERP_KERNEL::Exception("MEDCouplingMesh::getCellsContainingPoints : Invalid DataArrayDouble nb of components ! Expected same as self.getSpaceDimension() !");
730                  }
731                self->getCellsContainingPoints(da2->getConstPointer(),size,eps,elts,eltsIndex);
732              }
733            PyObject *ret=PyTuple_New(2);
734            PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(elts.retn()),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
735            PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(eltsIndex.retn()),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
736            return ret;
737          }
738
739          PyObject *getCellsContainingPoint(PyObject *p, double eps) const throw(INTERP_KERNEL::Exception)
740          {
741            double val;
742            DataArrayDouble *a;
743            DataArrayDoubleTuple *aa;
744            std::vector<double> bb;
745            int sw;
746            int spaceDim=self->getSpaceDimension();
747            const char msg[]="Python wrap of MEDCouplingUMesh::getCellsContainingPoint : ";
748            const double *pos=convertObjToPossibleCpp5_Safe(p,sw,val,a,aa,bb,msg,1,spaceDim,true);
749            std::vector<int> elts;
750            self->getCellsContainingPoint(pos,eps,elts);
751            DataArrayInt *ret=DataArrayInt::New();
752            ret->alloc((int)elts.size(),1);
753            std::copy(elts.begin(),elts.end(),ret->getPointer());
754            return SWIG_NewPointerObj(SWIG_as_voidptr(ret),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 );
755          }
756          
757          virtual PyObject *getReverseNodalConnectivity() const throw(INTERP_KERNEL::Exception)
758          {
759            MCAuto<DataArrayInt> d0=DataArrayInt::New();
760            MCAuto<DataArrayInt> d1=DataArrayInt::New();
761            self->getReverseNodalConnectivity(d0,d1);
762            PyObject *ret=PyTuple_New(2);
763            PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(d0.retn()),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
764            PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(d1.retn()),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
765            return ret;
766          }
767          
768          void renumberCells(PyObject *li, bool check=true) throw(INTERP_KERNEL::Exception)
769          {
770            int sw,sz(-1);
771            int v0; std::vector<int> v1;
772            const int *ids(convertIntStarLikePyObjToCppIntStar(li,sw,sz,v0,v1));
773            self->renumberCells(ids,check);
774          }
775
776          PyObject *checkGeoEquivalWith(const MEDCouplingMesh *other, int levOfCheck, double prec) const throw(INTERP_KERNEL::Exception)
777          {
778            DataArrayInt *cellCor, *nodeCor;
779            self->checkGeoEquivalWith(other,levOfCheck,prec,cellCor,nodeCor);
780            PyObject *res = PyList_New(2);
781            PyList_SetItem(res,0,SWIG_NewPointerObj(SWIG_as_voidptr(cellCor),SWIGTYPE_p_MEDCoupling__DataArrayInt, cellCor?SWIG_POINTER_OWN | 0:0 ));
782            PyList_SetItem(res,1,SWIG_NewPointerObj(SWIG_as_voidptr(nodeCor),SWIGTYPE_p_MEDCoupling__DataArrayInt, nodeCor?SWIG_POINTER_OWN | 0:0 ));
783            return res;
784          }
785
786          PyObject *checkDeepEquivalWith(const MEDCouplingMesh *other, int cellCompPol, double prec) const throw(INTERP_KERNEL::Exception)
787          {
788            DataArrayInt *cellCor=0,*nodeCor=0;
789            self->checkDeepEquivalWith(other,cellCompPol,prec,cellCor,nodeCor);
790            PyObject *res = PyList_New(2);
791            PyList_SetItem(res,0,SWIG_NewPointerObj(SWIG_as_voidptr(cellCor),SWIGTYPE_p_MEDCoupling__DataArrayInt, cellCor?SWIG_POINTER_OWN | 0:0 ));
792            PyList_SetItem(res,1,SWIG_NewPointerObj(SWIG_as_voidptr(nodeCor),SWIGTYPE_p_MEDCoupling__DataArrayInt, nodeCor?SWIG_POINTER_OWN | 0:0 ));
793            return res;
794          }
795          
796          DataArrayInt *checkDeepEquivalOnSameNodesWith(const MEDCouplingMesh *other, int cellCompPol, double prec) const throw(INTERP_KERNEL::Exception)
797          {
798            DataArrayInt *cellCor=0;
799            self->checkDeepEquivalOnSameNodesWith(other,cellCompPol,prec,cellCor);
800            return cellCor;
801          }
802
803          DataArrayInt *getCellIdsFullyIncludedInNodeIds(PyObject *li) const throw(INTERP_KERNEL::Exception)
804          {
805            void *da=0;
806            int res1=SWIG_ConvertPtr(li,&da,SWIGTYPE_p_MEDCoupling__DataArrayInt, 0 |  0 );
807            if (!SWIG_IsOK(res1))
808              {
809                int size;
810                INTERP_KERNEL::AutoPtr<int> tmp=convertPyToNewIntArr2(li,&size);
811                return self->getCellIdsFullyIncludedInNodeIds(tmp,((const int *)tmp)+size);
812              }
813            else
814              {
815                DataArrayInt *da2=reinterpret_cast< DataArrayInt * >(da);
816                if(!da2)
817                  throw INTERP_KERNEL::Exception("Not null DataArrayInt instance expected !");
818                da2->checkAllocated();
819                return self->getCellIdsFullyIncludedInNodeIds(da2->getConstPointer(),da2->getConstPointer()+da2->getNbOfElems());
820              }
821          }
822          PyObject *getNodeIdsOfCell(int cellId) const throw(INTERP_KERNEL::Exception)
823          {
824            std::vector<int> conn;
825            self->getNodeIdsOfCell(cellId,conn);
826            return convertIntArrToPyList2(conn);
827          }
828
829          PyObject *getCoordinatesOfNode(int nodeId) const throw(INTERP_KERNEL::Exception)
830          {
831            std::vector<double> coo;
832            self->getCoordinatesOfNode(nodeId,coo);
833            return convertDblArrToPyList2(coo);
834          }
835
836          void scale(PyObject *point, double factor) throw(INTERP_KERNEL::Exception)
837          {
838            double val;
839            DataArrayDouble *a;
840            DataArrayDoubleTuple *aa;
841            std::vector<double> bb;
842            int sw;
843            int spaceDim=self->getSpaceDimension();
844            const char msg[]="Python wrap of MEDCouplingPointSet::scale : ";
845            const double *pointPtr=convertObjToPossibleCpp5_Safe(point,sw,val,a,aa,bb,msg,1,spaceDim,true);
846            self->scale(pointPtr,factor);
847          }
848
849          PyObject *getBoundingBox() const throw(INTERP_KERNEL::Exception)
850          {
851            int spaceDim=self->getSpaceDimension();
852            INTERP_KERNEL::AutoPtr<double> tmp=new double[2*spaceDim];
853            self->getBoundingBox(tmp);
854            PyObject *ret=convertDblArrToPyListOfTuple<double>(tmp,2,spaceDim);
855            return ret;
856          }
857
858          PyObject *isEqualIfNotWhy(const MEDCouplingMesh *other, double prec) const throw(INTERP_KERNEL::Exception)
859          {
860            std::string ret1;
861            bool ret0=self->isEqualIfNotWhy(other,prec,ret1);
862            PyObject *ret=PyTuple_New(2);
863            PyObject *ret0Py=ret0?Py_True:Py_False;
864            Py_XINCREF(ret0Py);
865            PyTuple_SetItem(ret,0,ret0Py);
866            PyTuple_SetItem(ret,1,PyString_FromString(ret1.c_str()));
867            return ret;
868          }
869
870          PyObject *buildPart(PyObject *li) const throw(INTERP_KERNEL::Exception)
871          {
872            int szArr,sw,iTypppArr;
873            std::vector<int> stdvecTyyppArr;
874            const int *tmp=convertIntStarLikePyObjToCppIntStar(li,sw,szArr,iTypppArr,stdvecTyyppArr);
875            MEDCouplingMesh *ret=self->buildPart(tmp,tmp+szArr);
876            if(sw==3)//DataArrayInt
877              { 
878                void *argp; SWIG_ConvertPtr(li,&argp,SWIGTYPE_p_MEDCoupling__DataArrayInt,0|0);
879                DataArrayInt *argpt=reinterpret_cast< MEDCoupling::DataArrayInt * >(argp);
880                std::string name=argpt->getName();
881                if(!name.empty())
882                  ret->setName(name.c_str());
883              }
884            return convertMesh(ret, SWIG_POINTER_OWN | 0 );
885          }
886         
887          PyObject *buildPartAndReduceNodes(PyObject *li) const throw(INTERP_KERNEL::Exception)
888          {
889            int szArr,sw,iTypppArr;
890            std::vector<int> stdvecTyyppArr;
891            DataArrayInt *arr=0;
892            const int *tmp=convertIntStarLikePyObjToCppIntStar(li,sw,szArr,iTypppArr,stdvecTyyppArr);
893            MEDCouplingMesh *ret=self->buildPartAndReduceNodes(tmp,tmp+szArr,arr);
894            if(sw==3)//DataArrayInt
895              { 
896                void *argp; SWIG_ConvertPtr(li,&argp,SWIGTYPE_p_MEDCoupling__DataArrayInt,0|0);
897                DataArrayInt *argpt=reinterpret_cast< MEDCoupling::DataArrayInt * >(argp);
898                std::string name=argpt->getName();
899                if(!name.empty())
900                  ret->setName(name.c_str());
901              }
902            //
903            PyObject *res = PyList_New(2);
904            PyObject *obj0=convertMesh(ret, SWIG_POINTER_OWN | 0 );
905            PyObject *obj1=SWIG_NewPointerObj(SWIG_as_voidptr(arr),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 );
906            PyList_SetItem(res,0,obj0);
907            PyList_SetItem(res,1,obj1);
908            return res;
909          }
910
911          PyObject *buildPartRangeAndReduceNodes(int beginCellIds, int endCellIds, int stepCellIds) const throw(INTERP_KERNEL::Exception)
912          {
913            int a,b,c;
914            DataArrayInt *arr=0;
915            MEDCouplingMesh *ret=self->buildPartRangeAndReduceNodes(beginCellIds,endCellIds,stepCellIds,a,b,c,arr);
916            PyObject *res = PyTuple_New(2);
917            PyObject *obj0=convertMesh(ret, SWIG_POINTER_OWN | 0 );
918            PyObject *obj1=0;
919            if(arr)
920              obj1=SWIG_NewPointerObj(SWIG_as_voidptr(arr),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 );
921            else
922              obj1=PySlice_New(PyInt_FromLong(a),PyInt_FromLong(b),PyInt_FromLong(b));
923            PyTuple_SetItem(res,0,obj0);
924            PyTuple_SetItem(res,1,obj1);
925            return res;
926          }
927
928         PyObject *getDistributionOfTypes() const throw(INTERP_KERNEL::Exception)
929         {
930           std::vector<int> vals=self->getDistributionOfTypes();
931           if(vals.size()%3!=0)
932             throw INTERP_KERNEL::Exception("Internal Error detected in wrap python ! code returned by MEDCouplingMesh::getDistributionOfTypes is not so that %3==0 !");
933           PyObject *ret=PyList_New((int)vals.size()/3);
934           for(int j=0;j<(int)vals.size()/3;j++)
935              {
936                PyObject *ret1=PyList_New(3);
937                PyList_SetItem(ret1,0,SWIG_From_int(vals[3*j]));
938                PyList_SetItem(ret1,1,SWIG_From_int(vals[3*j+1]));
939                PyList_SetItem(ret1,2,SWIG_From_int(vals[3*j+2]));
940                PyList_SetItem(ret,j,ret1);
941              }
942           return ret;
943         }
944
945         DataArrayInt *checkTypeConsistencyAndContig(PyObject *li, PyObject *li2) const throw(INTERP_KERNEL::Exception)
946         {
947           std::vector<int> code;
948           std::vector<const DataArrayInt *> idsPerType;
949           convertFromPyObjVectorOfObj<const MEDCoupling::DataArrayInt *>(li2,SWIGTYPE_p_MEDCoupling__DataArrayInt,"DataArrayInt",idsPerType);
950           convertPyToNewIntArr4(li,1,3,code);
951           return self->checkTypeConsistencyAndContig(code,idsPerType);
952         }
953
954         PyObject *splitProfilePerType(const DataArrayInt *profile) const throw(INTERP_KERNEL::Exception)
955         {
956           std::vector<int> code;
957           std::vector<DataArrayInt *> idsInPflPerType;
958           std::vector<DataArrayInt *> idsPerType;
959           self->splitProfilePerType(profile,code,idsInPflPerType,idsPerType);
960           PyObject *ret=PyTuple_New(3);
961           //
962           if(code.size()%3!=0)
963             throw INTERP_KERNEL::Exception("Internal Error detected in wrap python ! code returned by MEDCouplingMesh::splitProfilePerType is not so that %3==0 !");
964           PyObject *ret0=PyList_New((int)code.size()/3);
965           for(int j=0;j<(int)code.size()/3;j++)
966              {
967                PyObject *ret00=PyList_New(3);
968                PyList_SetItem(ret00,0,SWIG_From_int(code[3*j]));
969                PyList_SetItem(ret00,1,SWIG_From_int(code[3*j+1]));
970                PyList_SetItem(ret00,2,SWIG_From_int(code[3*j+2]));
971                PyList_SetItem(ret0,j,ret00);
972              }
973           PyTuple_SetItem(ret,0,ret0);
974           //
975           PyObject *ret1=PyList_New(idsInPflPerType.size());
976           for(std::size_t j=0;j<idsInPflPerType.size();j++)
977             PyList_SetItem(ret1,j,SWIG_NewPointerObj(SWIG_as_voidptr(idsInPflPerType[j]),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
978           PyTuple_SetItem(ret,1,ret1);
979           int n=idsPerType.size();
980           PyObject *ret2=PyList_New(n);
981           for(int i=0;i<n;i++)
982             PyList_SetItem(ret2,i,SWIG_NewPointerObj(SWIG_as_voidptr(idsPerType[i]),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
983           PyTuple_SetItem(ret,2,ret2);
984           return ret;
985         }
986
987         void translate(PyObject *vector) throw(INTERP_KERNEL::Exception)
988         {
989           double val;
990           DataArrayDouble *a;
991           DataArrayDoubleTuple *aa;
992           std::vector<double> bb;
993           int sw;
994           int spaceDim=self->getSpaceDimension();
995           const char msg[]="Python wrap of MEDCouplingPointSet::translate : ";
996           const double *vectorPtr=convertObjToPossibleCpp5_Safe(vector,sw,val,a,aa,bb,msg,1,spaceDim,true);
997           self->translate(vectorPtr);
998         }
999
1000          void rotate(PyObject *center, double alpha) throw(INTERP_KERNEL::Exception)
1001          {
1002            const char msg[]="Python wrap of MEDCouplingPointSet::rotate : ";
1003            double val;
1004            DataArrayDouble *a;
1005            DataArrayDoubleTuple *aa;
1006            std::vector<double> bb;
1007            int sw;
1008            int spaceDim=self->getSpaceDimension();
1009            const double *centerPtr=convertObjToPossibleCpp5_Safe(center,sw,val,a,aa,bb,msg,1,spaceDim,true);
1010            self->rotate(centerPtr,0,alpha);
1011          }
1012
1013          void rotate(PyObject *center, PyObject *vector, double alpha) throw(INTERP_KERNEL::Exception)
1014          {
1015            const char msg[]="Python wrap of MEDCouplingPointSet::rotate : ";
1016            double val,val2;
1017            DataArrayDouble *a,*a2;
1018            DataArrayDoubleTuple *aa,*aa2;
1019            std::vector<double> bb,bb2;
1020            int sw;
1021            int spaceDim=self->getSpaceDimension();
1022            const double *centerPtr=convertObjToPossibleCpp5_Safe(center,sw,val,a,aa,bb,msg,1,spaceDim,true);
1023            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
1024            self->rotate(centerPtr,vectorPtr,alpha);
1025          }
1026
1027          PyObject *getAllGeoTypes() const throw(INTERP_KERNEL::Exception)
1028          {
1029            std::set<INTERP_KERNEL::NormalizedCellType> result=self->getAllGeoTypes();
1030            std::set<INTERP_KERNEL::NormalizedCellType>::const_iterator iL=result.begin();
1031            PyObject *res=PyList_New(result.size());
1032            for(int i=0;iL!=result.end(); i++, iL++)
1033              PyList_SetItem(res,i,PyInt_FromLong(*iL));
1034            return res;
1035          }
1036
1037          virtual PyObject *getTinySerializationInformation() const throw(INTERP_KERNEL::Exception)
1038          {
1039            std::vector<double> a0;
1040            std::vector<int> a1;
1041            std::vector<std::string> a2;
1042            self->getTinySerializationInformation(a0,a1,a2);
1043            PyObject *ret(PyTuple_New(3));
1044            PyTuple_SetItem(ret,0,convertDblArrToPyList2(a0));
1045            PyTuple_SetItem(ret,1,convertIntArrToPyList2(a1));
1046            int sz(a2.size());
1047            PyObject *ret2(PyList_New(sz));
1048            {
1049              for(int i=0;i<sz;i++)
1050                PyList_SetItem(ret2,i,PyString_FromString(a2[i].c_str()));
1051            }
1052            PyTuple_SetItem(ret,2,ret2);
1053            return ret;
1054          }
1055
1056          virtual PyObject *serialize() const throw(INTERP_KERNEL::Exception)
1057          {
1058            DataArrayInt *a0Tmp(0);
1059            DataArrayDouble *a1Tmp(0);
1060            self->serialize(a0Tmp,a1Tmp);
1061            PyObject *ret(PyTuple_New(2));
1062            PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(a0Tmp),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
1063            PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(a1Tmp),SWIGTYPE_p_MEDCoupling__DataArrayDouble, SWIG_POINTER_OWN | 0 ));
1064            return ret;
1065          }
1066
1067          void resizeForUnserialization(const std::vector<int>& tinyInfo, DataArrayInt *a1, DataArrayDouble *a2) const throw(INTERP_KERNEL::Exception)
1068          {
1069            std::vector<std::string> littleStrings;
1070            self->resizeForUnserialization(tinyInfo,a1,a2,littleStrings);
1071          }
1072          
1073          PyObject *__getnewargs__() throw(INTERP_KERNEL::Exception)
1074          {// put an empty dict in input to say to __new__ to call __init__...
1075            PyObject *ret(PyTuple_New(1));
1076            PyObject *ret0(PyDict_New());
1077            PyTuple_SetItem(ret,0,ret0);
1078            return ret;
1079          }
1080          
1081          PyObject *__getstate__() const throw(INTERP_KERNEL::Exception)
1082          {
1083            PyObject *ret0(MEDCoupling_MEDCouplingMesh_getTinySerializationInformation(self));
1084            PyObject *ret1(MEDCoupling_MEDCouplingMesh_serialize(self));
1085            PyObject *ret(PyTuple_New(2));
1086            PyTuple_SetItem(ret,0,ret0);
1087            PyTuple_SetItem(ret,1,ret1);
1088            return ret;
1089          }
1090
1091          void __setstate__(PyObject *inp) throw(INTERP_KERNEL::Exception)
1092          {
1093            static const char MSG[]="MEDCouplingMesh.__setstate__ : expected input is a tuple of size 2 !";
1094            if(!PyTuple_Check(inp))
1095              throw INTERP_KERNEL::Exception(MSG);
1096            int sz(PyTuple_Size(inp));
1097            if(sz!=2)
1098              throw INTERP_KERNEL::Exception(MSG);
1099            PyObject *elt0(PyTuple_GetItem(inp,0));
1100            PyObject *elt1(PyTuple_GetItem(inp,1));
1101            std::vector<double> a0;
1102            std::vector<int> a1;
1103            std::vector<std::string> a2;
1104            DataArrayInt *b0(0);
1105            DataArrayDouble *b1(0);
1106            {
1107              if(!PyTuple_Check(elt0) && PyTuple_Size(elt0)!=3)
1108                throw INTERP_KERNEL::Exception(MSG);
1109              PyObject *a0py(PyTuple_GetItem(elt0,0)),*a1py(PyTuple_GetItem(elt0,1)),*a2py(PyTuple_GetItem(elt0,2));
1110              int tmp(-1);
1111              fillArrayWithPyListDbl3(a0py,tmp,a0);
1112              convertPyToNewIntArr3(a1py,a1);
1113              fillStringVector(a2py,a2);
1114            }
1115            {
1116              if(!PyTuple_Check(elt1) && PyTuple_Size(elt1)!=2)
1117                throw INTERP_KERNEL::Exception(MSG);
1118              PyObject *b0py(PyTuple_GetItem(elt1,0)),*b1py(PyTuple_GetItem(elt1,1));
1119              void *argp(0);
1120              int status(SWIG_ConvertPtr(b0py,&argp,SWIGTYPE_p_MEDCoupling__DataArrayInt,0|0));
1121              if(!SWIG_IsOK(status))
1122                throw INTERP_KERNEL::Exception(MSG);
1123              b0=reinterpret_cast<DataArrayInt *>(argp);
1124              status=SWIG_ConvertPtr(b1py,&argp,SWIGTYPE_p_MEDCoupling__DataArrayDouble,0|0);
1125              if(!SWIG_IsOK(status))
1126                throw INTERP_KERNEL::Exception(MSG);
1127              b1=reinterpret_cast<DataArrayDouble *>(argp);
1128            }
1129            // useless here to call resizeForUnserialization because arrays are well resized.
1130            self->unserialization(a0,a1,b0,b1,a2);
1131          }
1132          
1133          static MEDCouplingMesh *MergeMeshes(PyObject *li) throw(INTERP_KERNEL::Exception)
1134          {
1135             std::vector<const MEDCoupling::MEDCouplingMesh *> tmp;
1136             convertFromPyObjVectorOfObj<const MEDCoupling::MEDCouplingMesh *>(li,SWIGTYPE_p_MEDCoupling__MEDCouplingMesh,"MEDCouplingMesh",tmp);
1137             return MEDCouplingMesh::MergeMeshes(tmp);
1138          }
1139        }
1140   };
1141 }
1142
1143 //== MEDCouplingMesh End
1144
1145 %include "NormalizedGeometricTypes"
1146 %include "MEDCouplingNatureOfFieldEnum"
1147 //
1148 namespace MEDCoupling
1149 {
1150   class MEDCouplingNatureOfField
1151   {
1152   public:
1153     static const char *GetRepr(NatureOfField nat) throw(INTERP_KERNEL::Exception);
1154     static std::string GetReprNoThrow(NatureOfField nat);
1155     static std::string GetAllPossibilitiesStr();
1156   };
1157 }
1158
1159 // the MEDCouplingTimeDiscretization classes are not swigged : in case the file can help
1160 // include "MEDCouplingTimeDiscretization.i"
1161
1162 namespace MEDCoupling
1163 {
1164   class MEDCouplingGaussLocalization
1165   {
1166   public:
1167     MEDCouplingGaussLocalization(INTERP_KERNEL::NormalizedCellType type, const std::vector<double>& refCoo,
1168                                  const std::vector<double>& gsCoo, const std::vector<double>& w) throw(INTERP_KERNEL::Exception);
1169     MEDCouplingGaussLocalization(INTERP_KERNEL::NormalizedCellType typ) throw(INTERP_KERNEL::Exception);
1170     INTERP_KERNEL::NormalizedCellType getType() const throw(INTERP_KERNEL::Exception);
1171     void setType(INTERP_KERNEL::NormalizedCellType typ) throw(INTERP_KERNEL::Exception);
1172     int getNumberOfGaussPt() const throw(INTERP_KERNEL::Exception);
1173     int getDimension() const throw(INTERP_KERNEL::Exception);
1174     int getNumberOfPtsInRefCell() const throw(INTERP_KERNEL::Exception);
1175     std::string getStringRepr() const throw(INTERP_KERNEL::Exception);
1176     void checkConsistencyLight() const throw(INTERP_KERNEL::Exception);
1177     bool isEqual(const MEDCouplingGaussLocalization& other, double eps) const throw(INTERP_KERNEL::Exception);
1178     //
1179     const std::vector<double>& getRefCoords() const throw(INTERP_KERNEL::Exception);
1180     double getRefCoord(int ptIdInCell, int comp) const throw(INTERP_KERNEL::Exception);
1181     const std::vector<double>& getGaussCoords() const throw(INTERP_KERNEL::Exception);
1182     double getGaussCoord(int gaussPtIdInCell, int comp) const throw(INTERP_KERNEL::Exception);
1183     const std::vector<double>& getWeights() const throw(INTERP_KERNEL::Exception);
1184     double getWeight(int gaussPtIdInCell, double newVal) const throw(INTERP_KERNEL::Exception);
1185     void setRefCoord(int ptIdInCell, int comp, double newVal) throw(INTERP_KERNEL::Exception);
1186     void setGaussCoord(int gaussPtIdInCell, int comp, double newVal) throw(INTERP_KERNEL::Exception);
1187     void setWeight(int gaussPtIdInCell, double newVal) throw(INTERP_KERNEL::Exception);
1188     void setRefCoords(const std::vector<double>& refCoo) throw(INTERP_KERNEL::Exception);
1189     void setGaussCoords(const std::vector<double>& gsCoo) throw(INTERP_KERNEL::Exception);
1190     void setWeights(const std::vector<double>& w) throw(INTERP_KERNEL::Exception);
1191     //
1192     static bool AreAlmostEqual(const std::vector<double>& v1, const std::vector<double>& v2, double eps);
1193     //
1194     %extend 
1195     {
1196       DataArrayDouble *localizePtsInRefCooForEachCell(const DataArrayDouble *ptsInRefCoo, const MEDCouplingUMesh *mesh) const throw(INTERP_KERNEL::Exception)
1197       {
1198         MCAuto<DataArrayDouble> ret(self->localizePtsInRefCooForEachCell(ptsInRefCoo,mesh));
1199         return ret.retn();
1200       }
1201
1202       MEDCouplingUMesh *buildRefCell() const throw(INTERP_KERNEL::Exception)
1203       {
1204         MCAuto<MEDCouplingUMesh> ret(self->buildRefCell());
1205         return ret.retn();
1206       }
1207     }
1208   };
1209
1210   class MEDCouplingSkyLineArray
1211   {
1212   public:  
1213     static MEDCouplingSkyLineArray *BuildFromPolyhedronConn( const DataArrayInt* c, const DataArrayInt* cI ) throw(INTERP_KERNEL::Exception);
1214   
1215     void set( DataArrayInt* index, DataArrayInt* value );
1216     void set3( DataArrayInt* superIndex, DataArrayInt* index, DataArrayInt* value );
1217     
1218     int getSuperNumberOf() const;
1219     int getNumberOf() const;
1220     int getLength() const;
1221     
1222     void deletePack(const int i, const int j) throw(INTERP_KERNEL::Exception);
1223     
1224     %extend 
1225     {
1226       MEDCouplingSkyLineArray() throw(INTERP_KERNEL::Exception)
1227       {
1228         return MEDCouplingSkyLineArray::New();
1229       }
1230
1231       MEDCouplingSkyLineArray( const std::vector<int>& index, const std::vector<int>& value) throw(INTERP_KERNEL::Exception)
1232       {
1233         return MEDCouplingSkyLineArray::New(index, value);
1234       }
1235
1236       MEDCouplingSkyLineArray( DataArrayInt* index, DataArrayInt* value ) throw(INTERP_KERNEL::Exception)
1237       {
1238         return MEDCouplingSkyLineArray::New(index, value);
1239       }
1240
1241       MEDCouplingSkyLineArray( const MEDCouplingSkyLineArray & other ) throw(INTERP_KERNEL::Exception)
1242       {
1243         return MEDCouplingSkyLineArray::New(other);
1244       }
1245
1246       std::string __str__() const throw(INTERP_KERNEL::Exception)
1247       {
1248         return self->simpleRepr();
1249       }
1250       
1251       DataArrayInt *getSuperIndexArray() const
1252       {
1253         DataArrayInt *ret(self->getSuperIndexArray());
1254         if(ret)
1255           ret->incrRef();
1256         return ret;
1257       }
1258       
1259       DataArrayInt *getIndexArray() const
1260       {
1261         DataArrayInt *ret(self->getIndexArray());
1262         if(ret)
1263           ret->incrRef();
1264         return ret;
1265       }
1266       
1267       DataArrayInt *getValuesArray() const
1268       {
1269         DataArrayInt *ret(self->getValuesArray());
1270         if(ret)
1271           ret->incrRef();
1272         return ret;
1273       }
1274      
1275       PyObject *getSimplePackSafe(int absolutePackId) const throw(INTERP_KERNEL::Exception)
1276       {
1277         std::vector<int> ret;
1278         self->getSimplePackSafe(absolutePackId,ret);
1279         return convertIntArrToPyList2(ret);
1280       }
1281
1282       PyObject *findPackIds(PyObject *superPackIndices, PyObject *pack) const throw(INTERP_KERNEL::Exception)
1283       {
1284           std::vector<int> vpack, vspIdx, out;
1285           
1286           convertPyToNewIntArr3(superPackIndices,vspIdx);
1287           convertPyToNewIntArr3(pack,vpack);
1288           
1289           self->findPackIds(vspIdx, vpack.data(), vpack.data()+vpack.size(), out);
1290           return convertIntArrToPyList2(out);
1291       }
1292       
1293       void pushBackPack(const int i, PyObject *pack) throw(INTERP_KERNEL::Exception)
1294         {
1295           std::vector<int> vpack;
1296           convertPyToNewIntArr3(pack,vpack);
1297           self->pushBackPack(i,vpack.data(), vpack.data()+vpack.size());
1298         }
1299         
1300       void replaceSimplePack(const int idx, PyObject *pack) throw(INTERP_KERNEL::Exception)
1301         {
1302           std::vector<int> vpack;
1303           convertPyToNewIntArr3(pack,vpack);
1304           self->replaceSimplePack(idx, vpack.data(), vpack.data()+vpack.size());
1305         }
1306         
1307       void replacePack(const int superIdx, const int idx, PyObject *pack) throw(INTERP_KERNEL::Exception)
1308         {
1309           std::vector<int> vpack;
1310           convertPyToNewIntArr3(pack,vpack);
1311           self->replacePack(superIdx, idx, vpack.data(), vpack.data()+vpack.size());
1312         }
1313
1314       PyObject *convertToPolyhedronConn() const throw(INTERP_KERNEL::Exception)
1315          {
1316            MCAuto<DataArrayInt> d0=DataArrayInt::New();
1317            MCAuto<DataArrayInt> d1=DataArrayInt::New();
1318            self->convertToPolyhedronConn(d0,d1);
1319            PyObject *ret=PyTuple_New(2);
1320            PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(d0.retn()),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
1321            PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(d1.retn()),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
1322            return ret;
1323          } 
1324     }
1325   };
1326 }
1327
1328 %include "MEDCouplingFieldDiscretization.i"
1329
1330 //== MEDCouplingPointSet
1331
1332 namespace MEDCoupling
1333 {
1334   class MEDCouplingPointSet : public MEDCoupling::MEDCouplingMesh
1335     {
1336     public:
1337       void setCoords(const DataArrayDouble *coords) throw(INTERP_KERNEL::Exception);
1338       DataArrayDouble *getCoordinatesAndOwner() const throw(INTERP_KERNEL::Exception);
1339       bool areCoordsEqual(const MEDCouplingPointSet& other, double prec) const throw(INTERP_KERNEL::Exception);
1340       void zipCoords() throw(INTERP_KERNEL::Exception);
1341       double getCaracteristicDimension() const throw(INTERP_KERNEL::Exception);
1342       void recenterForMaxPrecision(double eps) throw(INTERP_KERNEL::Exception);
1343       void changeSpaceDimension(int newSpaceDim, double dftVal=0.) throw(INTERP_KERNEL::Exception);
1344       void tryToShareSameCoords(const MEDCouplingPointSet& other, double epsilon) throw(INTERP_KERNEL::Exception);
1345       virtual void shallowCopyConnectivityFrom(const MEDCouplingPointSet *other) throw(INTERP_KERNEL::Exception);
1346       virtual MEDCouplingPointSet *buildPartOfMySelfSlice(int start, int end, int step) const throw(INTERP_KERNEL::Exception);
1347       virtual void tryToShareSameCoordsPermute(const MEDCouplingPointSet& other, double epsilon) throw(INTERP_KERNEL::Exception);
1348       static DataArrayDouble *MergeNodesArray(const MEDCouplingPointSet *m1, const MEDCouplingPointSet *m2) throw(INTERP_KERNEL::Exception);
1349       static MEDCouplingPointSet *BuildInstanceFromMeshType(MEDCouplingMeshType type) throw(INTERP_KERNEL::Exception);
1350       static DataArrayInt *ComputeNbOfInteractionsWithSrcCells(const MEDCouplingPointSet *srcMesh, const MEDCouplingPointSet *trgMesh, double eps) throw(INTERP_KERNEL::Exception);
1351       virtual DataArrayInt *computeFetchedNodeIds() const throw(INTERP_KERNEL::Exception);
1352       virtual int getNumberOfNodesInCell(int cellId) const throw(INTERP_KERNEL::Exception);
1353       virtual MEDCouplingPointSet *buildBoundaryMesh(bool keepCoords) const throw(INTERP_KERNEL::Exception);
1354       virtual DataArrayInt *getCellsInBoundingBox(const INTERP_KERNEL::DirectedBoundingBox& bbox, double eps) throw(INTERP_KERNEL::Exception);
1355       virtual DataArrayInt *zipCoordsTraducer() throw(INTERP_KERNEL::Exception);
1356       virtual DataArrayInt *findBoundaryNodes() const;
1357       virtual DataArrayInt *zipConnectivityTraducer(int compType, int startCellId=0) throw(INTERP_KERNEL::Exception);
1358       virtual MEDCouplingPointSet *mergeMyselfWithOnSameCoords(const MEDCouplingPointSet *other) const throw(INTERP_KERNEL::Exception);
1359       virtual void checkFullyDefined() const throw(INTERP_KERNEL::Exception);
1360       virtual bool isEmptyMesh(const std::vector<int>& tinyInfo) const throw(INTERP_KERNEL::Exception);
1361       virtual MEDCouplingPointSet *deepCopyConnectivityOnly() const throw(INTERP_KERNEL::Exception);
1362       virtual DataArrayDouble *getBoundingBoxForBBTree(double arcDetEps=1e-12) const throw(INTERP_KERNEL::Exception);
1363       virtual void renumberNodesWithOffsetInConn(int offset) throw(INTERP_KERNEL::Exception);
1364       virtual bool areAllNodesFetched() const throw(INTERP_KERNEL::Exception);
1365       virtual MEDCouplingFieldDouble *computeDiameterField() const throw(INTERP_KERNEL::Exception);
1366       %extend 
1367          {
1368            std::string __str__() const throw(INTERP_KERNEL::Exception)
1369            {
1370              return self->simpleRepr();
1371            }
1372            
1373            PyObject *buildNewNumberingFromCommonNodesFormat(const DataArrayInt *comm, const DataArrayInt *commIndex) const throw(INTERP_KERNEL::Exception)
1374            {
1375              int newNbOfNodes;
1376              DataArrayInt *ret0=self->buildNewNumberingFromCommonNodesFormat(comm,commIndex,newNbOfNodes);
1377              PyObject *res = PyList_New(2);
1378              PyList_SetItem(res,0,SWIG_NewPointerObj(SWIG_as_voidptr(ret0),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
1379              PyList_SetItem(res,1,SWIG_From_int(newNbOfNodes));
1380              return res;
1381            }
1382            
1383            PyObject *findCommonNodes(double prec, int limitTupleId=-1) const throw(INTERP_KERNEL::Exception)
1384            {
1385              DataArrayInt *comm, *commIndex;
1386              self->findCommonNodes(prec,limitTupleId,comm,commIndex);
1387              PyObject *res = PyList_New(2);
1388              PyList_SetItem(res,0,SWIG_NewPointerObj(SWIG_as_voidptr(comm),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
1389              PyList_SetItem(res,1,SWIG_NewPointerObj(SWIG_as_voidptr(commIndex),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
1390              return res;
1391            }
1392            
1393            PyObject *getCoords() throw(INTERP_KERNEL::Exception)
1394            {
1395              DataArrayDouble *ret1=self->getCoords();
1396              if (ret1)
1397                 ret1->incrRef();
1398              return SWIG_NewPointerObj((void*)ret1,SWIGTYPE_p_MEDCoupling__DataArrayDouble,SWIG_POINTER_OWN | 0);
1399            }
1400            
1401            PyObject *buildPartOfMySelf(PyObject *li, bool keepCoords=true) const throw(INTERP_KERNEL::Exception)
1402            {
1403              int szArr,sw,iTypppArr;
1404              std::vector<int> stdvecTyyppArr;
1405              const int *tmp=convertIntStarLikePyObjToCppIntStar(li,sw,szArr,iTypppArr,stdvecTyyppArr);
1406              MEDCouplingPointSet *ret=self->buildPartOfMySelf(tmp,tmp+szArr,keepCoords);
1407              if(sw==3)//DataArrayInt
1408                { 
1409                  void *argp; SWIG_ConvertPtr(li,&argp,SWIGTYPE_p_MEDCoupling__DataArrayInt,0|0);
1410                  DataArrayInt *argpt=reinterpret_cast< MEDCoupling::DataArrayInt * >(argp);
1411                  std::string name=argpt->getName();
1412                  if(!name.empty())
1413                    ret->setName(name.c_str());
1414                }
1415              return convertMesh(ret, SWIG_POINTER_OWN | 0 );
1416            }
1417            
1418            PyObject *buildPartOfMySelfNode(PyObject *li, bool fullyIn) const throw(INTERP_KERNEL::Exception)
1419            {
1420              int szArr,sw,iTypppArr;
1421              std::vector<int> stdvecTyyppArr;
1422              const int *tmp=convertIntStarLikePyObjToCppIntStar(li,sw,szArr,iTypppArr,stdvecTyyppArr);
1423              MEDCouplingPointSet *ret=self->buildPartOfMySelfNode(tmp,tmp+szArr,fullyIn);
1424              if(sw==3)//DataArrayInt
1425                { 
1426                  void *argp; SWIG_ConvertPtr(li,&argp,SWIGTYPE_p_MEDCoupling__DataArrayInt,0|0);
1427                  DataArrayInt *argpt=reinterpret_cast< MEDCoupling::DataArrayInt * >(argp);
1428                  std::string name=argpt->getName();
1429                  if(!name.empty())
1430                    ret->setName(name.c_str());
1431                }
1432              return convertMesh(ret, SWIG_POINTER_OWN | 0 );
1433            }
1434
1435            virtual PyObject *buildPartOfMySelfKeepCoords(PyObject *li) const throw(INTERP_KERNEL::Exception)
1436            {
1437              int szArr,sw,iTypppArr;
1438              std::vector<int> stdvecTyyppArr;
1439              const int *tmp=convertIntStarLikePyObjToCppIntStar(li,sw,szArr,iTypppArr,stdvecTyyppArr);
1440              MEDCouplingPointSet *ret=self->buildPartOfMySelfKeepCoords(tmp,tmp+szArr);
1441              if(sw==3)//DataArrayInt
1442                { 
1443                  void *argp; SWIG_ConvertPtr(li,&argp,SWIGTYPE_p_MEDCoupling__DataArrayInt,0|0);
1444                  DataArrayInt *argpt=reinterpret_cast< MEDCoupling::DataArrayInt * >(argp);
1445                  std::string name=argpt->getName();
1446                  if(!name.empty())
1447                    ret->setName(name.c_str());
1448                }
1449              return convertMesh(ret, SWIG_POINTER_OWN | 0 );
1450            }
1451
1452            virtual PyObject *buildPartOfMySelfKeepCoordsSlice(int start, int end, int step) const throw(INTERP_KERNEL::Exception)
1453            {
1454              MEDCouplingPointSet *ret=self->buildPartOfMySelfKeepCoordsSlice(start,end,step);
1455              return convertMesh(ret, SWIG_POINTER_OWN | 0 );
1456            }
1457
1458            PyObject *buildFacePartOfMySelfNode(PyObject *li, bool fullyIn) const throw(INTERP_KERNEL::Exception)
1459            {
1460              int szArr,sw,iTypppArr;
1461              std::vector<int> stdvecTyyppArr;
1462              const int *tmp=convertIntStarLikePyObjToCppIntStar(li,sw,szArr,iTypppArr,stdvecTyyppArr);
1463              MEDCouplingPointSet *ret=self->buildFacePartOfMySelfNode(tmp,tmp+szArr,fullyIn);
1464              if(sw==3)//DataArrayInt
1465                { 
1466                  void *argp; SWIG_ConvertPtr(li,&argp,SWIGTYPE_p_MEDCoupling__DataArrayInt,0|0);
1467                  DataArrayInt *argpt=reinterpret_cast< MEDCoupling::DataArrayInt * >(argp);
1468                  std::string name=argpt->getName();
1469                  if(!name.empty())
1470                    ret->setName(name.c_str());
1471                }
1472              return convertMesh(ret, SWIG_POINTER_OWN | 0 );
1473            }
1474
1475            void renumberNodes(PyObject *li, int newNbOfNodes) throw(INTERP_KERNEL::Exception)
1476            {
1477              int szArr,sw,iTypppArr;
1478              std::vector<int> stdvecTyyppArr;
1479              const int *tmp=convertIntStarLikePyObjToCppIntStar(li,sw,szArr,iTypppArr,stdvecTyyppArr);
1480              self->renumberNodes(tmp,newNbOfNodes);
1481            }
1482
1483            void renumberNodesCenter(PyObject *li, int newNbOfNodes) throw(INTERP_KERNEL::Exception)
1484            {
1485              int szArr,sw,iTypppArr;
1486              std::vector<int> stdvecTyyppArr;
1487              const int *tmp=convertIntStarLikePyObjToCppIntStar(li,sw,szArr,iTypppArr,stdvecTyyppArr);
1488              self->renumberNodesCenter(tmp,newNbOfNodes);
1489            }
1490
1491            PyObject *findNodesOnLine(PyObject *pt, PyObject *vec, double eps) const throw(INTERP_KERNEL::Exception)
1492              {
1493                int spaceDim=self->getSpaceDimension();
1494                double val,val2;
1495                DataArrayDouble *a,*a2;
1496                DataArrayDoubleTuple *aa,*aa2;
1497                std::vector<double> bb,bb2;
1498                int sw;
1499                const char msg[]="Python wrap of MEDCouplingPointSet::findNodesOnLine : 1st paramater for point.";
1500                const char msg2[]="Python wrap of MEDCouplingPointSet::findNodesOnLine : 2nd paramater for vector.";
1501                const double *p=convertObjToPossibleCpp5_Safe(pt,sw,val,a,aa,bb,msg,1,spaceDim,true);
1502                const double *v=convertObjToPossibleCpp5_Safe(vec,sw,val2,a2,aa2,bb2,msg2,1,spaceDim,true);
1503                std::vector<int> nodes;
1504                self->findNodesOnLine(p,v,eps,nodes);
1505                DataArrayInt *ret=DataArrayInt::New();
1506                ret->alloc((int)nodes.size(),1);
1507                std::copy(nodes.begin(),nodes.end(),ret->getPointer());
1508                return SWIG_NewPointerObj(SWIG_as_voidptr(ret),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 );
1509              }
1510            PyObject *findNodesOnPlane(PyObject *pt, PyObject *vec, double eps) const throw(INTERP_KERNEL::Exception)
1511              {
1512                int spaceDim=self->getSpaceDimension();
1513                double val,val2;
1514                DataArrayDouble *a,*a2;
1515                DataArrayDoubleTuple *aa,*aa2;
1516                std::vector<double> bb,bb2;
1517                int sw;
1518                const char msg[]="Python wrap of MEDCouplingPointSet::findNodesOnPlane : 1st paramater for point.";
1519                const char msg2[]="Python wrap of MEDCouplingPointSet::findNodesOnPlane : 2nd paramater for vector.";
1520                const double *p=convertObjToPossibleCpp5_Safe(pt,sw,val,a,aa,bb,msg,1,spaceDim,true);
1521                const double *v=convertObjToPossibleCpp5_Safe(vec,sw,val2,a2,aa2,bb2,msg2,1,spaceDim,true);
1522                std::vector<int> nodes;
1523                self->findNodesOnPlane(p,v,eps,nodes);
1524                DataArrayInt *ret=DataArrayInt::New();
1525                ret->alloc((int)nodes.size(),1);
1526                std::copy(nodes.begin(),nodes.end(),ret->getPointer());
1527                return SWIG_NewPointerObj(SWIG_as_voidptr(ret),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 );
1528              }
1529            
1530            PyObject *getNodeIdsNearPoint(PyObject *pt, double eps) const throw(INTERP_KERNEL::Exception)
1531            {
1532              double val;
1533              DataArrayDouble *a;
1534              DataArrayDoubleTuple *aa;
1535              std::vector<double> bb;
1536              int sw;
1537              int spaceDim=self->getSpaceDimension();
1538              const char msg[]="Python wrap of MEDCouplingPointSet::getNodeIdsNearPoint : ";
1539              const double *pos=convertObjToPossibleCpp5_Safe(pt,sw,val,a,aa,bb,msg,1,spaceDim,true);
1540              DataArrayInt *ret=self->getNodeIdsNearPoint(pos,eps);
1541              return SWIG_NewPointerObj(SWIG_as_voidptr(ret),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 );
1542            }
1543
1544            PyObject *getNodeIdsNearPoints(PyObject *pt, int nbOfPoints, double eps) const throw(INTERP_KERNEL::Exception)
1545            {
1546              DataArrayInt *c=0,*cI=0;
1547              //
1548              double val;
1549              DataArrayDouble *a;
1550              DataArrayDoubleTuple *aa;
1551              std::vector<double> bb;
1552              int sw;
1553              int spaceDim=self->getSpaceDimension();
1554              const char msg[]="Python wrap of MEDCouplingPointSet::getNodeIdsNearPoints : ";
1555              const double *pos=convertObjToPossibleCpp5_Safe(pt,sw,val,a,aa,bb,msg,nbOfPoints,spaceDim,true);
1556              self->getNodeIdsNearPoints(pos,nbOfPoints,eps,c,cI);
1557              PyObject *ret=PyTuple_New(2);
1558              PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(c),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
1559              PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(cI),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
1560              return ret;
1561            }
1562
1563            PyObject *getNodeIdsNearPoints(PyObject *pt, double eps) const throw(INTERP_KERNEL::Exception)
1564            {
1565              DataArrayInt *c=0,*cI=0;
1566              int spaceDim=self->getSpaceDimension();
1567              double val;
1568              DataArrayDouble *a;
1569              DataArrayDoubleTuple *aa;
1570              std::vector<double> bb;
1571              int sw;
1572              int nbOfTuples=-1;
1573              const double *ptPtr=convertObjToPossibleCpp5_Safe2(pt,sw,val,a,aa,bb,"Python wrap of MEDCouplingUMesh::getNodeIdsNearPoints",spaceDim,true,nbOfTuples);
1574              self->getNodeIdsNearPoints(ptPtr,nbOfTuples,eps,c,cI);
1575              //
1576              PyObject *ret=PyTuple_New(2);
1577              PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(c),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
1578              PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(cI),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
1579              return ret;
1580            }
1581
1582            PyObject *getCellsInBoundingBox(PyObject *bbox, double eps) const throw(INTERP_KERNEL::Exception)
1583            {
1584              double val;
1585              DataArrayDouble *a;
1586              DataArrayDoubleTuple *aa;
1587              std::vector<double> bb;
1588              int sw;
1589              int spaceDim=self->getSpaceDimension();
1590              const char msg[]="Python wrap of MEDCouplingPointSet::getCellsInBoundingBox : ";
1591              const double *tmp=convertObjToPossibleCpp5_Safe(bbox,sw,val,a,aa,bb,msg,spaceDim,2,true);
1592              //
1593              DataArrayInt *elems=self->getCellsInBoundingBox(tmp,eps);
1594              return SWIG_NewPointerObj(SWIG_as_voidptr(elems),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 );
1595            }
1596
1597            void duplicateNodesInCoords(PyObject *li) throw(INTERP_KERNEL::Exception)
1598            {
1599              int sw;
1600              int singleVal;
1601              std::vector<int> multiVal;
1602              std::pair<int, std::pair<int,int> > slic;
1603              MEDCoupling::DataArrayInt *daIntTyypp=0;
1604              convertIntStarOrSliceLikePyObjToCpp(li,self->getNumberOfNodes(),sw,singleVal,multiVal,slic,daIntTyypp);
1605              switch(sw)
1606                {
1607                case 1:
1608                  return self->duplicateNodesInCoords(&singleVal,&singleVal+1);
1609                case 2:
1610                  return self->duplicateNodesInCoords(&multiVal[0],&multiVal[0]+multiVal.size());
1611                case 4:
1612                  return self->duplicateNodesInCoords(daIntTyypp->begin(),daIntTyypp->end());
1613                default:
1614                  throw INTERP_KERNEL::Exception("MEDCouplingPointSet::duplicateNodesInCoords : unrecognized type entered, expected list of int, tuple of int or DataArrayInt !");
1615                }
1616            }
1617
1618            virtual PyObject *findCommonCells(int compType, int startCellId=0) const throw(INTERP_KERNEL::Exception)
1619            {
1620              DataArrayInt *v0=0,*v1=0;
1621              self->findCommonCells(compType,startCellId,v0,v1);
1622              PyObject *res = PyList_New(2);
1623              PyList_SetItem(res,0,SWIG_NewPointerObj(SWIG_as_voidptr(v0),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
1624              PyList_SetItem(res,1,SWIG_NewPointerObj(SWIG_as_voidptr(v1),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
1625              return res;
1626            }
1627
1628       
1629            virtual void renumberNodesInConn(PyObject *li) throw(INTERP_KERNEL::Exception)
1630            {
1631              void *da=0;
1632              int res1=SWIG_ConvertPtr(li,&da,SWIGTYPE_p_MEDCoupling__DataArrayInt, 0 | 0 );
1633              if (!SWIG_IsOK(res1))
1634                {
1635                  int size;
1636                  INTERP_KERNEL::AutoPtr<int> tmp=convertPyToNewIntArr2(li,&size);
1637                  self->renumberNodesInConn(tmp);
1638                }
1639              else
1640                {
1641                  DataArrayInt *da2=reinterpret_cast< DataArrayInt * >(da);
1642                  if(!da2)
1643                    throw INTERP_KERNEL::Exception("Not null DataArrayInt instance expected !");
1644                  da2->checkAllocated();
1645                  self->renumberNodesInConn(da2->getConstPointer());
1646                }
1647            }
1648
1649            virtual PyObject *getNodeIdsInUse() const throw(INTERP_KERNEL::Exception)
1650            {
1651              int ret1=-1;
1652              DataArrayInt *ret0=self->getNodeIdsInUse(ret1);
1653              PyObject *ret=PyTuple_New(2);
1654              PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(ret0),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
1655              PyTuple_SetItem(ret,1,PyInt_FromLong(ret1));
1656              return ret;
1657            }
1658
1659            virtual DataArrayInt *fillCellIdsToKeepFromNodeIds(PyObject *li, bool fullyIn) const
1660            {
1661              DataArrayInt *ret=0;
1662              //
1663              int szArr,sw,iTypppArr;
1664              std::vector<int> stdvecTyyppArr;
1665              const int *tmp=convertIntStarLikePyObjToCppIntStar(li,sw,szArr,iTypppArr,stdvecTyyppArr);
1666              self->fillCellIdsToKeepFromNodeIds(tmp,tmp+szArr,fullyIn,ret);
1667              return ret;
1668            }
1669
1670            virtual PyObject *mergeNodes(double precision) throw(INTERP_KERNEL::Exception)
1671            {
1672              bool ret1;
1673              int ret2;
1674              DataArrayInt *ret0=self->mergeNodes(precision,ret1,ret2);
1675              PyObject *res = PyList_New(3);
1676              PyList_SetItem(res,0,SWIG_NewPointerObj(SWIG_as_voidptr(ret0),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
1677              PyList_SetItem(res,1,SWIG_From_bool(ret1));
1678              PyList_SetItem(res,2,SWIG_From_int(ret2));
1679              return res;
1680            }
1681            
1682            virtual PyObject *mergeNodesCenter(double precision) throw(INTERP_KERNEL::Exception)
1683            {
1684              bool ret1;
1685              int ret2;
1686              DataArrayInt *ret0=self->mergeNodesCenter(precision,ret1,ret2);
1687              PyObject *res = PyList_New(3);
1688              PyList_SetItem(res,0,SWIG_NewPointerObj(SWIG_as_voidptr(ret0),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
1689              PyList_SetItem(res,1,SWIG_From_bool(ret1));
1690              PyList_SetItem(res,2,SWIG_From_int(ret2));
1691              return res;
1692            }
1693            
1694            DataArrayInt *getCellIdsLyingOnNodes(PyObject *li, bool fullyIn) const throw(INTERP_KERNEL::Exception)
1695            {
1696              void *da=0;
1697              int res1=SWIG_ConvertPtr(li,&da,SWIGTYPE_p_MEDCoupling__DataArrayInt, 0 |  0 );
1698              if (!SWIG_IsOK(res1))
1699                {
1700                  int size;
1701                  INTERP_KERNEL::AutoPtr<int> tmp=convertPyToNewIntArr2(li,&size);
1702                  return self->getCellIdsLyingOnNodes(tmp,((const int *)tmp)+size,fullyIn);
1703                }
1704              else
1705                {
1706                  DataArrayInt *da2=reinterpret_cast< DataArrayInt * >(da);
1707                  if(!da2)
1708                    throw INTERP_KERNEL::Exception("Not null DataArrayInt instance expected !");
1709                  da2->checkAllocated();
1710                  return self->getCellIdsLyingOnNodes(da2->getConstPointer(),da2->getConstPointer()+da2->getNbOfElems(),fullyIn);
1711                }
1712            }
1713
1714            MEDCouplingPointSet *__getitem__(PyObject *listOrDataArrI) throw(INTERP_KERNEL::Exception)
1715            {
1716              int sw;
1717              int singleVal;
1718              std::vector<int> multiVal;
1719              std::pair<int, std::pair<int,int> > slic;
1720              MEDCoupling::DataArrayInt *daIntTyypp=0;
1721              int nbc=self->getNumberOfCells();
1722              convertIntStarOrSliceLikePyObjToCpp(listOrDataArrI,nbc,sw,singleVal,multiVal,slic,daIntTyypp);
1723              switch(sw)
1724                {
1725                case 1:
1726                  {
1727                    if(singleVal>=nbc)
1728                      {
1729                        std::ostringstream oss;
1730                        oss << "Requesting for cell id " << singleVal << " having only " << nbc << " cells !";
1731                        throw INTERP_KERNEL::Exception(oss.str().c_str());
1732                      }
1733                    if(singleVal>=0)
1734                      return self->buildPartOfMySelf(&singleVal,&singleVal+1,true);
1735                    else
1736                      {
1737                        if(nbc+singleVal>0)
1738                          {
1739                            int tmp=nbc+singleVal;
1740                            return self->buildPartOfMySelf(&tmp,&tmp+1,true);
1741                          }
1742                        else
1743                          {
1744                            std::ostringstream oss;
1745                            oss << "Requesting for cell id " << singleVal << " having only " << nbc << " cells !";
1746                            throw INTERP_KERNEL::Exception(oss.str().c_str());
1747                          }
1748                      }
1749                  }
1750                case 2:
1751                  {
1752                    return static_cast<MEDCouplingPointSet *>(self->buildPartOfMySelf(&multiVal[0],&multiVal[0]+multiVal.size(),true));
1753                  }
1754                case 3:
1755                  {
1756                    return self->buildPartOfMySelfSlice(slic.first,slic.second.first,slic.second.second,true);
1757                  }
1758                case 4:
1759                  {
1760                    if(!daIntTyypp)
1761                      throw INTERP_KERNEL::Exception("MEDCouplingUMesh::__getitem__ : null instance has been given in input !");
1762                    daIntTyypp->checkAllocated();
1763                    return self->buildPartOfMySelf(daIntTyypp->begin(),daIntTyypp->end(),true);
1764                  }
1765                default:
1766                  throw INTERP_KERNEL::Exception("MEDCouplingUMesh::__getitem__ : unrecognized type in input ! Possibilities are : int, list or tuple of int DataArrayInt instance !");
1767                }
1768            }
1769            
1770            static void Rotate2DAlg(PyObject *center, double angle, int nbNodes, PyObject *coords) throw(INTERP_KERNEL::Exception)
1771            {
1772              int sz;
1773              INTERP_KERNEL::AutoCPtr<double> c=convertPyToNewDblArr2(center,&sz);
1774              INTERP_KERNEL::AutoCPtr<double> coo=convertPyToNewDblArr2(coords,&sz);
1775              MEDCoupling::DataArrayDouble::Rotate2DAlg(c,angle,nbNodes,coo,coo);
1776              for(int i=0;i<sz;i++)
1777                PyList_SetItem(coords,i,PyFloat_FromDouble(coo[i]));
1778            }
1779            
1780            static void Rotate2DAlg(PyObject *center, double angle, PyObject *coords) throw(INTERP_KERNEL::Exception)
1781            {
1782              int sz;
1783              INTERP_KERNEL::AutoCPtr<double> c=convertPyToNewDblArr2(center,&sz);
1784              int sw,nbNodes=0;
1785              double val0;  MEDCoupling::DataArrayDouble *val1=0; MEDCoupling::DataArrayDoubleTuple *val2=0;
1786              std::vector<double> val3;
1787              const double *coo=convertObjToPossibleCpp5_Safe2(coords,sw,val0,val1,val2,val3,
1788                                                             "Rotate2DAlg",2,true,nbNodes);
1789              if(sw!=2 && sw!=3)
1790                throw INTERP_KERNEL::Exception("Invalid call to MEDCouplingPointSet::Rotate2DAlg : try another overload method !");
1791              MEDCoupling::DataArrayDouble::Rotate2DAlg(c,angle,nbNodes,coo,const_cast<double *>(coo));
1792            }
1793            
1794            static void Rotate3DAlg(PyObject *center, PyObject *vect, double angle, int nbNodes, PyObject *coords) throw(INTERP_KERNEL::Exception)
1795            {
1796              int sz,sz2;
1797              INTERP_KERNEL::AutoCPtr<double> c=convertPyToNewDblArr2(center,&sz);
1798              INTERP_KERNEL::AutoCPtr<double> coo=convertPyToNewDblArr2(coords,&sz);
1799              INTERP_KERNEL::AutoCPtr<double> v=convertPyToNewDblArr2(vect,&sz2);
1800              MEDCoupling::DataArrayDouble::Rotate3DAlg(c,v,angle,nbNodes,coo,coo);
1801              for(int i=0;i<sz;i++)
1802                PyList_SetItem(coords,i,PyFloat_FromDouble(coo[i]));
1803            }
1804            
1805            static void Rotate3DAlg(PyObject *center, PyObject *vect, double angle, PyObject *coords) throw(INTERP_KERNEL::Exception)
1806            {
1807              int sz,sz2;
1808              INTERP_KERNEL::AutoCPtr<double> c=convertPyToNewDblArr2(center,&sz);
1809              int sw,nbNodes=0;
1810              double val0;  MEDCoupling::DataArrayDouble *val1=0; MEDCoupling::DataArrayDoubleTuple *val2=0;
1811              std::vector<double> val3;
1812              const double *coo=convertObjToPossibleCpp5_Safe2(coords,sw,val0,val1,val2,val3,
1813                                                             "Rotate3DAlg",3,true,nbNodes);
1814              if(sw!=2 && sw!=3)
1815                throw INTERP_KERNEL::Exception("Invalid call to MEDCouplingPointSet::Rotate3DAlg : try another overload method !");
1816              INTERP_KERNEL::AutoCPtr<double> v=convertPyToNewDblArr2(vect,&sz2);
1817              MEDCoupling::DataArrayDouble::Rotate3DAlg(c,v,angle,nbNodes,coo,const_cast<double *>(coo));
1818            }
1819          }
1820     };
1821
1822   //== MEDCouplingPointSet End
1823
1824   class MEDCouplingUMeshCell
1825   {
1826   public:
1827     INTERP_KERNEL::NormalizedCellType getType() const;
1828     %extend
1829       {
1830         std::string __str__() const throw(INTERP_KERNEL::Exception)
1831         {
1832           return self->repr();
1833         }
1834
1835         PyObject *getAllConn() const throw(INTERP_KERNEL::Exception)
1836         {
1837           int ret2;
1838           const int *r=self->getAllConn(ret2);
1839           PyObject *ret=PyTuple_New(ret2);
1840           for(int i=0;i<ret2;i++)
1841             PyTuple_SetItem(ret,i,PyInt_FromLong(r[i]));
1842           return ret;
1843         }
1844       }
1845   };
1846
1847   class MEDCouplingUMeshCellIterator
1848   {
1849   public:
1850     %extend
1851       {
1852         PyObject *next()
1853         {
1854           MEDCouplingUMeshCell *ret=self->nextt();
1855           if(ret)
1856             return SWIG_NewPointerObj(SWIG_as_voidptr(ret),SWIGTYPE_p_MEDCoupling__MEDCouplingUMeshCell,0|0);
1857           else
1858             {
1859               PyErr_SetString(PyExc_StopIteration,"No more data.");
1860               return 0;
1861             }
1862         }
1863       }
1864   };
1865
1866   class MEDCouplingUMeshCellByTypeIterator
1867   {
1868   public:
1869     ~MEDCouplingUMeshCellByTypeIterator();
1870     %extend
1871       {
1872         PyObject *next()
1873         {
1874           MEDCouplingUMeshCellEntry *ret=self->nextt();
1875           if(ret)
1876             return SWIG_NewPointerObj(SWIG_as_voidptr(ret),SWIGTYPE_p_MEDCoupling__MEDCouplingUMeshCellEntry,SWIG_POINTER_OWN | 0);
1877           else
1878             {
1879               PyErr_SetString(PyExc_StopIteration,"No more data.");
1880               return 0;
1881             }
1882         }
1883       }
1884   };
1885
1886   class MEDCouplingUMeshCellByTypeEntry
1887   {
1888   public:
1889     ~MEDCouplingUMeshCellByTypeEntry();
1890     %extend
1891       {
1892         MEDCouplingUMeshCellByTypeIterator *__iter__()
1893         {
1894           return self->iterator();
1895         }
1896       }
1897   };
1898
1899   class MEDCouplingUMeshCellEntry
1900   {
1901   public:
1902     INTERP_KERNEL::NormalizedCellType getType() const;
1903     int getNumberOfElems() const;
1904     %extend
1905       {
1906         MEDCouplingUMeshCellIterator *__iter__()
1907         {
1908           return self->iterator();
1909         }
1910       }
1911   };
1912   
1913   //== MEDCouplingUMesh
1914
1915   class MEDCouplingUMesh : public MEDCoupling::MEDCouplingPointSet
1916   {
1917   public:
1918     static MEDCouplingUMesh *New() throw(INTERP_KERNEL::Exception);
1919     static MEDCouplingUMesh *New(const char *meshName, int meshDim) throw(INTERP_KERNEL::Exception);
1920     void checkConsistencyLight() const throw(INTERP_KERNEL::Exception);
1921     void setMeshDimension(int meshDim) throw(INTERP_KERNEL::Exception);
1922     void allocateCells(int nbOfCells=0) throw(INTERP_KERNEL::Exception);
1923     void finishInsertingCells() throw(INTERP_KERNEL::Exception);
1924     MEDCouplingUMeshCellByTypeEntry *cellsByType() throw(INTERP_KERNEL::Exception);
1925     void setConnectivity(DataArrayInt *conn, DataArrayInt *connIndex, bool isComputingTypes=true) throw(INTERP_KERNEL::Exception);
1926     INTERP_KERNEL::NormalizedCellType getTypeOfCell(int cellId) const throw(INTERP_KERNEL::Exception);
1927     void setPartOfMySelfSlice(int start, int end, int step, const MEDCouplingUMesh& otherOnSameCoordsThanThis) throw(INTERP_KERNEL::Exception);
1928     int getNodalConnectivityArrayLen() const throw(INTERP_KERNEL::Exception);
1929     void computeTypes() throw(INTERP_KERNEL::Exception);
1930     std::string reprConnectivityOfThis() const throw(INTERP_KERNEL::Exception);
1931     MEDCouplingUMesh *buildSetInstanceFromThis(int spaceDim) const throw(INTERP_KERNEL::Exception);
1932     //tools
1933     DataArrayInt *conformize2D(double eps) throw(INTERP_KERNEL::Exception);
1934     DataArrayInt *conformize3D(double eps) throw(INTERP_KERNEL::Exception);
1935     DataArrayInt *colinearize2D(double eps) throw(INTERP_KERNEL::Exception);
1936     void shiftNodeNumbersInConn(int delta) throw(INTERP_KERNEL::Exception);
1937     std::vector<bool> getQuadraticStatus() const throw(INTERP_KERNEL::Exception);
1938     DataArrayInt *findCellIdsOnBoundary() const throw(INTERP_KERNEL::Exception);
1939     MEDCouplingUMesh *computeSkin() const throw(INTERP_KERNEL::Exception);
1940     bool checkConsecutiveCellTypes() const throw(INTERP_KERNEL::Exception);
1941     bool checkConsecutiveCellTypesForMEDFileFrmt() const throw(INTERP_KERNEL::Exception);
1942     DataArrayInt *rearrange2ConsecutiveCellTypes() throw(INTERP_KERNEL::Exception);
1943     DataArrayInt *sortCellsInMEDFileFrmt() throw(INTERP_KERNEL::Exception);
1944     DataArrayInt *getRenumArrForMEDFileFrmt() const throw(INTERP_KERNEL::Exception);
1945     DataArrayInt *convertCellArrayPerGeoType(const DataArrayInt *da) const throw(INTERP_KERNEL::Exception);
1946     MEDCouplingUMesh *buildDescendingConnectivity(DataArrayInt *desc, DataArrayInt *descIndx, DataArrayInt *revDesc, DataArrayInt *revDescIndx) const throw(INTERP_KERNEL::Exception);
1947     MEDCouplingUMesh *buildDescendingConnectivity2(DataArrayInt *desc, DataArrayInt *descIndx, DataArrayInt *revDesc, DataArrayInt *revDescIndx) const throw(INTERP_KERNEL::Exception);
1948     MEDCouplingUMesh *explode3DMeshTo1D(DataArrayInt *desc, DataArrayInt *descIndx, DataArrayInt *revDesc, DataArrayInt *revDescIndx) const throw(INTERP_KERNEL::Exception);
1949     MEDCouplingUMesh *explodeMeshIntoMicroEdges(DataArrayInt *desc, DataArrayInt *descIndx, DataArrayInt *revDesc, DataArrayInt *revDescIndx) const throw(INTERP_KERNEL::Exception);
1950     void orientCorrectlyPolyhedrons() throw(INTERP_KERNEL::Exception);
1951     bool isPresenceOfQuadratic() const throw(INTERP_KERNEL::Exception);
1952     bool isFullyQuadratic() const throw(INTERP_KERNEL::Exception);
1953     MEDCouplingFieldDouble *buildDirectionVectorField() const throw(INTERP_KERNEL::Exception);
1954     bool isContiguous1D() const throw(INTERP_KERNEL::Exception);
1955     void tessellate2D(double eps) throw(INTERP_KERNEL::Exception);
1956     void convertQuadraticCellsToLinear() throw(INTERP_KERNEL::Exception);
1957     DataArrayInt *convertLinearCellsToQuadratic(int conversionType=0) throw(INTERP_KERNEL::Exception);
1958     void convertDegeneratedCells() throw(INTERP_KERNEL::Exception);
1959     bool areOnlySimplexCells() const throw(INTERP_KERNEL::Exception);
1960     MEDCouplingFieldDouble *getEdgeRatioField() const throw(INTERP_KERNEL::Exception);
1961     MEDCouplingFieldDouble *getAspectRatioField() const throw(INTERP_KERNEL::Exception);
1962     MEDCouplingFieldDouble *getWarpField() const throw(INTERP_KERNEL::Exception);
1963     MEDCouplingFieldDouble *getSkewField() const throw(INTERP_KERNEL::Exception);
1964     DataArrayDouble *computePlaneEquationOf3DFaces() const throw(INTERP_KERNEL::Exception);
1965     DataArrayInt *convexEnvelop2D() throw(INTERP_KERNEL::Exception);
1966     std::string cppRepr() const throw(INTERP_KERNEL::Exception);
1967     DataArrayInt *findAndCorrectBadOriented3DExtrudedCells() throw(INTERP_KERNEL::Exception);
1968     DataArrayInt *findAndCorrectBadOriented3DCells() throw(INTERP_KERNEL::Exception);
1969     MEDCoupling::MEDCoupling1GTUMesh *convertIntoSingleGeoTypeMesh() const throw(INTERP_KERNEL::Exception);
1970     MEDCouplingSkyLineArray *generateGraph() const throw(INTERP_KERNEL::Exception);
1971     DataArrayInt *convertNodalConnectivityToStaticGeoTypeMesh() const throw(INTERP_KERNEL::Exception);
1972     DataArrayInt *buildUnionOf2DMesh() const throw(INTERP_KERNEL::Exception);
1973     DataArrayInt *buildUnionOf3DMesh() const throw(INTERP_KERNEL::Exception);
1974     DataArrayInt *orderConsecutiveCells1D() const throw(INTERP_KERNEL::Exception);
1975     DataArrayDouble *getBoundingBoxForBBTreeFast() const throw(INTERP_KERNEL::Exception);
1976     DataArrayDouble *getBoundingBoxForBBTree2DQuadratic(double arcDetEps=1e-12) const throw(INTERP_KERNEL::Exception);
1977     DataArrayDouble *getBoundingBoxForBBTree1DQuadratic(double arcDetEps=1e-12) const throw(INTERP_KERNEL::Exception);
1978     void changeOrientationOfCells() throw(INTERP_KERNEL::Exception);
1979     int split2DCells(const DataArrayInt *desc, const DataArrayInt *descI, const DataArrayInt *subNodesInSeg, const DataArrayInt *subNodesInSegI, const DataArrayInt *midOpt=0, const DataArrayInt *midOptI=0) throw(INTERP_KERNEL::Exception);
1980     static MEDCouplingUMesh *Build0DMeshFromCoords(DataArrayDouble *da) throw(INTERP_KERNEL::Exception);
1981     static MEDCouplingUMesh *MergeUMeshes(const MEDCouplingUMesh *mesh1, const MEDCouplingUMesh *mesh2) throw(INTERP_KERNEL::Exception);
1982     static MEDCouplingUMesh *MergeUMeshesOnSameCoords(const MEDCouplingUMesh *mesh1, const MEDCouplingUMesh *mesh2) throw(INTERP_KERNEL::Exception);
1983     static DataArrayInt *ComputeSpreadZoneGradually(const DataArrayInt *arrIn, const DataArrayInt *arrIndxIn) throw(INTERP_KERNEL::Exception);
1984     static DataArrayInt *ComputeRangesFromTypeDistribution(const std::vector<int>& code) throw(INTERP_KERNEL::Exception);
1985     %extend {
1986       MEDCouplingUMesh() throw(INTERP_KERNEL::Exception)
1987       {
1988         return MEDCouplingUMesh::New();
1989       }
1990       
1991       MEDCouplingUMesh(const char *meshName, int meshDim) throw(INTERP_KERNEL::Exception)
1992       {
1993         return MEDCouplingUMesh::New(meshName,meshDim);
1994       }
1995
1996       // serialization
1997       static PyObject *___new___(PyObject *cls, PyObject *args) throw(INTERP_KERNEL::Exception)
1998       {
1999         return NewMethWrapCallInitOnlyIfEmptyDictInInput(cls,args,"MEDCouplingUMesh");
2000       }
2001
2002       std::string __str__() const throw(INTERP_KERNEL::Exception)
2003       {
2004         return self->simpleRepr();
2005       }
2006       
2007       std::string __repr__() const throw(INTERP_KERNEL::Exception)
2008       {
2009         std::ostringstream oss;
2010         self->reprQuickOverview(oss);
2011         return oss.str();
2012       }
2013       
2014       MEDCouplingUMeshCellIterator *__iter__() throw(INTERP_KERNEL::Exception)
2015       {
2016         return self->cellIterator();
2017       }
2018
2019       static MEDCouplingUMesh *Build1DMeshFromCoords(DataArrayDouble *da) throw(INTERP_KERNEL::Exception)
2020       {
2021         MCAuto<MEDCouplingUMesh> ret(MEDCouplingUMesh::Build1DMeshFromCoords(da));
2022         return ret.retn();
2023       }
2024       
2025       PyObject *getAllGeoTypesSorted() const throw(INTERP_KERNEL::Exception)
2026       {
2027         std::vector<INTERP_KERNEL::NormalizedCellType> result=self->getAllGeoTypesSorted();
2028         std::vector<INTERP_KERNEL::NormalizedCellType>::const_iterator iL=result.begin();
2029         PyObject *res=PyList_New(result.size());
2030         for(int i=0;iL!=result.end(); i++, iL++)
2031           PyList_SetItem(res,i,PyInt_FromLong(*iL));
2032         return res;
2033       }
2034       
2035       void setPartOfMySelf(PyObject *li, const MEDCouplingUMesh& otherOnSameCoordsThanThis) throw(INTERP_KERNEL::Exception)
2036       {
2037         int sw;
2038         int singleVal;
2039         std::vector<int> multiVal;
2040         std::pair<int, std::pair<int,int> > slic;
2041         MEDCoupling::DataArrayInt *daIntTyypp=0;
2042         int nbc=self->getNumberOfCells();
2043         convertIntStarOrSliceLikePyObjToCpp(li,nbc,sw,singleVal,multiVal,slic,daIntTyypp);
2044         switch(sw)
2045           {
2046           case 1:
2047             {
2048               if(singleVal>=nbc)
2049                 {
2050                   std::ostringstream oss;
2051                   oss << "Requesting for cell id " << singleVal << " having only " << nbc << " cells !";
2052                   throw INTERP_KERNEL::Exception(oss.str().c_str());
2053                 }
2054               if(singleVal>=0)
2055                 {
2056                   self->setPartOfMySelf(&singleVal,&singleVal+1,otherOnSameCoordsThanThis);
2057                   break;
2058                 }
2059               else
2060                 {
2061                   if(nbc+singleVal>0)
2062                     {
2063                       int tmp=nbc+singleVal;
2064                       self->setPartOfMySelf(&tmp,&tmp+1,otherOnSameCoordsThanThis);
2065                       break;
2066                     }
2067                   else
2068                     {
2069                       std::ostringstream oss;
2070                       oss << "Requesting for cell id " << singleVal << " having only " << nbc << " cells !";
2071                       throw INTERP_KERNEL::Exception(oss.str().c_str());
2072                     }
2073                 }
2074             }
2075           case 2:
2076             {
2077               self->setPartOfMySelf(&multiVal[0],&multiVal[0]+multiVal.size(),otherOnSameCoordsThanThis);
2078               break;
2079             }
2080           case 4:
2081             {
2082               if(!daIntTyypp)
2083                 throw INTERP_KERNEL::Exception("MEDCouplingUMesh::setPartOfMySelf : null instance has been given in input !");
2084               daIntTyypp->checkAllocated();
2085               self->setPartOfMySelf(daIntTyypp->begin(),daIntTyypp->end(),otherOnSameCoordsThanThis);
2086               break;
2087             }
2088           default:
2089             throw INTERP_KERNEL::Exception("MEDCouplingUMesh::setPartOfMySelf : unrecognized type in input ! Possibilities are : int, list or tuple of int DataArrayInt instance !");
2090           }
2091       }
2092
2093       void __setitem__(PyObject *li, const MEDCouplingUMesh& otherOnSameCoordsThanThis) throw(INTERP_KERNEL::Exception)
2094       {
2095         int sw;
2096         int singleVal;
2097         std::vector<int> multiVal;
2098         std::pair<int, std::pair<int,int> > slic;
2099         MEDCoupling::DataArrayInt *daIntTyypp=0;
2100         int nbc=self->getNumberOfCells();
2101         convertIntStarOrSliceLikePyObjToCpp(li,nbc,sw,singleVal,multiVal,slic,daIntTyypp);
2102         switch(sw)
2103           {
2104           case 1:
2105             {
2106               if(singleVal>=nbc)
2107                 {
2108                   std::ostringstream oss;
2109                   oss << "Requesting for cell id " << singleVal << " having only " << nbc << " cells !";
2110                   throw INTERP_KERNEL::Exception(oss.str().c_str());
2111                 }
2112               if(singleVal>=0)
2113                 {
2114                   self->setPartOfMySelf(&singleVal,&singleVal+1,otherOnSameCoordsThanThis);
2115                   break;
2116                 }
2117               else
2118                 {
2119                   if(nbc+singleVal>0)
2120                     {
2121                       int tmp=nbc+singleVal;
2122                       self->setPartOfMySelf(&tmp,&tmp+1,otherOnSameCoordsThanThis);
2123                       break;
2124                     }
2125                   else
2126                     {
2127                       std::ostringstream oss;
2128                       oss << "Requesting for cell id " << singleVal << " having only " << nbc << " cells !";
2129                       throw INTERP_KERNEL::Exception(oss.str().c_str());
2130                     }
2131                 }
2132             }
2133           case 2:
2134             {
2135               self->setPartOfMySelf(&multiVal[0],&multiVal[0]+multiVal.size(),otherOnSameCoordsThanThis);
2136               break;
2137             }
2138           case 3:
2139             {
2140               self->setPartOfMySelfSlice(slic.first,slic.second.first,slic.second.second,otherOnSameCoordsThanThis);
2141               break;
2142             }
2143           case 4:
2144             {
2145               if(!daIntTyypp)
2146                 throw INTERP_KERNEL::Exception("MEDCouplingUMesh::__setitem__ : null instance has been given in input !");
2147               daIntTyypp->checkAllocated();
2148               self->setPartOfMySelf(daIntTyypp->begin(),daIntTyypp->end(),otherOnSameCoordsThanThis);
2149               break;
2150             }
2151           default:
2152             throw INTERP_KERNEL::Exception("MEDCouplingUMesh::__setitem__ : unrecognized type in input ! Possibilities are : int, list or tuple of int, slice, DataArrayInt instance !");
2153           }
2154       }
2155
2156       void insertNextCell(INTERP_KERNEL::NormalizedCellType type, int size, PyObject *li) throw(INTERP_KERNEL::Exception)
2157       {
2158         int szArr,sw,iTypppArr;
2159         std::vector<int> stdvecTyyppArr;
2160         const int *tmp=convertIntStarLikePyObjToCppIntStar(li,sw,szArr,iTypppArr,stdvecTyyppArr);
2161         if(size>szArr)
2162           {
2163             std::ostringstream oss; oss << "Wrap of MEDCouplingUMesh::insertNextCell : request of connectivity with length " << size << " whereas the length of input is " << szArr << " !";
2164             throw INTERP_KERNEL::Exception(oss.str().c_str());
2165           }
2166         self->insertNextCell(type,size,tmp);
2167       }
2168
2169       void insertNextCell(INTERP_KERNEL::NormalizedCellType type, PyObject *li) throw(INTERP_KERNEL::Exception)
2170       {
2171         int szArr,sw,iTypppArr;
2172         std::vector<int> stdvecTyyppArr;
2173         const int *tmp=convertIntStarLikePyObjToCppIntStar(li,sw,szArr,iTypppArr,stdvecTyyppArr);
2174         self->insertNextCell(type,szArr,tmp);
2175       }
2176       
2177       DataArrayInt *getNodalConnectivity() throw(INTERP_KERNEL::Exception)
2178       {
2179         DataArrayInt *ret=self->getNodalConnectivity();
2180         if(ret)
2181           ret->incrRef();
2182         return ret;
2183       }
2184       DataArrayInt *getNodalConnectivityIndex() throw(INTERP_KERNEL::Exception)
2185       {
2186         DataArrayInt *ret=self->getNodalConnectivityIndex();
2187         if(ret)
2188           ret->incrRef();
2189         return ret;
2190       }
2191       
2192       static PyObject *ComputeSpreadZoneGraduallyFromSeed(PyObject *seed, const DataArrayInt *arrIn, const DataArrayInt *arrIndxIn, int nbOfDepthPeeling=-1) throw(INTERP_KERNEL::Exception)
2193       {
2194         int szArr,sw,iTypppArr;
2195         std::vector<int> stdvecTyyppArr;
2196         const int *seedPtr=convertIntStarLikePyObjToCppIntStar(seed,sw,szArr,iTypppArr,stdvecTyyppArr);
2197         int nbOfDepthPeelingPerformed=0;
2198         DataArrayInt *ret0=MEDCouplingUMesh::ComputeSpreadZoneGraduallyFromSeed(seedPtr,seedPtr+szArr,arrIn,arrIndxIn,nbOfDepthPeeling,nbOfDepthPeelingPerformed);
2199         PyObject *res=PyTuple_New(2);
2200         PyTuple_SetItem(res,0,SWIG_NewPointerObj(SWIG_as_voidptr(ret0),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2201         PyTuple_SetItem(res,1,PyInt_FromLong(nbOfDepthPeelingPerformed));
2202         return res;
2203       }
2204
2205       static PyObject *FindCommonCellsAlg(int compType, int startCellId, const DataArrayInt *nodal, const DataArrayInt *nodalI, const DataArrayInt *revNodal, const DataArrayInt *revNodalI) throw(INTERP_KERNEL::Exception)
2206       {
2207         DataArrayInt *v0=0,*v1=0;
2208         MEDCouplingUMesh::FindCommonCellsAlg(compType,startCellId,nodal,nodalI,revNodal,revNodalI,v0,v1);
2209         PyObject *res = PyList_New(2);
2210         PyList_SetItem(res,0,SWIG_NewPointerObj(SWIG_as_voidptr(v0),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2211         PyList_SetItem(res,1,SWIG_NewPointerObj(SWIG_as_voidptr(v1),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2212         return res;
2213       }
2214       
2215       PyObject *distanceToPoint(PyObject *point) const throw(INTERP_KERNEL::Exception)
2216       {
2217         double val;
2218         DataArrayDouble *a;
2219         DataArrayDoubleTuple *aa;
2220         std::vector<double> bb;
2221         int sw;
2222         int nbOfCompo=self->getSpaceDimension();
2223         const double *pt=convertObjToPossibleCpp5_Safe(point,sw,val,a,aa,bb,"Python wrap of MEDCouplingUMesh::distanceToPoint",1,nbOfCompo,true);
2224         //
2225         int cellId=-1;
2226         double ret0=self->distanceToPoint(pt,pt+nbOfCompo,cellId);
2227         PyObject *ret=PyTuple_New(2);
2228         PyTuple_SetItem(ret,0,PyFloat_FromDouble(ret0));
2229         PyTuple_SetItem(ret,1,PyInt_FromLong(cellId));
2230         return ret;
2231       }
2232
2233       PyObject *distanceToPoints(const DataArrayDouble *pts) const throw(INTERP_KERNEL::Exception)
2234       {
2235         DataArrayInt *ret1=0;
2236         DataArrayDouble *ret0=self->distanceToPoints(pts,ret1);
2237         PyObject *ret=PyTuple_New(2);
2238         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(ret0),SWIGTYPE_p_MEDCoupling__DataArrayDouble, SWIG_POINTER_OWN | 0 ));
2239         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(ret1),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2240         return ret;
2241       }
2242
2243       PyObject *tetrahedrize(int policy) throw(INTERP_KERNEL::Exception)
2244       {
2245         int ret2(-1);
2246         DataArrayInt *ret1(0);
2247         MEDCoupling1SGTUMesh *ret0(self->tetrahedrize(policy,ret1,ret2));
2248         PyObject *ret=PyTuple_New(3);
2249         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(ret0),SWIGTYPE_p_MEDCoupling__MEDCoupling1SGTUMesh, SWIG_POINTER_OWN | 0 ));
2250         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(ret1),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2251         PyTuple_SetItem(ret,2,PyInt_FromLong(ret2));
2252         return ret;
2253       }
2254       
2255       PyObject *checkButterflyCells(double eps=1e-12) throw(INTERP_KERNEL::Exception)
2256       {
2257         std::vector<int> cells;
2258         self->checkButterflyCells(cells,eps);
2259         DataArrayInt *ret=DataArrayInt::New();
2260         ret->alloc((int)cells.size(),1);
2261         std::copy(cells.begin(),cells.end(),ret->getPointer());
2262         return SWIG_NewPointerObj(SWIG_as_voidptr(ret),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 );
2263       }
2264
2265       PyObject *splitByType() const throw(INTERP_KERNEL::Exception)
2266       {
2267         std::vector<MEDCouplingUMesh *> ms=self->splitByType();
2268         int sz=ms.size();
2269         PyObject *ret = PyList_New(sz);
2270         for(int i=0;i<sz;i++)
2271           PyList_SetItem(ret,i,SWIG_NewPointerObj(SWIG_as_voidptr(ms[i]),SWIGTYPE_p_MEDCoupling__MEDCouplingUMesh, SWIG_POINTER_OWN | 0 ));
2272         return ret;
2273       }
2274
2275       PyObject *partitionBySpreadZone() const throw(INTERP_KERNEL::Exception)
2276       {
2277         std::vector<DataArrayInt *> retCpp=self->partitionBySpreadZone();
2278         int sz=retCpp.size();
2279         PyObject *ret=PyList_New(sz);
2280         for(int i=0;i<sz;i++)
2281           PyList_SetItem(ret,i,SWIG_NewPointerObj(SWIG_as_voidptr(retCpp[i]),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2282         return ret;
2283       }
2284
2285       static PyObject *PartitionBySpreadZone(const DataArrayInt *arrIn, const DataArrayInt *arrIndxIn) throw(INTERP_KERNEL::Exception)
2286       {
2287         std::vector<DataArrayInt *> retCpp(MEDCouplingUMesh::PartitionBySpreadZone(arrIn,arrIndxIn));
2288         int sz=retCpp.size();
2289         PyObject *ret=PyList_New(sz);
2290         for(int i=0;i<sz;i++)
2291           PyList_SetItem(ret,i,SWIG_NewPointerObj(SWIG_as_voidptr(retCpp[i]),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2292         return ret;
2293       }
2294
2295       PyObject *keepSpecifiedCells(INTERP_KERNEL::NormalizedCellType type, PyObject *ids) const throw(INTERP_KERNEL::Exception)
2296       {
2297         int size;
2298         INTERP_KERNEL::AutoPtr<int> tmp=convertPyToNewIntArr2(ids,&size);
2299         MEDCouplingUMesh *ret=self->keepSpecifiedCells(type,tmp,tmp+size);
2300         return SWIG_NewPointerObj(SWIG_as_voidptr(ret),SWIGTYPE_p_MEDCoupling__MEDCouplingUMesh, SWIG_POINTER_OWN | 0 );
2301       }
2302
2303       bool checkConsecutiveCellTypesAndOrder(PyObject *li) const throw(INTERP_KERNEL::Exception)
2304       {
2305         int sz;
2306         INTERP_KERNEL::AutoPtr<INTERP_KERNEL::NormalizedCellType> order=(INTERP_KERNEL::NormalizedCellType *)convertPyToNewIntArr2(li,&sz);
2307         bool ret=self->checkConsecutiveCellTypesAndOrder(order,order+sz);
2308         return ret;
2309       }
2310
2311       DataArrayInt *getRenumArrForConsecutiveCellTypesSpec(PyObject *li) const throw(INTERP_KERNEL::Exception)
2312       {
2313         int sz;
2314         INTERP_KERNEL::AutoPtr<INTERP_KERNEL::NormalizedCellType> order=(INTERP_KERNEL::NormalizedCellType *)convertPyToNewIntArr2(li,&sz);
2315         DataArrayInt *ret=self->getRenumArrForConsecutiveCellTypesSpec(order,(INTERP_KERNEL::NormalizedCellType *)order+sz);
2316         return ret;
2317       }
2318
2319       PyObject *findNodesToDuplicate(const MEDCouplingUMesh& otherDimM1OnSameCoords) const throw(INTERP_KERNEL::Exception)
2320       {
2321         DataArrayInt *tmp0=0,*tmp1=0,*tmp2=0;
2322         self->findNodesToDuplicate(otherDimM1OnSameCoords,tmp0,tmp1,tmp2);
2323         PyObject *ret=PyTuple_New(3);
2324         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(tmp0),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2325         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(tmp1),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2326         PyTuple_SetItem(ret,2,SWIG_NewPointerObj(SWIG_as_voidptr(tmp2),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2327         return ret;
2328       }
2329
2330       PyObject *findCellIdsLyingOn(const MEDCouplingUMesh& otherDimM1OnSameCoords) const throw(INTERP_KERNEL::Exception)
2331       {
2332         DataArrayInt *tmp0=0,*tmp1=0;
2333         self->findCellIdsLyingOn(otherDimM1OnSameCoords,tmp0,tmp1);
2334         PyObject *ret=PyTuple_New(2);
2335         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(tmp0),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2336         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(tmp1),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2337         return ret;
2338       }
2339
2340       void duplicateNodes(PyObject *li) throw(INTERP_KERNEL::Exception)
2341       {
2342         int sw;
2343         int singleVal;
2344         std::vector<int> multiVal;
2345         std::pair<int, std::pair<int,int> > slic;
2346         MEDCoupling::DataArrayInt *daIntTyypp=0;
2347         convertIntStarOrSliceLikePyObjToCpp(li,self->getNumberOfNodes(),sw,singleVal,multiVal,slic,daIntTyypp);
2348         switch(sw)
2349           {
2350           case 1:
2351             return self->duplicateNodes(&singleVal,&singleVal+1);
2352           case 2:
2353             return self->duplicateNodes(&multiVal[0],&multiVal[0]+multiVal.size());
2354           case 4:
2355             return self->duplicateNodes(daIntTyypp->begin(),daIntTyypp->end());
2356           default:
2357             throw INTERP_KERNEL::Exception("MEDCouplingUMesh::duplicateNodes : unrecognized type entered, expected list of int, tuple of int or DataArrayInt !");
2358           }
2359       }
2360
2361       void duplicateNodesInConn(PyObject *li, int offset) throw(INTERP_KERNEL::Exception)
2362       {
2363         int sw;
2364         int singleVal;
2365         std::vector<int> multiVal;
2366         std::pair<int, std::pair<int,int> > slic;
2367         MEDCoupling::DataArrayInt *daIntTyypp=0;
2368         convertIntStarOrSliceLikePyObjToCpp(li,self->getNumberOfNodes(),sw,singleVal,multiVal,slic,daIntTyypp);
2369         switch(sw)
2370           {
2371           case 1:
2372             return self->duplicateNodesInConn(&singleVal,&singleVal+1,offset);
2373           case 2:
2374             return self->duplicateNodesInConn(&multiVal[0],&multiVal[0]+multiVal.size(),offset);
2375           case 4:
2376             return self->duplicateNodesInConn(daIntTyypp->begin(),daIntTyypp->end(),offset);
2377           default:
2378             throw INTERP_KERNEL::Exception("MEDCouplingUMesh::duplicateNodesInConn : unrecognized type entered, expected list of int, tuple of int or DataArrayInt !");
2379           }
2380       }
2381
2382       PyObject *getLevArrPerCellTypes(PyObject *li) const throw(INTERP_KERNEL::Exception)
2383       {
2384         int sz;
2385         INTERP_KERNEL::AutoPtr<INTERP_KERNEL::NormalizedCellType> order=(INTERP_KERNEL::NormalizedCellType *)convertPyToNewIntArr2(li,&sz);
2386         DataArrayInt *tmp0,*tmp1=0;
2387         tmp0=self->getLevArrPerCellTypes(order,(INTERP_KERNEL::NormalizedCellType *)order+sz,tmp1);
2388         PyObject *ret=PyTuple_New(2);
2389         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(tmp0),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2390         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(tmp1),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2391         return ret;
2392       }
2393
2394       PyObject *convertNodalConnectivityToDynamicGeoTypeMesh() const throw(INTERP_KERNEL::Exception)
2395       {
2396         DataArrayInt *ret0=0,*ret1=0;
2397         self->convertNodalConnectivityToDynamicGeoTypeMesh(ret0,ret1);
2398         PyObject *ret=PyTuple_New(2);
2399         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(ret0),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2400         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(ret1),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2401         return ret;
2402       }
2403
2404       static PyObject *AggregateSortedByTypeMeshesOnSameCoords(PyObject *ms) throw(INTERP_KERNEL::Exception)
2405       {
2406         std::vector<const MEDCoupling::MEDCouplingUMesh *> meshes;
2407         convertFromPyObjVectorOfObj<const MEDCoupling::MEDCouplingUMesh *>(ms,SWIGTYPE_p_MEDCoupling__MEDCouplingUMesh,"MEDCouplingUMesh",meshes);
2408         DataArrayInt *ret1=0,*ret2=0;
2409         MEDCouplingUMesh *ret0=MEDCouplingUMesh::AggregateSortedByTypeMeshesOnSameCoords(meshes,ret1,ret2);
2410         PyObject *ret=PyTuple_New(3);
2411         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(ret0),SWIGTYPE_p_MEDCoupling__MEDCouplingUMesh, SWIG_POINTER_OWN | 0 ));
2412         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(ret1),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2413         PyTuple_SetItem(ret,2,SWIG_NewPointerObj(SWIG_as_voidptr(ret2),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2414         return ret;
2415       }
2416
2417       static PyObject *MergeUMeshesOnSameCoords(PyObject *ms) throw(INTERP_KERNEL::Exception)
2418       {
2419         std::vector<const MEDCoupling::MEDCouplingUMesh *> meshes;
2420         convertFromPyObjVectorOfObj<const MEDCoupling::MEDCouplingUMesh *>(ms,SWIGTYPE_p_MEDCoupling__MEDCouplingUMesh,"MEDCouplingUMesh",meshes);
2421         MEDCouplingUMesh *ret=MEDCouplingUMesh::MergeUMeshesOnSameCoords(meshes);
2422         return convertMesh(ret, SWIG_POINTER_OWN | 0 );
2423       }
2424
2425       static PyObject *FuseUMeshesOnSameCoords(PyObject *ms, int compType) throw(INTERP_KERNEL::Exception)
2426       {
2427         int sz;
2428         std::vector<const MEDCouplingUMesh *> meshes;
2429         convertFromPyObjVectorOfObj<const MEDCoupling::MEDCouplingUMesh *>(ms,SWIGTYPE_p_MEDCoupling__MEDCouplingUMesh,"MEDCouplingUMesh",meshes);
2430         std::vector<DataArrayInt *> corr;
2431         MEDCouplingUMesh *um=MEDCouplingUMesh::FuseUMeshesOnSameCoords(meshes,compType,corr);
2432         sz=corr.size();
2433         PyObject *ret1=PyList_New(sz);
2434         for(int i=0;i<sz;i++)
2435           PyList_SetItem(ret1,i,SWIG_NewPointerObj(SWIG_as_voidptr(corr[i]),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2436         PyObject *ret=PyList_New(2);
2437         PyList_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(um),SWIGTYPE_p_MEDCoupling__MEDCouplingUMesh, SWIG_POINTER_OWN | 0 ));
2438         PyList_SetItem(ret,1,ret1);
2439         return ret;
2440       }
2441
2442       static void PutUMeshesOnSameAggregatedCoords(PyObject *ms) throw(INTERP_KERNEL::Exception)
2443       {
2444         std::vector<MEDCouplingUMesh *> meshes;
2445         convertFromPyObjVectorOfObj<MEDCoupling::MEDCouplingUMesh *>(ms,SWIGTYPE_p_MEDCoupling__MEDCouplingUMesh,"MEDCouplingUMesh",meshes);
2446         MEDCouplingUMesh::PutUMeshesOnSameAggregatedCoords(meshes);
2447       }
2448
2449       static void MergeNodesOnUMeshesSharingSameCoords(PyObject *ms, double eps) throw(INTERP_KERNEL::Exception)
2450       {
2451         std::vector<MEDCouplingUMesh *> meshes;
2452         convertFromPyObjVectorOfObj<MEDCoupling::MEDCouplingUMesh *>(ms,SWIGTYPE_p_MEDCoupling__MEDCouplingUMesh,"MEDCouplingUMesh",meshes);
2453         MEDCouplingUMesh::MergeNodesOnUMeshesSharingSameCoords(meshes,eps);
2454       }
2455
2456       static bool RemoveIdsFromIndexedArrays(PyObject *li, DataArrayInt *arr, DataArrayInt *arrIndx, int offsetForRemoval=0) throw(INTERP_KERNEL::Exception)
2457       {
2458         int sw;
2459         int singleVal;
2460         std::vector<int> multiVal;
2461         std::pair<int, std::pair<int,int> > slic;
2462         MEDCoupling::DataArrayInt *daIntTyypp=0;
2463         if(!arrIndx)
2464           throw INTERP_KERNEL::Exception("MEDCouplingUMesh::RemoveIdsFromIndexedArrays : null pointer as arrIndex !");
2465         convertIntStarOrSliceLikePyObjToCpp(li,arrIndx->getNumberOfTuples()-1,sw,singleVal,multiVal,slic,daIntTyypp);
2466         switch(sw)
2467           {
2468           case 1:
2469             return MEDCouplingUMesh::RemoveIdsFromIndexedArrays(&singleVal,&singleVal+1,arr,arrIndx,offsetForRemoval);
2470           case 2:
2471             return MEDCouplingUMesh::RemoveIdsFromIndexedArrays(&multiVal[0],&multiVal[0]+multiVal.size(),arr,arrIndx,offsetForRemoval);
2472           case 4:
2473             return MEDCouplingUMesh::RemoveIdsFromIndexedArrays(daIntTyypp->begin(),daIntTyypp->end(),arr,arrIndx,offsetForRemoval);
2474           default:
2475             throw INTERP_KERNEL::Exception("MEDCouplingUMesh::RemoveIdsFromIndexedArrays : unrecognized type entered, expected list of int, tuple of int or DataArrayInt !");
2476           }
2477       }
2478       
2479       static PyObject *ExtractFromIndexedArrays(PyObject *li, const DataArrayInt *arrIn, const DataArrayInt *arrIndxIn) throw(INTERP_KERNEL::Exception)
2480       {
2481         DataArrayInt *arrOut=0,*arrIndexOut=0;
2482         int sw;
2483         int singleVal;
2484         std::vector<int> multiVal;
2485         std::pair<int, std::pair<int,int> > slic;
2486         MEDCoupling::DataArrayInt *daIntTyypp=0;
2487         if(!arrIndxIn)
2488           throw INTERP_KERNEL::Exception("MEDCouplingUMesh::ExtractFromIndexedArrays : null pointer as arrIndxIn !");
2489         convertIntStarOrSliceLikePyObjToCpp(li,arrIndxIn->getNumberOfTuples()-1,sw,singleVal,multiVal,slic,daIntTyypp);
2490         switch(sw)
2491           {
2492           case 1:
2493             {
2494               MEDCouplingUMesh::ExtractFromIndexedArrays(&singleVal,&singleVal+1,arrIn,arrIndxIn,arrOut,arrIndexOut);
2495               break;
2496             }
2497           case 2:
2498             {
2499               MEDCouplingUMesh::ExtractFromIndexedArrays(&multiVal[0],&multiVal[0]+multiVal.size(),arrIn,arrIndxIn,arrOut,arrIndexOut);
2500               break;
2501             }
2502           case 4:
2503             {
2504               MEDCouplingUMesh::ExtractFromIndexedArrays(daIntTyypp->begin(),daIntTyypp->end(),arrIn,arrIndxIn,arrOut,arrIndexOut);
2505               break;
2506             }
2507           default:
2508             throw INTERP_KERNEL::Exception("MEDCouplingUMesh::ExtractFromIndexedArrays : unrecognized type entered, expected list of int, tuple of int or DataArrayInt !");
2509           }
2510         PyObject *ret=PyTuple_New(2);
2511         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(arrOut),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2512         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(arrIndexOut),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2513         return ret;
2514       }
2515
2516       static PyObject *ExtractFromIndexedArraysSlice(int strt, int stp, int step, const DataArrayInt *arrIn, const DataArrayInt *arrIndxIn) throw(INTERP_KERNEL::Exception)
2517       {
2518         DataArrayInt *arrOut=0,*arrIndexOut=0;
2519         MEDCouplingUMesh::ExtractFromIndexedArraysSlice(strt,stp,step,arrIn,arrIndxIn,arrOut,arrIndexOut);
2520         PyObject *ret=PyTuple_New(2);
2521         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(arrOut),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2522         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(arrIndexOut),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2523         return ret;
2524       }
2525
2526       static PyObject *ExtractFromIndexedArraysSlice(PyObject *slic, const DataArrayInt *arrIn, const DataArrayInt *arrIndxIn) throw(INTERP_KERNEL::Exception)
2527       {
2528         if(!PySlice_Check(slic))
2529           throw INTERP_KERNEL::Exception("ExtractFromIndexedArraysSlice (wrap) : the first param is not a pyslice !");
2530         Py_ssize_t strt=2,stp=2,step=2;
2531         PySliceObject *sliC=reinterpret_cast<PySliceObject *>(slic);
2532         if(!arrIndxIn)
2533           throw INTERP_KERNEL::Exception("ExtractFromIndexedArraysSlice (wrap) : last array is null !");
2534         arrIndxIn->checkAllocated();
2535         if(arrIndxIn->getNumberOfComponents()!=1)
2536           throw INTERP_KERNEL::Exception("ExtractFromIndexedArraysSlice (wrap) : number of components of last argument must be equal to one !");
2537         GetIndicesOfSlice(sliC,arrIndxIn->getNumberOfTuples(),&strt,&stp,&step,"ExtractFromIndexedArraysSlice (wrap) : Invalid slice regarding nb of elements !");
2538         DataArrayInt *arrOut=0,*arrIndexOut=0;
2539         MEDCouplingUMesh::ExtractFromIndexedArraysSlice(strt,stp,step,arrIn,arrIndxIn,arrOut,arrIndexOut);
2540         PyObject *ret=PyTuple_New(2);
2541         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(arrOut),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2542         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(arrIndexOut),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2543         return ret;
2544       }
2545
2546       static PyObject *SetPartOfIndexedArrays(PyObject *li,
2547                                               const DataArrayInt *arrIn, const DataArrayInt *arrIndxIn,
2548                                               const DataArrayInt *srcArr, const DataArrayInt *srcArrIndex) throw(INTERP_KERNEL::Exception)
2549       {
2550         DataArrayInt *arrOut=0,*arrIndexOut=0;
2551         int sw;
2552         int singleVal;
2553         std::vector<int> multiVal;
2554         std::pair<int, std::pair<int,int> > slic;
2555         MEDCoupling::DataArrayInt *daIntTyypp=0;
2556         if(!arrIndxIn)
2557           throw INTERP_KERNEL::Exception("MEDCouplingUMesh::SetPartOfIndexedArrays : null pointer as arrIndex !");
2558         convertIntStarOrSliceLikePyObjToCpp(li,arrIndxIn->getNumberOfTuples()-1,sw,singleVal,multiVal,slic,daIntTyypp);
2559         switch(sw)
2560           {
2561           case 1:
2562             {
2563               MEDCouplingUMesh::SetPartOfIndexedArrays(&singleVal,&singleVal+1,arrIn,arrIndxIn,srcArr,srcArrIndex,arrOut,arrIndexOut);
2564               break;
2565             }
2566           case 2:
2567             {
2568               MEDCouplingUMesh::SetPartOfIndexedArrays(&multiVal[0],&multiVal[0]+multiVal.size(),arrIn,arrIndxIn,srcArr,srcArrIndex,arrOut,arrIndexOut);
2569               break;
2570             }
2571           case 4:
2572             {
2573               MEDCouplingUMesh::SetPartOfIndexedArrays(daIntTyypp->begin(),daIntTyypp->end(),arrIn,arrIndxIn,srcArr,srcArrIndex,arrOut,arrIndexOut);
2574               break;
2575             }
2576           default:
2577             throw INTERP_KERNEL::Exception("MEDCouplingUMesh::SetPartOfIndexedArrays : unrecognized type entered, expected list of int, tuple of int or DataArrayInt !");
2578           }
2579         PyObject *ret=PyTuple_New(2);
2580         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(arrOut),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2581         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(arrIndexOut),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2582         return ret;
2583       }
2584
2585       static void SetPartOfIndexedArraysSameIdx(PyObject *li, DataArrayInt *arrIn, const DataArrayInt *arrIndxIn,
2586                                                 const DataArrayInt *srcArr, const DataArrayInt *srcArrIndex) throw(INTERP_KERNEL::Exception)
2587       {
2588         int sw;
2589         int singleVal;
2590         std::vector<int> multiVal;
2591         std::pair<int, std::pair<int,int> > slic;
2592         MEDCoupling::DataArrayInt *daIntTyypp=0;
2593         if(!arrIndxIn)
2594           throw INTERP_KERNEL::Exception("MEDCouplingUMesh::SetPartOfIndexedArraysSameIdx : null pointer as arrIndex !");
2595         convertIntStarOrSliceLikePyObjToCpp(li,arrIndxIn->getNumberOfTuples()-1,sw,singleVal,multiVal,slic,daIntTyypp);
2596         switch(sw)
2597           {
2598           case 1:
2599             {
2600               MEDCouplingUMesh::SetPartOfIndexedArraysSameIdx(&singleVal,&singleVal+1,arrIn,arrIndxIn,srcArr,srcArrIndex);
2601               break;
2602             }
2603           case 2:
2604             {
2605               MEDCouplingUMesh::SetPartOfIndexedArraysSameIdx(&multiVal[0],&multiVal[0]+multiVal.size(),arrIn,arrIndxIn,srcArr,srcArrIndex);
2606               break;
2607             }
2608           case 4:
2609             {
2610               MEDCouplingUMesh::SetPartOfIndexedArraysSameIdx(daIntTyypp->begin(),daIntTyypp->end(),arrIn,arrIndxIn,srcArr,srcArrIndex);
2611               break;
2612             }
2613           default:
2614             throw INTERP_KERNEL::Exception("MEDCouplingUMesh::SetPartOfIndexedArraysSameIdx : unrecognized type entered, expected list of int, tuple of int or DataArrayInt !");
2615           }
2616       }
2617
2618       PyObject *are2DCellsNotCorrectlyOriented(PyObject *vec, bool polyOnly) const throw(INTERP_KERNEL::Exception)
2619       {
2620         double val;
2621         DataArrayDouble *a;
2622         DataArrayDoubleTuple *aa;
2623         std::vector<double> bb;
2624         int sw;
2625         int spaceDim=self->getSpaceDimension();
2626         const char msg[]="Python wrap of MEDCouplingUMesh::are2DCellsNotCorrectlyOriented : ";
2627         const double *v=convertObjToPossibleCpp5_Safe(vec,sw,val,a,aa,bb,msg,1,spaceDim,true);
2628         //
2629         std::vector<int> cells;
2630         self->are2DCellsNotCorrectlyOriented(v,polyOnly,cells);
2631         DataArrayInt *ret=DataArrayInt::New();
2632         ret->alloc((int)cells.size(),1);
2633         std::copy(cells.begin(),cells.end(),ret->getPointer());
2634         return SWIG_NewPointerObj(SWIG_as_voidptr(ret),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 );
2635       }
2636
2637       void orientCorrectly2DCells(PyObject *vec, bool polyOnly) throw(INTERP_KERNEL::Exception)
2638       {
2639         double val;
2640         DataArrayDouble *a;
2641         DataArrayDoubleTuple *aa;
2642         std::vector<double> bb;
2643         int sw;
2644         int spaceDim=self->getSpaceDimension();
2645         const char msg[]="Python wrap of MEDCouplingUMesh::orientCorrectly2DCells : ";
2646         const double *v=convertObjToPossibleCpp5_Safe(vec,sw,val,a,aa,bb,msg,1,spaceDim,true);
2647         self->orientCorrectly2DCells(v,polyOnly);
2648       }
2649       
2650       PyObject *arePolyhedronsNotCorrectlyOriented() const throw(INTERP_KERNEL::Exception)
2651       {
2652         std::vector<int> cells;
2653         self->arePolyhedronsNotCorrectlyOriented(cells);
2654         DataArrayInt *ret=DataArrayInt::New();
2655         ret->alloc((int)cells.size(),1);
2656         std::copy(cells.begin(),cells.end(),ret->getPointer());
2657         return SWIG_NewPointerObj(SWIG_as_voidptr(ret),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 );
2658       }
2659
2660       PyObject *getFastAveragePlaneOfThis() const throw(INTERP_KERNEL::Exception)
2661       {
2662         double vec[3];
2663         double pos[3];
2664         self->getFastAveragePlaneOfThis(vec,pos);
2665         double vals[6];
2666         std::copy(vec,vec+3,vals);
2667         std::copy(pos,pos+3,vals+3);
2668         return convertDblArrToPyListOfTuple<double>(vals,3,2);
2669       }
2670       
2671       static MEDCouplingUMesh *MergeUMeshes(PyObject *li) throw(INTERP_KERNEL::Exception)
2672       {
2673         std::vector<const MEDCoupling::MEDCouplingUMesh *> tmp;
2674         convertFromPyObjVectorOfObj<const MEDCoupling::MEDCouplingUMesh *>(li,SWIGTYPE_p_MEDCoupling__MEDCouplingUMesh,"MEDCouplingUMesh",tmp);
2675         return MEDCouplingUMesh::MergeUMeshes(tmp);
2676       }
2677
2678       PyObject *areCellsIncludedIn(const MEDCouplingUMesh *other, int compType) const throw(INTERP_KERNEL::Exception)
2679       {
2680         DataArrayInt *ret1;
2681         bool ret0=self->areCellsIncludedIn(other,compType,ret1);
2682         PyObject *ret=PyTuple_New(2);
2683         PyObject *ret0Py=ret0?Py_True:Py_False;
2684         Py_XINCREF(ret0Py);
2685         PyTuple_SetItem(ret,0,ret0Py);
2686         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(ret1),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2687         return ret;
2688       }
2689
2690       PyObject *areCellsIncludedInPolicy7(const MEDCouplingUMesh *other) const throw(INTERP_KERNEL::Exception)
2691       {
2692         DataArrayInt *ret1;
2693         bool ret0=self->areCellsIncludedInPolicy7(other,ret1);
2694         PyObject *ret=PyTuple_New(2);
2695         PyObject *ret0Py=ret0?Py_True:Py_False;
2696         Py_XINCREF(ret0Py);
2697         PyTuple_SetItem(ret,0,ret0Py);
2698         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(ret1),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2699         return ret;
2700       }
2701
2702       PyObject *explode3DMeshTo1D() const throw(INTERP_KERNEL::Exception)
2703       {
2704         MCAuto<DataArrayInt> d0=DataArrayInt::New();
2705         MCAuto<DataArrayInt> d1=DataArrayInt::New();
2706         MCAuto<DataArrayInt> d2=DataArrayInt::New();
2707         MCAuto<DataArrayInt> d3=DataArrayInt::New();
2708         MEDCouplingUMesh *m=self->explode3DMeshTo1D(d0,d1,d2,d3);
2709         PyObject *ret=PyTuple_New(5);
2710         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(m),SWIGTYPE_p_MEDCoupling__MEDCouplingUMesh, SWIG_POINTER_OWN | 0 ));
2711         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(d0.retn()),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2712         PyTuple_SetItem(ret,2,SWIG_NewPointerObj(SWIG_as_voidptr(d1.retn()),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2713         PyTuple_SetItem(ret,3,SWIG_NewPointerObj(SWIG_as_voidptr(d2.retn()),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2714         PyTuple_SetItem(ret,4,SWIG_NewPointerObj(SWIG_as_voidptr(d3.retn()),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2715         return ret;
2716       }
2717
2718       PyObject *explodeIntoEdges() const throw(INTERP_KERNEL::Exception)
2719       {
2720         MCAuto<DataArrayInt> desc,descIndex,revDesc,revDescIndx;
2721         MCAuto<MEDCouplingUMesh> m(self->explodeIntoEdges(desc,descIndex,revDesc,revDescIndx));
2722         PyObject *ret=PyTuple_New(5);
2723         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(m.retn()),SWIGTYPE_p_MEDCoupling__MEDCouplingUMesh, SWIG_POINTER_OWN | 0 ));
2724         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(desc.retn()),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2725         PyTuple_SetItem(ret,2,SWIG_NewPointerObj(SWIG_as_voidptr(descIndex.retn()),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2726         PyTuple_SetItem(ret,3,SWIG_NewPointerObj(SWIG_as_voidptr(revDesc.retn()),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2727         PyTuple_SetItem(ret,4,SWIG_NewPointerObj(SWIG_as_voidptr(revDescIndx.retn()),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2728         return ret;
2729       }
2730
2731       PyObject *explodeMeshIntoMicroEdges() const throw(INTERP_KERNEL::Exception)
2732       {
2733         MCAuto<DataArrayInt> d0=DataArrayInt::New();
2734         MCAuto<DataArrayInt> d1=DataArrayInt::New();
2735         MCAuto<DataArrayInt> d2=DataArrayInt::New();
2736         MCAuto<DataArrayInt> d3=DataArrayInt::New();
2737         MEDCouplingUMesh *m=self->explodeMeshIntoMicroEdges(d0,d1,d2,d3);
2738         PyObject *ret=PyTuple_New(5);
2739         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(m),SWIGTYPE_p_MEDCoupling__MEDCouplingUMesh, SWIG_POINTER_OWN | 0 ));
2740         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(d0.retn()),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2741         PyTuple_SetItem(ret,2,SWIG_NewPointerObj(SWIG_as_voidptr(d1.retn()),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2742         PyTuple_SetItem(ret,3,SWIG_NewPointerObj(SWIG_as_voidptr(d2.retn()),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2743         PyTuple_SetItem(ret,4,SWIG_NewPointerObj(SWIG_as_voidptr(d3.retn()),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2744         return ret;
2745       }
2746
2747       PyObject *buildDescendingConnectivity() const throw(INTERP_KERNEL::Exception)
2748       {
2749         MCAuto<DataArrayInt> d0=DataArrayInt::New();
2750         MCAuto<DataArrayInt> d1=DataArrayInt::New();
2751         MCAuto<DataArrayInt> d2=DataArrayInt::New();
2752         MCAuto<DataArrayInt> d3=DataArrayInt::New();
2753         MEDCouplingUMesh *m=self->buildDescendingConnectivity(d0,d1,d2,d3);
2754         PyObject *ret=PyTuple_New(5);
2755         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(m),SWIGTYPE_p_MEDCoupling__MEDCouplingUMesh, SWIG_POINTER_OWN | 0 ));
2756         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(d0.retn()),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2757         PyTuple_SetItem(ret,2,SWIG_NewPointerObj(SWIG_as_voidptr(d1.retn()),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2758         PyTuple_SetItem(ret,3,SWIG_NewPointerObj(SWIG_as_voidptr(d2.retn()),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2759         PyTuple_SetItem(ret,4,SWIG_NewPointerObj(SWIG_as_voidptr(d3.retn()),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2760         return ret;
2761       }
2762
2763       PyObject *buildDescendingConnectivity2() const throw(INTERP_KERNEL::Exception)
2764       {
2765         MCAuto<DataArrayInt> d0=DataArrayInt::New();
2766         MCAuto<DataArrayInt> d1=DataArrayInt::New();
2767         MCAuto<DataArrayInt> d2=DataArrayInt::New();
2768         MCAuto<DataArrayInt> d3=DataArrayInt::New();
2769         MEDCouplingUMesh *m=self->buildDescendingConnectivity2(d0,d1,d2,d3);
2770         PyObject *ret=PyTuple_New(5);
2771         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(m),SWIGTYPE_p_MEDCoupling__MEDCouplingUMesh, SWIG_POINTER_OWN | 0 ));
2772         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(d0.retn()),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2773         PyTuple_SetItem(ret,2,SWIG_NewPointerObj(SWIG_as_voidptr(d1.retn()),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2774         PyTuple_SetItem(ret,3,SWIG_NewPointerObj(SWIG_as_voidptr(d2.retn()),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2775         PyTuple_SetItem(ret,4,SWIG_NewPointerObj(SWIG_as_voidptr(d3.retn()),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2776         return ret;
2777       }
2778       
2779       PyObject *computeNeighborsOfCells() const throw(INTERP_KERNEL::Exception)
2780       {
2781         DataArrayInt *neighbors=0,*neighborsIdx=0;
2782         self->computeNeighborsOfCells(neighbors,neighborsIdx);
2783         PyObject *ret=PyTuple_New(2);
2784         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(neighbors),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2785         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(neighborsIdx),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2786         return ret;
2787       }
2788
2789       PyObject *computeNeighborsOfNodes() const throw(INTERP_KERNEL::Exception)
2790       {
2791         DataArrayInt *neighbors=0,*neighborsIdx=0;
2792         self->computeNeighborsOfNodes(neighbors,neighborsIdx);
2793         PyObject *ret=PyTuple_New(2);
2794         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(neighbors),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2795         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(neighborsIdx),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2796         return ret;
2797       }
2798
2799       PyObject *computeEnlargedNeighborsOfNodes() const throw(INTERP_KERNEL::Exception)
2800       {
2801         MCAuto<DataArrayInt> neighbors,neighborsIdx;
2802         self->computeEnlargedNeighborsOfNodes(neighbors,neighborsIdx);
2803         PyObject *ret=PyTuple_New(2);
2804         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(neighbors.retn()),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2805         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(neighborsIdx.retn()),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2806         return ret;
2807       }
2808       
2809       PyObject *computeCellNeighborhoodFromNodesOne(const DataArrayInt *nodeNeigh, const DataArrayInt *nodeNeighI) const throw(INTERP_KERNEL::Exception)
2810       {
2811         MCAuto<DataArrayInt> cellNeigh,cellNeighIndex;
2812         self->computeCellNeighborhoodFromNodesOne(nodeNeigh,nodeNeighI,cellNeigh,cellNeighIndex);
2813         PyObject *ret=PyTuple_New(2);
2814         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(cellNeigh.retn()),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2815         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(cellNeighIndex.retn()),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2816         return ret;
2817       }
2818       
2819       static PyObject *ComputeNeighborsOfCellsAdv(const DataArrayInt *desc, const DataArrayInt *descI, const DataArrayInt *revDesc, const DataArrayInt *revDescI) throw(INTERP_KERNEL::Exception)
2820       {
2821         DataArrayInt *neighbors=0,*neighborsIdx=0;
2822         MEDCouplingUMesh::ComputeNeighborsOfCellsAdv(desc,descI,revDesc,revDescI,neighbors,neighborsIdx);
2823         PyObject *ret=PyTuple_New(2);
2824         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(neighbors),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2825         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(neighborsIdx),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2826         return ret;
2827       }
2828
2829       PyObject *emulateMEDMEMBDC(const MEDCouplingUMesh *nM1LevMesh)
2830       {
2831         MCAuto<DataArrayInt> d0=DataArrayInt::New();
2832         MCAuto<DataArrayInt> d1=DataArrayInt::New();
2833         DataArrayInt *d2,*d3,*d4,*dd5;
2834         MEDCouplingUMesh *mOut=self->emulateMEDMEMBDC(nM1LevMesh,d0,d1,d2,d3,d4,dd5);
2835         PyObject *ret=PyTuple_New(7);
2836         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(mOut),SWIGTYPE_p_MEDCoupling__MEDCouplingUMesh, SWIG_POINTER_OWN | 0 ));
2837         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(d0.retn()),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2838         PyTuple_SetItem(ret,2,SWIG_NewPointerObj(SWIG_as_voidptr(d1.retn()),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2839         PyTuple_SetItem(ret,3,SWIG_NewPointerObj(SWIG_as_voidptr(d2),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2840         PyTuple_SetItem(ret,4,SWIG_NewPointerObj(SWIG_as_voidptr(d3),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2841         PyTuple_SetItem(ret,5,SWIG_NewPointerObj(SWIG_as_voidptr(d4),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2842         PyTuple_SetItem(ret,6,SWIG_NewPointerObj(SWIG_as_voidptr(dd5),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2843         return ret;
2844       }
2845
2846       DataArrayDouble *getPartBarycenterAndOwner(DataArrayInt *da) const throw(INTERP_KERNEL::Exception)
2847       {
2848         if(!da)
2849           throw INTERP_KERNEL::Exception("Not null DataArrayInt instance expected !");
2850         da->checkAllocated();
2851         return self->getPartBarycenterAndOwner(da->getConstPointer(),da->getConstPointer()+da->getNbOfElems());
2852       }
2853
2854       DataArrayDouble *getPartMeasureField(bool isAbs, DataArrayInt *da) const throw(INTERP_KERNEL::Exception)
2855       {
2856         if(!da)
2857           throw INTERP_KERNEL::Exception("Not null DataArrayInt instance expected !");
2858         da->checkAllocated();
2859         return self->getPartMeasureField(isAbs,da->getConstPointer(),da->getConstPointer()+da->getNbOfElems());
2860       }
2861
2862       MEDCouplingFieldDouble *buildPartOrthogonalField(DataArrayInt *da) const throw(INTERP_KERNEL::Exception)
2863       {
2864         if(!da)
2865           throw INTERP_KERNEL::Exception("Not null DataArrayInt instance expected !");
2866         da->checkAllocated();
2867         return self->buildPartOrthogonalField(da->getConstPointer(),da->getConstPointer()+da->getNbOfElems());
2868       }
2869
2870       PyObject *getTypesOfPart(DataArrayInt *da) const throw(INTERP_KERNEL::Exception)
2871       {
2872         if(!da)
2873           throw INTERP_KERNEL::Exception("Not null DataArrayInt instance expected !");
2874         da->checkAllocated();
2875         std::set<INTERP_KERNEL::NormalizedCellType> result=self->getTypesOfPart(da->getConstPointer(),da->getConstPointer()+da->getNbOfElems());
2876         std::set<INTERP_KERNEL::NormalizedCellType>::const_iterator iL=result.begin();
2877         PyObject *res = PyList_New(result.size());
2878         for (int i=0;iL!=result.end(); i++, iL++)
2879           PyList_SetItem(res,i,PyInt_FromLong(*iL));
2880         return res;
2881       }
2882
2883       DataArrayInt *keepCellIdsByType(INTERP_KERNEL::NormalizedCellType type, DataArrayInt *da) const throw(INTERP_KERNEL::Exception)
2884       {
2885         if(!da)
2886           throw INTERP_KERNEL::Exception("Not null DataArrayInt instance expected !");
2887         da->checkAllocated();
2888         DataArrayInt *ret=self->keepCellIdsByType(type,da->getConstPointer(),da->getConstPointer()+da->getNbOfElems());
2889         ret->setName(da->getName().c_str());
2890         return ret;
2891       }
2892
2893       static PyObject *Intersect2DMeshes(const MEDCouplingUMesh *m1, const MEDCouplingUMesh *m2, double eps) throw(INTERP_KERNEL::Exception)
2894       {
2895         DataArrayInt *cellNb1=0,*cellNb2=0;
2896         MEDCouplingUMesh *mret=MEDCouplingUMesh::Intersect2DMeshes(m1,m2,eps,cellNb1,cellNb2);
2897         PyObject *ret=PyTuple_New(3);
2898         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(mret),SWIGTYPE_p_MEDCoupling__MEDCouplingUMesh, SWIG_POINTER_OWN | 0 ));
2899         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(cellNb1),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2900         PyTuple_SetItem(ret,2,SWIG_NewPointerObj(SWIG_as_voidptr(cellNb2),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2901         return ret;
2902       }
2903
2904       static PyObject *Intersect2DMeshWith1DLine(const MEDCouplingUMesh *mesh2D, const MEDCouplingUMesh *mesh1D, double eps) throw(INTERP_KERNEL::Exception)
2905       {
2906         MEDCouplingUMesh *splitMesh2D(0),*splitMesh1D(0);
2907         DataArrayInt *cellIdInMesh2D(0),*cellIdInMesh1D(0);
2908         MEDCouplingUMesh::Intersect2DMeshWith1DLine(mesh2D,mesh1D,eps,splitMesh2D,splitMesh1D,cellIdInMesh2D,cellIdInMesh1D);
2909         PyObject *ret(PyTuple_New(4));
2910         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(splitMesh2D),SWIGTYPE_p_MEDCoupling__MEDCouplingUMesh, SWIG_POINTER_OWN | 0 ));
2911         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(splitMesh1D),SWIGTYPE_p_MEDCoupling__MEDCouplingUMesh, SWIG_POINTER_OWN | 0 ));
2912         PyTuple_SetItem(ret,2,SWIG_NewPointerObj(SWIG_as_voidptr(cellIdInMesh2D),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2913         PyTuple_SetItem(ret,3,SWIG_NewPointerObj(SWIG_as_voidptr(cellIdInMesh1D),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2914         return ret;
2915       }
2916
2917       PyObject *buildSlice3D(PyObject *origin, PyObject *vec, double eps) const throw(INTERP_KERNEL::Exception)
2918       {
2919         int spaceDim=self->getSpaceDimension();
2920         if(spaceDim!=3)
2921           throw INTERP_KERNEL::Exception("Python wrap of MEDCouplingUMesh::buildSlice3D : works only for spaceDim 3 !");
2922         double val,val2;
2923         DataArrayDouble *a,*a2;
2924         DataArrayDoubleTuple *aa,*aa2;
2925         std::vector<double> bb,bb2;
2926         int sw;
2927         const char msg[]="Python wrap of MEDCouplingUMesh::buildSlice3D : 1st paramater for origin.";
2928         const char msg2[]="Python wrap of MEDCouplingUMesh::buildSlice3D : 2nd paramater for vector.";
2929         const double *orig=convertObjToPossibleCpp5_Safe(origin,sw,val,a,aa,bb,msg,1,spaceDim,true);
2930         const double *vect=convertObjToPossibleCpp5_Safe(vec,sw,val2,a2,aa2,bb2,msg2,1,spaceDim,true);
2931         //
2932         DataArrayInt *cellIds=0;
2933         MEDCouplingUMesh *ret0=self->buildSlice3D(orig,vect,eps,cellIds);
2934         PyObject *ret=PyTuple_New(2);
2935         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(ret0),SWIGTYPE_p_MEDCoupling__MEDCouplingUMesh, SWIG_POINTER_OWN | 0 ));
2936         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(cellIds),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2937         return ret;
2938       }
2939
2940       PyObject *buildSlice3DSurf(PyObject *origin, PyObject *vec, double eps) const throw(INTERP_KERNEL::Exception)
2941       {
2942         int spaceDim=self->getSpaceDimension();
2943         if(spaceDim!=3)
2944           throw INTERP_KERNEL::Exception("Python wrap of MEDCouplingUMesh::buildSlice3DSurf : works only for spaceDim 3 !");
2945         double val,val2;
2946         DataArrayDouble *a,*a2;
2947         DataArrayDoubleTuple *aa,*aa2;
2948         std::vector<double> bb,bb2;
2949         int sw;
2950         const char msg[]="Python wrap of MEDCouplingUMesh::buildSlice3DSurf : 1st paramater for origin.";
2951         const char msg2[]="Python wrap of MEDCouplingUMesh::buildSlice3DSurf : 2nd paramater for vector.";
2952         const double *orig=convertObjToPossibleCpp5_Safe(origin,sw,val,a,aa,bb,msg,1,spaceDim,true);
2953         const double *vect=convertObjToPossibleCpp5_Safe(vec,sw,val2,a2,aa2,bb2,msg2,1,spaceDim,true);
2954         //
2955         DataArrayInt *cellIds=0;
2956         MEDCouplingUMesh *ret0=self->buildSlice3DSurf(orig,vect,eps,cellIds);
2957         PyObject *ret=PyTuple_New(2);
2958         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(ret0),SWIGTYPE_p_MEDCoupling__MEDCouplingUMesh, SWIG_POINTER_OWN | 0 ));
2959         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(cellIds),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2960         return ret;
2961       }
2962
2963       MEDCouplingUMesh *clipSingle3DCellByPlane(PyObject *origin, PyObject *vec, double eps) const throw(INTERP_KERNEL::Exception)
2964       {
2965         double val,val2;
2966         DataArrayDouble *a,*a2;
2967         DataArrayDoubleTuple *aa,*aa2;
2968         std::vector<double> bb,bb2;
2969         int sw;
2970         const char msg[]="Python wrap of MEDCouplingUMesh::clipSingle3DCellByPlane : 1st paramater for origin.";
2971         const char msg2[]="Python wrap of MEDCouplingUMesh::clipSingle3DCellByPlane : 2nd paramater for vector.";
2972         const double *orig=convertObjToPossibleCpp5_Safe(origin,sw,val,a,aa,bb,msg,1,3,true);
2973         const double *vect=convertObjToPossibleCpp5_Safe(vec,sw,val2,a2,aa2,bb2,msg2,1,3,true);
2974         MCAuto<MEDCouplingUMesh> ret(self->clipSingle3DCellByPlane(orig,vect,eps));
2975         return ret.retn();
2976       }
2977
2978       DataArrayInt *getCellIdsCrossingPlane(PyObject *origin, PyObject *vec, double eps) const throw(INTERP_KERNEL::Exception)
2979       {
2980         int spaceDim=self->getSpaceDimension();
2981         if(spaceDim!=3)
2982           throw INTERP_KERNEL::Exception("Python wrap of MEDCouplingUMesh::getCellIdsCrossingPlane : works only for spaceDim 3 !");
2983         double val,val2;
2984         DataArrayDouble *a,*a2;
2985         DataArrayDoubleTuple *aa,*aa2;
2986         std::vector<double> bb,bb2;
2987         int sw;
2988         const char msg[]="Python wrap of MEDCouplingUMesh::getCellIdsCrossingPlane : 1st paramater for origin.";
2989         const char msg2[]="Python wrap of MEDCouplingUMesh::getCellIdsCrossingPlane : 2nd paramater for vector.";
2990         const double *orig=convertObjToPossibleCpp5_Safe(origin,sw,val,a,aa,bb,msg,1,spaceDim,true);
2991         const double *vect=convertObjToPossibleCpp5_Safe(vec,sw,val2,a2,aa2,bb2,msg2,1,spaceDim,true);
2992         return self->getCellIdsCrossingPlane(orig,vect,eps);
2993       }
2994
2995       void convertToPolyTypes(PyObject *li) throw(INTERP_KERNEL::Exception)
2996       {
2997         int sw;
2998         int pos1;
2999         std::vector<int> pos2;
3000         DataArrayInt *pos3=0;
3001         DataArrayIntTuple *pos4=0;
3002         convertIntStarLikePyObjToCpp(li,sw,pos1,pos2,pos3,pos4);
3003         switch(sw)
3004           {
3005           case 1:
3006             {
3007               self->convertToPolyTypes(&pos1,&pos1+1);
3008               return;
3009             }
3010           case 2:
3011             {
3012               if(pos2.empty())
3013                 return;
3014               self->convertToPolyTypes(&pos2[0],&pos2[0]+pos2.size());
3015               return ;
3016             }
3017           case 3:
3018             {
3019               self->convertToPolyTypes(pos3->begin(),pos3->end());
3020               return ;
3021             }
3022           default:
3023             throw INTERP_KERNEL::Exception("MEDCouplingUMesh::convertToPolyTypes : unexpected input array type recognized !");
3024           }
3025       }      
3026     }
3027     void convertAllToPoly();
3028     void convertExtrudedPolyhedra() throw(INTERP_KERNEL::Exception);
3029     bool unPolyze() throw(INTERP_KERNEL::Exception);
3030     void simplifyPolyhedra(double eps) throw(INTERP_KERNEL::Exception);
3031     MEDCouplingUMesh *buildSpreadZonesWithPoly() const throw(INTERP_KERNEL::Exception);
3032     MEDCouplingUMesh *buildExtrudedMesh(const MEDCouplingUMesh *mesh1D, int policy) throw(INTERP_KERNEL::Exception);
3033   };
3034
3035   //== MEDCouplingUMesh End
3036
3037   //== MEDCouplingMappedExtrudedMesh
3038
3039   class MEDCouplingMappedExtrudedMesh : public MEDCoupling::MEDCouplingMesh
3040   {
3041   public:
3042     static MEDCouplingMappedExtrudedMesh *New(const MEDCouplingUMesh *mesh3D, const MEDCouplingUMesh *mesh2D, int cell2DId) throw(INTERP_KERNEL::Exception);
3043     static MEDCouplingMappedExtrudedMesh *New(const MEDCouplingCMesh *mesh3D) throw(INTERP_KERNEL::Exception);
3044     MEDCouplingUMesh *build3DUnstructuredMesh() const throw(INTERP_KERNEL::Exception);
3045     int get2DCellIdForExtrusion() const;
3046     %extend {
3047       MEDCouplingMappedExtrudedMesh(const MEDCouplingUMesh *mesh3D, const MEDCouplingUMesh *mesh2D, int cell2DId) throw(INTERP_KERNEL::Exception)
3048       {
3049         return MEDCouplingMappedExtrudedMesh::New(mesh3D,mesh2D,cell2DId);
3050       }
3051
3052       MEDCouplingMappedExtrudedMesh(const MEDCouplingCMesh *mesh3D) throw(INTERP_KERNEL::Exception)
3053       {
3054         return MEDCouplingMappedExtrudedMesh::New(mesh3D);
3055       }
3056
3057       MEDCouplingMappedExtrudedMesh()
3058       {
3059         return MEDCouplingMappedExtrudedMesh::New();
3060       }
3061
3062       static PyObject *___new___(PyObject *cls, PyObject *args) throw(INTERP_KERNEL::Exception)
3063       {
3064         return NewMethWrapCallInitOnlyIfEmptyDictInInput(cls,args,"MEDCouplingMappedExtrudedMesh");
3065       }
3066       
3067       std::string __str__() const throw(INTERP_KERNEL::Exception)
3068       {
3069         return self->simpleRepr();
3070       }
3071
3072       std::string __repr__() const throw(INTERP_KERNEL::Exception)
3073       {
3074         std::ostringstream oss;
3075         self->reprQuickOverview(oss);
3076         return oss.str();
3077       }
3078       
3079       PyObject *getMesh2D() const throw(INTERP_KERNEL::Exception)
3080       {
3081         MEDCouplingUMesh *ret=self->getMesh2D();
3082         if(ret)
3083           ret->incrRef();
3084         return convertMesh(ret, SWIG_POINTER_OWN | 0 );
3085       }
3086       PyObject *getMesh1D() const throw(INTERP_KERNEL::Exception)
3087       {
3088         MEDCouplingUMesh *ret=self->getMesh1D();
3089         if(ret)
3090           ret->incrRef();
3091         return convertMesh(ret, SWIG_POINTER_OWN | 0 );
3092       }
3093       PyObject *getMesh3DIds() const throw(INTERP_KERNEL::Exception)
3094       {
3095         DataArrayInt *ret=self->getMesh3DIds();
3096         if(ret)
3097           ret->incrRef();
3098         return SWIG_NewPointerObj(SWIG_as_voidptr(ret),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 );
3099       } 
3100     }
3101   };
3102
3103   //== MEDCouplingMappedExtrudedMesh End
3104
3105   class MEDCoupling1GTUMesh : public MEDCoupling::MEDCouplingPointSet
3106   {
3107   public:
3108     static MEDCoupling1GTUMesh *New(const std::string& name, INTERP_KERNEL::NormalizedCellType type) throw(INTERP_KERNEL::Exception);
3109     static MEDCoupling1GTUMesh *New(const MEDCouplingUMesh *m) throw(INTERP_KERNEL::Exception);
3110     INTERP_KERNEL::NormalizedCellType getCellModelEnum() const throw(INTERP_KERNEL::Exception);
3111     int getNodalConnectivityLength() const throw(INTERP_KERNEL::Exception);
3112     virtual void allocateCells(int nbOfCells=0) throw(INTERP_KERNEL::Exception);
3113     virtual void checkConsistencyOfConnectivity() const throw(INTERP_KERNEL::Exception);
3114     %extend
3115     {
3116       virtual void insertNextCell(PyObject *li) throw(INTERP_KERNEL::Exception)
3117       {
3118         int szArr,sw,iTypppArr;
3119         std::vector<int> stdvecTyyppArr;
3120         const int *tmp=convertIntStarLikePyObjToCppIntStar(li,sw,szArr,iTypppArr,stdvecTyyppArr);
3121         self->insertNextCell(tmp,tmp+szArr);
3122       }
3123
3124       virtual DataArrayInt *getNodalConnectivity() const throw(INTERP_KERNEL::Exception)
3125       {
3126         DataArrayInt *ret=self->getNodalConnectivity();
3127         if(ret) ret->incrRef();
3128         return ret;
3129       }
3130       
3131       static MEDCouplingUMesh *AggregateOnSameCoordsToUMesh(PyObject *li) throw(INTERP_KERNEL::Exception)
3132       {
3133         std::vector< const MEDCoupling1GTUMesh *> parts;
3134         convertFromPyObjVectorOfObj<const MEDCoupling::MEDCoupling1GTUMesh *>(li,SWIGTYPE_p_MEDCoupling__MEDCoupling1GTUMesh,"MEDCoupling1GTUMesh",parts);
3135         return MEDCoupling1GTUMesh::AggregateOnSameCoordsToUMesh(parts);
3136       }
3137     }
3138   };
3139
3140   //== MEDCoupling1SGTUMesh
3141
3142   class MEDCoupling1SGTUMesh : public MEDCoupling::MEDCoupling1GTUMesh
3143   {
3144   public:
3145     static MEDCoupling1SGTUMesh *New(const std::string& name, INTERP_KERNEL::NormalizedCellType type) throw(INTERP_KERNEL::Exception);
3146     static MEDCoupling1SGTUMesh *New(const MEDCouplingUMesh *m) throw(INTERP_KERNEL::Exception);
3147     void setNodalConnectivity(DataArrayInt *nodalConn) throw(INTERP_KERNEL::Exception);
3148     int getNumberOfNodesPerCell() const throw(INTERP_KERNEL::Exception);
3149     static MEDCoupling1SGTUMesh *Merge1SGTUMeshes(const MEDCoupling1SGTUMesh *mesh1, const MEDCoupling1SGTUMesh *mesh2) throw(INTERP_KERNEL::Exception);
3150     MEDCoupling1SGTUMesh *buildSetInstanceFromThis(int spaceDim) const throw(INTERP_KERNEL::Exception);
3151     MEDCoupling1GTUMesh *computeDualMesh() const throw(INTERP_KERNEL::Exception);
3152     MEDCoupling1SGTUMesh *explodeEachHexa8To6Quad4() const throw(INTERP_KERNEL::Exception);
3153     DataArrayInt *sortHexa8EachOther() throw(INTERP_KERNEL::Exception);
3154     %extend
3155     {
3156       MEDCoupling1SGTUMesh()
3157       {
3158         return MEDCoupling1SGTUMesh::New();
3159       }
3160
3161       MEDCoupling1SGTUMesh(const std::string& name, INTERP_KERNEL::NormalizedCellType type) throw(INTERP_KERNEL::Exception)
3162       {
3163         return MEDCoupling1SGTUMesh::New(name,type);
3164       }
3165
3166       MEDCoupling1SGTUMesh(const MEDCouplingUMesh *m) throw(INTERP_KERNEL::Exception)
3167       {
3168         return MEDCoupling1SGTUMesh::New(m);
3169       }
3170
3171       static PyObject *___new___(PyObject *cls, PyObject *args) throw(INTERP_KERNEL::Exception)
3172       {
3173         return NewMethWrapCallInitOnlyIfEmptyDictInInput(cls,args,"MEDCoupling1SGTUMesh");
3174       }
3175
3176       std::string __str__() const throw(INTERP_KERNEL::Exception)
3177       {
3178         return self->simpleRepr();
3179       }
3180       
3181       std::string __repr__() const throw(INTERP_KERNEL::Exception)
3182       {
3183         std::ostringstream oss;
3184         self->reprQuickOverview(oss);
3185         return oss.str();
3186       }
3187
3188       PyObject *structurizeMe(double eps=1e-12) const throw(INTERP_KERNEL::Exception)
3189       {
3190         DataArrayInt *cellPerm(0),*nodePerm(0);
3191         MEDCouplingCMesh *retCpp(self->structurizeMe(cellPerm,nodePerm,eps));
3192         PyObject *ret(PyTuple_New(3));
3193         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(retCpp),SWIGTYPE_p_MEDCoupling__MEDCouplingCMesh, SWIG_POINTER_OWN | 0 ));
3194         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(cellPerm),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
3195         PyTuple_SetItem(ret,2,SWIG_NewPointerObj(SWIG_as_voidptr(nodePerm),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
3196         return ret;
3197       }
3198
3199       static MEDCoupling1SGTUMesh *Merge1SGTUMeshes(PyObject *li) throw(INTERP_KERNEL::Exception)
3200       {
3201         std::vector<const MEDCoupling::MEDCoupling1SGTUMesh *> tmp;
3202         convertFromPyObjVectorOfObj<const MEDCoupling::MEDCoupling1SGTUMesh *>(li,SWIGTYPE_p_MEDCoupling__MEDCoupling1SGTUMesh,"MEDCoupling1SGTUMesh",tmp);
3203         return MEDCoupling1SGTUMesh::Merge1SGTUMeshes(tmp);
3204       }
3205       
3206       static MEDCoupling1SGTUMesh *Merge1SGTUMeshesOnSameCoords(PyObject *li) throw(INTERP_KERNEL::Exception)
3207       {
3208         std::vector<const MEDCoupling::MEDCoupling1SGTUMesh *> tmp;
3209         convertFromPyObjVectorOfObj<const MEDCoupling::MEDCoupling1SGTUMesh *>(li,SWIGTYPE_p_MEDCoupling__MEDCoupling1SGTUMesh,"MEDCoupling1SGTUMesh",tmp);
3210         return MEDCoupling1SGTUMesh::Merge1SGTUMeshesOnSameCoords(tmp);
3211       }
3212     }
3213   };
3214   
3215   //== MEDCoupling1SGTUMesh End
3216
3217   //== MEDCoupling1DGTUMesh
3218
3219   class MEDCoupling1DGTUMesh : public MEDCoupling::MEDCoupling1GTUMesh
3220   {
3221   public:
3222     static MEDCoupling1DGTUMesh *New(const std::string& name, INTERP_KERNEL::NormalizedCellType type) throw(INTERP_KERNEL::Exception);
3223     static MEDCoupling1DGTUMesh *New(const MEDCouplingUMesh *m) throw(INTERP_KERNEL::Exception);
3224     void setNodalConnectivity(DataArrayInt *nodalConn, DataArrayInt *nodalConnIndex) throw(INTERP_KERNEL::Exception);
3225     MEDCoupling1DGTUMesh *buildSetInstanceFromThis(int spaceDim) const throw(INTERP_KERNEL::Exception);
3226     bool isPacked() const throw(INTERP_KERNEL::Exception);
3227     %extend
3228     {
3229       MEDCoupling1DGTUMesh()
3230       {
3231         return MEDCoupling1DGTUMesh::New();
3232       }
3233       MEDCoupling1DGTUMesh(const std::string& name, INTERP_KERNEL::NormalizedCellType type) throw(INTERP_KERNEL::Exception)
3234       {
3235         return MEDCoupling1DGTUMesh::New(name,type);
3236       }
3237
3238       MEDCoupling1DGTUMesh(const MEDCouplingUMesh *m) throw(INTERP_KERNEL::Exception)
3239       {
3240         return MEDCoupling1DGTUMesh::New(m);
3241       }
3242
3243       static PyObject *___new___(PyObject *cls, PyObject *args) throw(INTERP_KERNEL::Exception)
3244       {
3245         return NewMethWrapCallInitOnlyIfEmptyDictInInput(cls,args,"MEDCoupling1DGTUMesh");
3246       }
3247
3248       std::string __str__() const throw(INTERP_KERNEL::Exception)
3249       {
3250         return self->simpleRepr();
3251       }
3252       
3253       std::string __repr__() const throw(INTERP_KERNEL::Exception)
3254       {
3255         std::ostringstream oss;
3256         self->reprQuickOverview(oss);
3257         return oss.str();
3258       }
3259
3260       DataArrayInt *getNodalConnectivityIndex() const throw(INTERP_KERNEL::Exception)
3261       {
3262         DataArrayInt *ret=self->getNodalConnectivityIndex();
3263         if(ret) ret->incrRef();
3264         return ret;
3265       }
3266
3267       PyObject *retrievePackedNodalConnectivity() const throw(INTERP_KERNEL::Exception)
3268       {
3269         DataArrayInt *ret1=0,*ret2=0;
3270         bool ret0=self->retrievePackedNodalConnectivity(ret1,ret2);
3271         PyObject *ret0Py=ret0?Py_True:Py_False;
3272         Py_XINCREF(ret0Py);
3273         PyObject *ret=PyTuple_New(3);
3274         PyTuple_SetItem(ret,0,ret0Py);
3275         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(ret1),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
3276         PyTuple_SetItem(ret,2,SWIG_NewPointerObj(SWIG_as_voidptr(ret2),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
3277         return ret;
3278       }
3279       
3280       PyObject *copyWithNodalConnectivityPacked() const throw(INTERP_KERNEL::Exception)
3281       {
3282         bool ret1;
3283         MEDCoupling1DGTUMesh *ret0=self->copyWithNodalConnectivityPacked(ret1);
3284         PyObject *ret=PyTuple_New(2);
3285         PyObject *ret1Py=ret1?Py_True:Py_False; Py_XINCREF(ret1Py);
3286         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(ret0),SWIGTYPE_p_MEDCoupling__MEDCoupling1DGTUMesh, SWIG_POINTER_OWN | 0 ));
3287         PyTuple_SetItem(ret,1,ret1Py);
3288         return ret;
3289       }
3290
3291       static MEDCoupling1DGTUMesh *Merge1DGTUMeshes(PyObject *li) throw(INTERP_KERNEL::Exception)
3292       {
3293         std::vector<const MEDCoupling::MEDCoupling1DGTUMesh *> tmp;
3294         convertFromPyObjVectorOfObj<const MEDCoupling::MEDCoupling1DGTUMesh *>(li,SWIGTYPE_p_MEDCoupling__MEDCoupling1DGTUMesh,"MEDCoupling1DGTUMesh",tmp);
3295         return MEDCoupling1DGTUMesh::Merge1DGTUMeshes(tmp);
3296       }
3297       
3298       static MEDCoupling1DGTUMesh *Merge1DGTUMeshesOnSameCoords(PyObject *li) throw(INTERP_KERNEL::Exception)
3299       {
3300         std::vector<const MEDCoupling::MEDCoupling1DGTUMesh *> tmp;
3301         convertFromPyObjVectorOfObj<const MEDCoupling::MEDCoupling1DGTUMesh *>(li,SWIGTYPE_p_MEDCoupling__MEDCoupling1DGTUMesh,"MEDCoupling1DGTUMesh",tmp);
3302         return MEDCoupling1DGTUMesh::Merge1DGTUMeshesOnSameCoords(tmp);
3303       }
3304       
3305       static DataArrayInt *AggregateNodalConnAndShiftNodeIds(PyObject *li, const std::vector<int>& offsetInNodeIdsPerElt) throw(INTERP_KERNEL::Exception)
3306       {
3307         std::vector<const MEDCoupling::DataArrayInt *> tmp;
3308         convertFromPyObjVectorOfObj<const MEDCoupling::DataArrayInt *>(li,SWIGTYPE_p_MEDCoupling__DataArrayInt,"DataArrayInt",tmp);
3309         return MEDCoupling1DGTUMesh::AggregateNodalConnAndShiftNodeIds(tmp,offsetInNodeIdsPerElt);
3310       }
3311     }
3312   };
3313
3314   //== MEDCoupling1DGTUMeshEnd
3315
3316   class MEDCouplingStructuredMesh : public MEDCoupling::MEDCouplingMesh
3317   {
3318   public:
3319     int getCellIdFromPos(int i, int j, int k) const throw(INTERP_KERNEL::Exception);
3320     int getNodeIdFromPos(int i, int j, int k) const throw(INTERP_KERNEL::Exception);
3321     int getNumberOfCellsOfSubLevelMesh() const throw(INTERP_KERNEL::Exception);
3322     int getSpaceDimensionOnNodeStruct() const throw(INTERP_KERNEL::Exception);
3323     double computeSquareness() const throw(INTERP_KERNEL::Exception);
3324     virtual std::vector<int> getNodeGridStructure() const throw(INTERP_KERNEL::Exception);
3325     std::vector<int> getCellGridStructure() const throw(INTERP_KERNEL::Exception);
3326     MEDCoupling1SGTUMesh *build1SGTUnstructured() const throw(INTERP_KERNEL::Exception);
3327     std::vector<int> getLocationFromCellId(int cellId) const throw(INTERP_KERNEL::Exception);
3328     std::vector<int> getLocationFromNodeId(int cellId) const throw(INTERP_KERNEL::Exception);
3329     static INTERP_KERNEL::NormalizedCellType GetGeoTypeGivenMeshDimension(int meshDim) throw(INTERP_KERNEL::Exception);
3330     MEDCoupling1SGTUMesh *build1SGTSubLevelMesh() const throw(INTERP_KERNEL::Exception);
3331     static int DeduceNumberOfGivenStructure(const std::vector<int>& st) throw(INTERP_KERNEL::Exception);
3332     static DataArrayInt *ComputeCornersGhost(const std::vector<int>& st, int ghostLev) throw(INTERP_KERNEL::Exception);
3333     static std::vector<int> GetSplitVectFromStruct(const std::vector<int>& strct) throw(INTERP_KERNEL::Exception);
3334     %extend
3335     {
3336       virtual MEDCouplingStructuredMesh *buildStructuredSubPart(PyObject *cellPart) const throw(INTERP_KERNEL::Exception)
3337       {
3338         int tmpp1=-1,tmpp2=-1;
3339         std::vector<int> tmp=fillArrayWithPyListInt2(cellPart,tmpp1,tmpp2);
3340         std::vector< std::pair<int,int> > inp;
3341         if(tmpp2==2)
3342           {
3343             inp.resize(tmpp1);
3344             for(int i=0;i<tmpp1;i++)
3345               { inp[i].first=tmp[2*i]; inp[i].second=tmp[2*i+1]; }
3346           }
3347         else if(tmpp2==1)
3348           {
3349             if(tmpp1%2!=0)
3350               throw INTERP_KERNEL::Exception("Wrap of MEDCouplingStructuredMesh.buildStructuredSubPart : invalid input size ! Must be even size !");
3351             inp.resize(tmpp1/2);
3352             for(int i=0;i<tmpp1/2;i++)
3353               { inp[i].first=tmp[2*i]; inp[i].second=tmp[2*i+1]; }
3354           }
3355         else
3356           throw INTERP_KERNEL::Exception("Wrap of MEDCouplingStructuredMesh.buildStructuredSubPart : invalid input size !");
3357         return self->buildStructuredSubPart(inp);
3358       }
3359
3360       static DataArrayInt *BuildExplicitIdsFrom(PyObject *st, PyObject *part) throw(INTERP_KERNEL::Exception)
3361       {
3362         std::vector< std::pair<int,int> > inp;
3363         convertPyToVectorPairInt(part,inp);
3364         //
3365         int szArr,sw,iTypppArr;
3366         std::vector<int> stdvecTyyppArr;
3367         const int *tmp4=convertIntStarLikePyObjToCppIntStar(st,sw,szArr,iTypppArr,stdvecTyyppArr);
3368         std::vector<int> tmp5(tmp4,tmp4+szArr);
3369         //
3370         return MEDCouplingStructuredMesh::BuildExplicitIdsFrom(tmp5,inp);
3371       }
3372
3373       static void MultiplyPartOf(const std::vector<int>& st, PyObject *part, double factor, DataArrayDouble *da) throw(INTERP_KERNEL::Exception)
3374       {
3375         std::vector< std::pair<int,int> > inp;
3376         convertPyToVectorPairInt(part,inp);
3377         MEDCouplingStructuredMesh::MultiplyPartOf(st,inp,factor,da);
3378       }
3379
3380       static void MultiplyPartOfByGhost(const std::vector<int>& st, PyObject *part, int ghostSize, double factor, DataArrayDouble *da) throw(INTERP_KERNEL::Exception)
3381       {
3382         std::vector< std::pair<int,int> > inp;
3383         convertPyToVectorPairInt(part,inp);
3384         MEDCouplingStructuredMesh::MultiplyPartOfByGhost(st,inp,ghostSize,factor,da);
3385       }
3386
3387       static PyObject *PutInGhostFormat(int ghostSize, const std::vector<int>& st, PyObject *part) throw(INTERP_KERNEL::Exception)
3388       {
3389         std::vector< std::pair<int,int> > inp;
3390         convertPyToVectorPairInt(part,inp);
3391         std::vector<int> stWithGhost;
3392         std::vector< std::pair<int,int> > partWithGhost;
3393         MEDCouplingStructuredMesh::PutInGhostFormat(ghostSize,st,inp,stWithGhost,partWithGhost);
3394         PyObject *ret(PyTuple_New(2));
3395         PyTuple_SetItem(ret,0,convertIntArrToPyList2(stWithGhost));
3396         PyTuple_SetItem(ret,1,convertFromVectorPairInt(partWithGhost));
3397         return ret;
3398       }
3399
3400       static DataArrayDouble *ExtractFieldOfDoubleFrom(const std::vector<int>& st, const DataArrayDouble *fieldOfDbl, PyObject *partCompactFormat) throw(INTERP_KERNEL::Exception)
3401       {
3402         std::vector< std::pair<int,int> > inp;
3403         convertPyToVectorPairInt(partCompactFormat,inp);
3404         return MEDCouplingStructuredMesh::ExtractFieldOfDoubleFrom(st,fieldOfDbl,inp);
3405       }
3406
3407       static void AssignPartOfFieldOfDoubleUsing(const std::vector<int>& st, DataArrayDouble *fieldOfDbl, PyObject *partCompactFormat, const DataArrayDouble *other) throw(INTERP_KERNEL::Exception)
3408       {
3409         std::vector< std::pair<int,int> > inp;
3410         convertPyToVectorPairInt(partCompactFormat,inp);
3411         MEDCouplingStructuredMesh::AssignPartOfFieldOfDoubleUsing(st,fieldOfDbl,inp,other);
3412       }
3413
3414       static int DeduceNumberOfGivenRangeInCompactFrmt(PyObject *part) throw(INTERP_KERNEL::Exception)
3415       {
3416         std::vector< std::pair<int,int> > inp;
3417         convertPyToVectorPairInt(part,inp);
3418         return MEDCouplingStructuredMesh::DeduceNumberOfGivenRangeInCompactFrmt(inp);
3419       }
3420
3421       static DataArrayInt *Build1GTNodalConnectivity(PyObject *li) throw(INTERP_KERNEL::Exception)
3422       {
3423         int szArr,sw,iTypppArr;
3424         std::vector<int> stdvecTyyppArr;
3425         const int *tmp=convertIntStarLikePyObjToCppIntStar(li,sw,szArr,iTypppArr,stdvecTyyppArr);
3426         return MEDCouplingStructuredMesh::Build1GTNodalConnectivity(tmp,tmp+szArr);
3427       }
3428
3429       static DataArrayInt *Build1GTNodalConnectivityOfSubLevelMesh(PyObject *li) throw(INTERP_KERNEL::Exception)
3430       {
3431         int szArr,sw,iTypppArr;
3432         std::vector<int> stdvecTyyppArr;
3433         const int *tmp(convertIntStarLikePyObjToCppIntStar(li,sw,szArr,iTypppArr,stdvecTyyppArr));
3434         return MEDCouplingStructuredMesh::Build1GTNodalConnectivityOfSubLevelMesh(tmp,tmp+szArr);
3435       }
3436
3437       static std::vector<int> GetDimensionsFromCompactFrmt(PyObject *partCompactFormat) throw(INTERP_KERNEL::Exception)
3438       {
3439         std::vector< std::pair<int,int> > inp;
3440         convertPyToVectorPairInt(partCompactFormat,inp);
3441         return MEDCouplingStructuredMesh::GetDimensionsFromCompactFrmt(inp);
3442       }
3443
3444       static PyObject *GetCompactFrmtFromDimensions(const std::vector<int>& dims) throw(INTERP_KERNEL::Exception)
3445       {
3446         std::vector< std::pair<int,int> > ret(MEDCouplingStructuredMesh::GetCompactFrmtFromDimensions(dims));
3447         PyObject *retPy=PyList_New(ret.size());
3448         for(std::size_t i=0;i<ret.size();i++)
3449           {
3450             PyObject *tmp=PyTuple_New(2);
3451             PyTuple_SetItem(tmp,0,PyInt_FromLong(ret[i].first));
3452             PyTuple_SetItem(tmp,1,PyInt_FromLong(ret[i].second));
3453             PyList_SetItem(retPy,i,tmp);
3454           }
3455         return retPy;
3456       }
3457
3458       static PyObject *IntersectRanges(PyObject *r1, PyObject *r2) throw(INTERP_KERNEL::Exception)
3459       {
3460         std::vector< std::pair<int,int> > r1Cpp,r2Cpp;
3461         convertPyToVectorPairInt(r1,r1Cpp);
3462         convertPyToVectorPairInt(r2,r2Cpp);
3463         std::vector< std::pair<int,int> > ret(MEDCouplingStructuredMesh::IntersectRanges(r1Cpp,r2Cpp));
3464         PyObject *retPy=PyList_New(ret.size());
3465         for(std::size_t i=0;i<ret.size();i++)
3466           {
3467             PyObject *tmp=PyTuple_New(2);
3468             PyTuple_SetItem(tmp,0,PyInt_FromLong(ret[i].first));
3469             PyTuple_SetItem(tmp,1,PyInt_FromLong(ret[i].second));
3470             PyList_SetItem(retPy,i,tmp);
3471           }
3472         return retPy;
3473       }
3474
3475       static bool AreRangesIntersect(PyObject *r1, PyObject *r2)
3476       {
3477         std::vector< std::pair<int,int> > r1Cpp,r2Cpp;
3478         convertPyToVectorPairInt(r1,r1Cpp);
3479         convertPyToVectorPairInt(r2,r2Cpp);
3480         return MEDCouplingStructuredMesh::AreRangesIntersect(r1Cpp,r2Cpp);
3481       }
3482
3483       static PyObject *IsPartStructured(PyObject *li, PyObject *st) throw(INTERP_KERNEL::Exception)
3484       {
3485         int szArr,sw,iTypppArr;
3486         std::vector<int> stdvecTyyppArr;
3487         const int *tmp=convertIntStarLikePyObjToCppIntStar(li,sw,szArr,iTypppArr,stdvecTyyppArr);
3488         int szArr2,sw2,iTypppArr2;
3489         std::vector<int> stdvecTyyppArr2;
3490         const int *tmp2=convertIntStarLikePyObjToCppIntStar(st,sw2,szArr2,iTypppArr2,stdvecTyyppArr2);
3491         std::vector<int> tmp3(tmp2,tmp2+szArr2);
3492         std::vector< std::pair<int,int> > partCompactFormat;
3493         bool ret0=MEDCouplingStructuredMesh::IsPartStructured(tmp,tmp+szArr,tmp3,partCompactFormat);
3494         PyObject *ret=PyTuple_New(2);
3495         PyObject *ret0Py=ret0?Py_True:Py_False; Py_XINCREF(ret0Py);
3496         PyTuple_SetItem(ret,0,ret0Py);
3497         PyObject *ret1Py=PyList_New(partCompactFormat.size());
3498         for(std::size_t i=0;i<partCompactFormat.size();i++)
3499           {
3500             PyObject *tmp4=PyTuple_New(2);
3501             PyTuple_SetItem(tmp4,0,PyInt_FromLong(partCompactFormat[i].first));
3502             PyTuple_SetItem(tmp4,1,PyInt_FromLong(partCompactFormat[i].second));
3503             PyList_SetItem(ret1Py,i,tmp4);
3504           }
3505         PyTuple_SetItem(ret,1,ret1Py);
3506         return ret;
3507       }
3508
3509       static PyObject *ChangeReferenceFromGlobalOfCompactFrmt(PyObject *bigInAbs, PyObject *partOfBigInAbs, bool check=true) throw(INTERP_KERNEL::Exception)
3510       {
3511         std::vector< std::pair<int,int> > param0,param1,ret;
3512         convertPyToVectorPairInt(bigInAbs,param0);
3513         convertPyToVectorPairInt(partOfBigInAbs,param1);
3514         MEDCouplingStructuredMesh::ChangeReferenceFromGlobalOfCompactFrmt(param0,param1,ret,check);
3515         PyObject *retPy(PyList_New(ret.size()));
3516         for(std::size_t i=0;i<ret.size();i++)
3517           {
3518             PyObject *tmp(PyTuple_New(2));
3519             PyTuple_SetItem(tmp,0,PyInt_FromLong(ret[i].first));
3520             PyTuple_SetItem(tmp,1,PyInt_FromLong(ret[i].second));
3521             PyList_SetItem(retPy,i,tmp);
3522           }
3523         return retPy;
3524       }
3525
3526       static PyObject *TranslateCompactFrmt(PyObject *part, const std::vector<int>& translation) throw(INTERP_KERNEL::Exception)
3527       {
3528         std::vector< std::pair<int,int> > param0;
3529         convertPyToVectorPairInt(part,param0);
3530         std::vector< std::pair<int,int> > ret(MEDCouplingStructuredMesh::TranslateCompactFrmt(param0,translation));
3531         PyObject *retPy(PyList_New(ret.size()));
3532         for(std::size_t i=0;i<ret.size();i++)
3533           {
3534             PyObject *tmp(PyTuple_New(2));
3535             PyTuple_SetItem(tmp,0,PyInt_FromLong(ret[i].first));
3536             PyTuple_SetItem(tmp,1,PyInt_FromLong(ret[i].second));
3537             PyList_SetItem(retPy,i,tmp);
3538           }
3539         return retPy;
3540       }
3541
3542       static std::vector<int> FindTranslationFrom(PyObject *startingFrom, PyObject *goingTo) throw(INTERP_KERNEL::Exception)
3543       {
3544         std::vector< std::pair<int,int> > param0,param1;
3545         convertPyToVectorPairInt(startingFrom,param0);
3546         convertPyToVectorPairInt(goingTo,param1);
3547         return  MEDCouplingStructuredMesh::FindTranslationFrom(param0,param1);
3548       }
3549
3550       static PyObject *ChangeReferenceToGlobalOfCompactFrmt(PyObject *bigInAbs, PyObject *partOfBigRelativeToBig, bool check=true) throw(INTERP_KERNEL::Exception)
3551       {
3552         std::vector< std::pair<int,int> > param0,param1,ret;
3553         convertPyToVectorPairInt(bigInAbs,param0);
3554         convertPyToVectorPairInt(partOfBigRelativeToBig,param1);
3555         MEDCouplingStructuredMesh::ChangeReferenceToGlobalOfCompactFrmt(param0,param1,ret,check);
3556         PyObject *retPy(PyList_New(ret.size()));
3557         for(std::size_t i=0;i<ret.size();i++)
3558           {
3559             PyObject *tmp(PyTuple_New(2));
3560             PyTuple_SetItem(tmp,0,PyInt_FromLong(ret[i].first));
3561             PyTuple_SetItem(tmp,1,PyInt_FromLong(ret[i].second));
3562             PyList_SetItem(retPy,i,tmp);
3563           }
3564         return retPy;
3565       }
3566     }
3567   };
3568
3569   class MEDCouplingCurveLinearMesh;
3570
3571   //== MEDCouplingCMesh
3572   
3573   class MEDCouplingCMesh : public MEDCoupling::MEDCouplingStructuredMesh
3574   {
3575   public:
3576     static MEDCouplingCMesh *New() throw(INTERP_KERNEL::Exception);
3577     static MEDCouplingCMesh *New(const std::string& meshName) throw(INTERP_KERNEL::Exception);
3578     void setCoords(const DataArrayDouble *coordsX,
3579                    const DataArrayDouble *coordsY=0,
3580                    const DataArrayDouble *coordsZ=0) throw(INTERP_KERNEL::Exception);
3581     void setCoordsAt(int i, const DataArrayDouble *arr) throw(INTERP_KERNEL::Exception);
3582     MEDCouplingCurveLinearMesh *buildCurveLinear() const throw(INTERP_KERNEL::Exception);
3583     %extend {
3584       MEDCouplingCMesh() throw(INTERP_KERNEL::Exception)
3585       {
3586         return MEDCouplingCMesh::New();
3587       }
3588       MEDCouplingCMesh(const std::string& meshName) throw(INTERP_KERNEL::Exception)
3589       {
3590         return MEDCouplingCMesh::New(meshName);
3591       }
3592       // serialization
3593       static PyObject *___new___(PyObject *cls, PyObject *args) throw(INTERP_KERNEL::Exception)
3594       {
3595         return NewMethWrapCallInitOnlyIfEmptyDictInInput(cls,args,"MEDCouplingCMesh");
3596       }
3597       std::string __str__() const throw(INTERP_KERNEL::Exception)
3598       {
3599         return self->simpleRepr();
3600       }
3601       std::string __repr__() const throw(INTERP_KERNEL::Exception)
3602       {
3603         std::ostringstream oss;
3604         self->reprQuickOverview(oss);
3605         return oss.str();
3606       }
3607       DataArrayDouble *getCoordsAt(int i) throw(INTERP_KERNEL::Exception)
3608       {
3609         DataArrayDouble *ret=self->getCoordsAt(i);
3610         if(ret)
3611           ret->incrRef();
3612         return ret;
3613       }
3614     }
3615   };
3616
3617   //== MEDCouplingCMesh End
3618
3619   //== MEDCouplingCurveLinearMesh
3620
3621   class MEDCouplingCurveLinearMesh : public MEDCoupling::MEDCouplingStructuredMesh
3622   {
3623   public:
3624     static MEDCouplingCurveLinearMesh *New() throw(INTERP_KERNEL::Exception);
3625     static MEDCouplingCurveLinearMesh *New(const std::string& meshName) throw(INTERP_KERNEL::Exception);
3626     void setCoords(const DataArrayDouble *coords) throw(INTERP_KERNEL::Exception);
3627     %extend {
3628       MEDCouplingCurveLinearMesh() throw(INTERP_KERNEL::Exception)
3629       {
3630         return MEDCouplingCurveLinearMesh::New();
3631       }
3632       MEDCouplingCurveLinearMesh(const std::string& meshName) throw(INTERP_KERNEL::Exception)
3633       {
3634         return MEDCouplingCurveLinearMesh::New(meshName);
3635       }
3636       static PyObject *___new___(PyObject *cls, PyObject *args) throw(INTERP_KERNEL::Exception)
3637       {
3638         return NewMethWrapCallInitOnlyIfEmptyDictInInput(cls,args,"MEDCouplingCurveLinearMesh");
3639       }
3640       std::string __str__() const throw(INTERP_KERNEL::Exception) 
3641       {
3642         return self->simpleRepr();
3643       }
3644       std::string __repr__() const throw(INTERP_KERNEL::Exception)
3645       {
3646         std::ostringstream oss;
3647         self->reprQuickOverview(oss);
3648         return oss.str();
3649       }
3650       DataArrayDouble *getCoords() throw(INTERP_KERNEL::Exception)
3651       {
3652         DataArrayDouble *ret=self->getCoords();
3653         if(ret)
3654           ret->incrRef();
3655         return ret;
3656       }
3657       void setNodeGridStructure(PyObject *gridStruct) throw(INTERP_KERNEL::Exception)
3658       {
3659         int szArr,sw,iTypppArr;
3660         std::vector<int> stdvecTyyppArr;
3661         const int *tmp=convertIntStarLikePyObjToCppIntStar(gridStruct,sw,szArr,iTypppArr,stdvecTyyppArr);
3662         self->setNodeGridStructure(tmp,tmp+szArr);
3663       }
3664     }
3665   };
3666
3667   //== MEDCouplingCurveLinearMesh End
3668
3669   //== MEDCouplingIMesh
3670
3671   class MEDCouplingIMesh : public MEDCoupling::MEDCouplingStructuredMesh
3672   {
3673   public:
3674     static MEDCouplingIMesh *New() throw(INTERP_KERNEL::Exception);
3675     //
3676     void setSpaceDimension(int spaceDim) throw(INTERP_KERNEL::Exception);
3677     std::vector<int> getNodeStruct() const throw(INTERP_KERNEL::Exception);
3678     std::vector<double> getOrigin() const throw(INTERP_KERNEL::Exception);
3679     std::vector<double> getDXYZ() const throw(INTERP_KERNEL::Exception);
3680     void setAxisUnit(const std::string& unitName) throw(INTERP_KERNEL::Exception);
3681     std::string getAxisUnit() const throw(INTERP_KERNEL::Exception);
3682     double getMeasureOfAnyCell() const throw(INTERP_KERNEL::Exception);
3683     MEDCouplingCMesh *convertToCartesian() const throw(INTERP_KERNEL::Exception);
3684     void refineWithFactor(const std::vector<int>& factors) throw(INTERP_KERNEL::Exception);
3685     MEDCouplingIMesh *asSingleCell() const throw(INTERP_KERNEL::Exception);
3686     MEDCouplingIMesh *buildWithGhost(int ghostLev) const throw(INTERP_KERNEL::Exception);
3687     %extend
3688     {
3689       MEDCouplingIMesh()
3690       {
3691         return MEDCouplingIMesh::New();
3692       }
3693       static MEDCouplingIMesh *New(const std::string& meshName, int spaceDim, PyObject *nodeStrct, PyObject *origin, PyObject *dxyz) throw(INTERP_KERNEL::Exception)
3694       {
3695         static const char msg0[]="MEDCouplingIMesh::New : error on 'origin' parameter !";
3696         static const char msg1[]="MEDCouplingIMesh::New : error on 'dxyz' parameter !";
3697         const int *nodeStrctPtr(0);
3698         const double *originPtr(0),*dxyzPtr(0);
3699         int sw,sz,val0;
3700         std::vector<int> bb0;
3701         nodeStrctPtr=convertIntStarLikePyObjToCppIntStar(nodeStrct,sw,sz,val0,bb0);
3702         //
3703         double val,val2;
3704         std::vector<double> bb,bb2;
3705         int sz1,sz2;
3706         originPtr=convertObjToPossibleCpp5_SingleCompo(origin,sw,val,bb,msg0,false,sz1);
3707         dxyzPtr=convertObjToPossibleCpp5_SingleCompo(dxyz,sw,val2,bb2,msg1,false,sz2);
3708         //
3709         return MEDCouplingIMesh::New(meshName,spaceDim,nodeStrctPtr,nodeStrctPtr+sz,originPtr,originPtr+sz1,dxyzPtr,dxyzPtr+sz2);
3710       }
3711
3712       MEDCouplingIMesh(const std::string& meshName, int spaceDim, PyObject *nodeStrct, PyObject *origin, PyObject *dxyz) throw(INTERP_KERNEL::Exception)
3713       {
3714         return MEDCoupling_MEDCouplingIMesh_New__SWIG_1(meshName,spaceDim,nodeStrct,origin,dxyz);
3715       }
3716
3717       static PyObject *___new___(PyObject *cls, PyObject *args) throw(INTERP_KERNEL::Exception)
3718       {
3719         return NewMethWrapCallInitOnlyIfEmptyDictInInput(cls,args,"MEDCouplingIMesh");
3720       }
3721
3722       void setNodeStruct(PyObject *nodeStrct) throw(INTERP_KERNEL::Exception)
3723       {
3724         int sw,sz,val0;
3725         std::vector<int> bb0;
3726         const int *nodeStrctPtr(convertIntStarLikePyObjToCppIntStar(nodeStrct,sw,sz,val0,bb0));
3727         self->setNodeStruct(nodeStrctPtr,nodeStrctPtr+sz);
3728       }
3729
3730       void setOrigin(PyObject *origin) throw(INTERP_KERNEL::Exception)
3731       {
3732         static const char msg[]="MEDCouplingIMesh::setOrigin : invalid input 'origin' parameter ! integer, float, list/tuple of float, DataArrayDouble or DataArrayDoubleTuple supported !";
3733         double val;
3734         DataArrayDouble *a;
3735         DataArrayDoubleTuple *aa;
3736         std::vector<double> bb;
3737         int sw,nbTuples;
3738         const double *originPtr(convertObjToPossibleCpp5_SingleCompo(origin,sw,val,bb,msg,false,nbTuples));
3739         self->setOrigin(originPtr,originPtr+nbTuples);
3740       }
3741       
3742       void setDXYZ(PyObject *dxyz) throw(INTERP_KERNEL::Exception)
3743       {
3744         static const char msg[]="MEDCouplingIMesh::setDXYZ : invalid input 'dxyz' parameter ! integer, float, list/tuple of float, DataArrayDouble or DataArrayDoubleTuple supported !";
3745         double val;
3746         DataArrayDouble *a;
3747         DataArrayDoubleTuple *aa;
3748         std::vector<double> bb;
3749         int sw,nbTuples;
3750         const double *originPtr(convertObjToPossibleCpp5_SingleCompo(dxyz,sw,val,bb,msg,false,nbTuples));
3751         self->setDXYZ(originPtr,originPtr+nbTuples);
3752       }
3753
3754       static void CondenseFineToCoarse(const std::vector<int>& coarseSt, const DataArrayDouble *fineDA, PyObject *fineLocInCoarse, const std::vector<int>& facts, DataArrayDouble *coarseDA) throw(INTERP_KERNEL::Exception)
3755       {
3756         std::vector< std::pair<int,int> > inp;
3757         convertPyToVectorPairInt(fineLocInCoarse,inp);
3758         MEDCouplingIMesh::CondenseFineToCoarse(coarseSt,fineDA,inp,facts,coarseDA);
3759       }
3760
3761       static void CondenseFineToCoarseGhost(const std::vector<int>& coarseSt, const DataArrayDouble *fineDA, PyObject *fineLocInCoarse, const std::vector<int>& facts, DataArrayDouble *coarseDA, int ghostSize) throw(INTERP_KERNEL::Exception)
3762       {
3763         std::vector< std::pair<int,int> > inp;
3764         convertPyToVectorPairInt(fineLocInCoarse,inp);
3765         MEDCouplingIMesh::CondenseFineToCoarseGhost(coarseSt,fineDA,inp,facts,coarseDA,ghostSize);
3766       }
3767
3768       static void SpreadCoarseToFine(const DataArrayDouble *coarseDA, const std::vector<int>& coarseSt, DataArrayDouble *fineDA, PyObject *fineLocInCoarse, const std::vector<int>& facts) throw(INTERP_KERNEL::Exception)
3769       {
3770         std::vector< std::pair<int,int> > inp;
3771         convertPyToVectorPairInt(fineLocInCoarse,inp);
3772         MEDCouplingIMesh::SpreadCoarseToFine(coarseDA,coarseSt,fineDA,inp,facts);
3773       }
3774
3775       static void SpreadCoarseToFineGhost(const DataArrayDouble *coarseDA, const std::vector<int>& coarseSt, DataArrayDouble *fineDA, PyObject *fineLocInCoarse, const std::vector<int>& facts, int ghostSize) throw(INTERP_KERNEL::Exception)
3776       {
3777         std::vector< std::pair<int,int> > inp;
3778         convertPyToVectorPairInt(fineLocInCoarse,inp);
3779         MEDCouplingIMesh::SpreadCoarseToFineGhost(coarseDA,coarseSt,fineDA,inp,facts,ghostSize);
3780       }
3781
3782       static void SpreadCoarseToFineGhostZone(const DataArrayDouble *coarseDA, const std::vector<int>& coarseSt, DataArrayDouble *fineDA, PyObject *fineLocInCoarse, const std::vector<int>& facts, int ghostSize) throw(INTERP_KERNEL::Exception)
3783       {
3784         std::vector< std::pair<int,int> > inp;
3785         convertPyToVectorPairInt(fineLocInCoarse,inp);
3786         MEDCouplingIMesh::SpreadCoarseToFineGhostZone(coarseDA,coarseSt,fineDA,inp,facts,ghostSize);
3787       }
3788
3789       std::string __str__() const throw(INTERP_KERNEL::Exception)
3790       {
3791         return self->simpleRepr();
3792       }
3793       std::string __repr__() const throw(INTERP_KERNEL::Exception)
3794       {
3795         std::ostringstream oss;
3796         self->reprQuickOverview(oss);
3797         return oss.str();
3798       }
3799     }
3800   };
3801
3802   //== MEDCouplingIMesh End
3803
3804 }
3805
3806 namespace MEDCoupling
3807 {
3808   class MEDCouplingField : public MEDCoupling::RefCountObject, public MEDCoupling::TimeLabel
3809   {
3810   public:
3811     virtual void checkConsistencyLight() const throw(INTERP_KERNEL::Exception);
3812     virtual bool areCompatibleForMerge(const MEDCouplingField *other) const throw(INTERP_KERNEL::Exception);
3813     virtual bool isEqual(const MEDCouplingField *other, double meshPrec, double valsPrec) const throw(INTERP_KERNEL::Exception);
3814     virtual bool isEqualWithoutConsideringStr(const MEDCouplingField *other, double meshPrec, double valsPrec) const throw(INTERP_KERNEL::Exception);
3815     virtual void copyTinyStringsFrom(const MEDCouplingField *other) throw(INTERP_KERNEL::Exception);
3816     void setMesh(const MEDCoupling::MEDCouplingMesh *mesh) throw(INTERP_KERNEL::Exception);
3817     void setName(const char *name) throw(INTERP_KERNEL::Exception);
3818     std::string getDescription() const throw(INTERP_KERNEL::Exception);
3819     void setDescription(const char *desc) throw(INTERP_KERNEL::Exception);
3820     std::string getName() const throw(INTERP_KERNEL::Exception);
3821     TypeOfField getTypeOfField() const throw(INTERP_KERNEL::Exception);
3822     NatureOfField getNature() const throw(INTERP_KERNEL::Exception);
3823     virtual void setNature(NatureOfField nat) throw(INTERP_KERNEL::Exception);
3824     DataArrayDouble *getLocalizationOfDiscr() const throw(INTERP_KERNEL::Exception);
3825     MEDCouplingFieldDouble *buildMeasureField(bool isAbs) const throw(INTERP_KERNEL::Exception);
3826     int getNumberOfTuplesExpected() const throw(INTERP_KERNEL::Exception);
3827     int getNumberOfMeshPlacesExpected() const throw(INTERP_KERNEL::Exception);
3828     void setGaussLocalizationOnType(INTERP_KERNEL::NormalizedCellType type, const std::vector<double>& refCoo,
3829                                     const std::vector<double>& gsCoo, const std::vector<double>& wg) throw(INTERP_KERNEL::Exception);
3830     void clearGaussLocalizations() throw(INTERP_KERNEL::Exception);
3831     MEDCouplingGaussLocalization& getGaussLocalization(int locId) throw(INTERP_KERNEL::Exception);
3832     int getNbOfGaussLocalization() const throw(INTERP_KERNEL::Exception);
3833     int getGaussLocalizationIdOfOneCell(int cellId) const throw(INTERP_KERNEL::Exception);
3834     const MEDCouplingGaussLocalization& getGaussLocalization(int locId) const throw(INTERP_KERNEL::Exception);
3835     int getGaussLocalizationIdOfOneType(INTERP_KERNEL::NormalizedCellType type) const throw(INTERP_KERNEL::Exception);
3836     void setDiscretization(MEDCouplingFieldDiscretization *newDisc);
3837     %extend {
3838       PyObject *getMesh() const throw(INTERP_KERNEL::Exception)
3839       {
3840         MEDCouplingMesh *ret1=const_cast<MEDCouplingMesh *>(self->getMesh());
3841         if(ret1)
3842           ret1->incrRef();
3843         return convertMesh(ret1,SWIG_POINTER_OWN | 0 );
3844       }
3845
3846       PyObject *getDiscretization() throw(INTERP_KERNEL::Exception)
3847       {
3848         MEDCouplingFieldDiscretization *ret=self->getDiscretization();
3849         if(ret)
3850           ret->incrRef();
3851         return convertFieldDiscretization(ret,SWIG_POINTER_OWN | 0 );
3852       }
3853
3854       PyObject *getGaussLocalizationIdsOfOneType(INTERP_KERNEL::NormalizedCellType type) const throw(INTERP_KERNEL::Exception)
3855       {
3856         std::set<int> ret=self->getGaussLocalizationIdsOfOneType(type);
3857         return convertIntArrToPyList3(ret);
3858       }
3859
3860       PyObject *isEqualIfNotWhy(const MEDCouplingField *other, double meshPrec, double valsPrec) const throw(INTERP_KERNEL::Exception)
3861       {
3862         std::string ret1;
3863         bool ret0=self->isEqualIfNotWhy(other,meshPrec,valsPrec,ret1);
3864         PyObject *ret=PyTuple_New(2);
3865         PyObject *ret0Py=ret0?Py_True:Py_False;
3866         Py_XINCREF(ret0Py);
3867         PyTuple_SetItem(ret,0,ret0Py);
3868         PyTuple_SetItem(ret,1,PyString_FromString(ret1.c_str()));
3869         return ret;
3870       }
3871
3872       PyObject *buildSubMeshData(PyObject *li) const throw(INTERP_KERNEL::Exception)
3873       {
3874         DataArrayInt *ret1=0;
3875         MEDCouplingMesh *ret0=0;
3876         void *da=0;
3877         int res1=SWIG_ConvertPtr(li,&da,SWIGTYPE_p_MEDCoupling__DataArrayInt, 0 |  0 );
3878         if (!SWIG_IsOK(res1))
3879           {
3880             int size;
3881             INTERP_KERNEL::AutoPtr<int> tmp=convertPyToNewIntArr2(li,&size);
3882             ret0=self->buildSubMeshData(tmp,tmp+size,ret1);
3883           }
3884         else
3885           {
3886             DataArrayInt *da2=reinterpret_cast< DataArrayInt * >(da);
3887             if(!da2)
3888               throw INTERP_KERNEL::Exception("Not null DataArrayInt instance expected !");
3889             da2->checkAllocated();
3890             ret0=self->buildSubMeshData(da2->getConstPointer(),da2->getConstPointer()+da2->getNbOfElems(),ret1);
3891           }
3892         PyObject *res = PyList_New(2);
3893         PyList_SetItem(res,0,convertMesh(ret0, SWIG_POINTER_OWN | 0 ));
3894         PyList_SetItem(res,1,SWIG_NewPointerObj((void*)ret1,SWIGTYPE_p_MEDCoupling__DataArrayInt,SWIG_POINTER_OWN | 0));
3895         return res;
3896       }
3897
3898       PyObject *buildSubMeshDataRange(int begin, int end, int step) const throw(INTERP_KERNEL::Exception)
3899       {
3900         DataArrayInt *ret1=0;
3901         int bb,ee,ss;
3902         MEDCouplingMesh *ret0=self->buildSubMeshDataRange(begin,end,step,bb,ee,ss,ret1);
3903         PyObject *res=PyTuple_New(2);
3904         PyTuple_SetItem(res,0,convertMesh(ret0, SWIG_POINTER_OWN | 0 ));
3905         if(ret1)
3906           PyTuple_SetItem(res,1,SWIG_NewPointerObj((void*)ret1,SWIGTYPE_p_MEDCoupling__DataArrayInt,SWIG_POINTER_OWN | 0));
3907         else
3908           {
3909             PyObject *res1=PySlice_New(PyInt_FromLong(bb),PyInt_FromLong(ee),PyInt_FromLong(ss));
3910             PyTuple_SetItem(res,1,res1);
3911           }
3912         return res;
3913       }
3914
3915       DataArrayInt *computeTupleIdsToSelectFromCellIds(PyObject *cellIds) const
3916       {
3917         int sw,sz(-1);
3918         int v0; std::vector<int> v1;
3919         const int *cellIdsBg(convertIntStarLikePyObjToCppIntStar(cellIds,sw,sz,v0,v1));
3920         return self->computeTupleIdsToSelectFromCellIds(cellIdsBg,cellIdsBg+sz);
3921       }
3922
3923       void setGaussLocalizationOnCells(PyObject *li, const std::vector<double>& refCoo,
3924                                        const std::vector<double>& gsCoo, const std::vector<double>& wg) throw(INTERP_KERNEL::Exception)
3925       {
3926         void *da=0;
3927         int res1=SWIG_ConvertPtr(li,&da,SWIGTYPE_p_MEDCoupling__DataArrayInt, 0 |  0 );
3928         if (!SWIG_IsOK(res1))
3929           {
3930             int size;
3931             INTERP_KERNEL::AutoPtr<int> tmp=convertPyToNewIntArr2(li,&size);
3932             self->setGaussLocalizationOnCells(tmp,((int *)tmp)+size,refCoo,gsCoo,wg);
3933           }
3934         else
3935           {
3936             DataArrayInt *da2=reinterpret_cast< DataArrayInt * >(da);
3937             if(!da2)
3938               throw INTERP_KERNEL::Exception("Not null DataArrayInt instance expected !");
3939             da2->checkAllocated();
3940             self->setGaussLocalizationOnCells(da2->getConstPointer(),da2->getConstPointer()+da2->getNbOfElems(),refCoo,gsCoo,wg);
3941           }
3942       }
3943
3944       PyObject *getCellIdsHavingGaussLocalization(int locId) const throw(INTERP_KERNEL::Exception)
3945       {
3946         std::vector<int> tmp;
3947         self->getCellIdsHavingGaussLocalization(locId,tmp);
3948         DataArrayInt *ret=DataArrayInt::New();
3949         ret->alloc((int)tmp.size(),1);
3950         std::copy(tmp.begin(),tmp.end(),ret->getPointer());
3951         return SWIG_NewPointerObj(SWIG_as_voidptr(ret),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 );
3952       }
3953       
3954       int getNumberOfTuplesExpectedRegardingCode(PyObject *code, PyObject *idsPerType) const throw(INTERP_KERNEL::Exception)
3955       {
3956         std::vector<int> inp0;
3957         convertPyToNewIntArr4(code,1,3,inp0);
3958         std::vector<const DataArrayInt *> inp1;
3959         convertFromPyObjVectorOfObj<const MEDCoupling::DataArrayInt *>(idsPerType,SWIGTYPE_p_MEDCoupling__DataArrayInt,"DataArrayInt",inp1);
3960         return self->getNumberOfTuplesExpectedRegardingCode(inp0,inp1);
3961       }
3962     }
3963   };
3964   
3965   class MEDCouplingFieldTemplate : public MEDCoupling::MEDCouplingField
3966   {
3967   public:
3968     static MEDCouplingFieldTemplate *New(const MEDCouplingFieldDouble& f) throw(INTERP_KERNEL::Exception);
3969     static MEDCouplingFieldTemplate *New(const MEDCouplingFieldFloat& f) throw(INTERP_KERNEL::Exception);
3970     static MEDCouplingFieldTemplate *New(const MEDCouplingFieldInt& f) throw(INTERP_KERNEL::Exception);
3971     static MEDCouplingFieldTemplate *New(TypeOfField type);
3972     std::string simpleRepr() const throw(INTERP_KERNEL::Exception);
3973     std::string advancedRepr() const throw(INTERP_KERNEL::Exception);
3974     %extend
3975        {
3976          MEDCouplingFieldTemplate(const MEDCouplingFieldDouble& f) throw(INTERP_KERNEL::Exception)
3977          {
3978            return MEDCouplingFieldTemplate::New(f);
3979          }
3980
3981          MEDCouplingFieldTemplate(const MEDCouplingFieldFloat& f) throw(INTERP_KERNEL::Exception)
3982          {
3983            return MEDCouplingFieldTemplate::New(f);
3984          }
3985          
3986          MEDCouplingFieldTemplate(const MEDCouplingFieldInt& f) throw(INTERP_KERNEL::Exception)
3987          {
3988            return MEDCouplingFieldTemplate::New(f);
3989          }
3990          
3991          MEDCouplingFieldTemplate(TypeOfField type) throw(INTERP_KERNEL::Exception)
3992          {
3993            return MEDCouplingFieldTemplate::New(type);
3994          }
3995          
3996          std::string __str__() const throw(INTERP_KERNEL::Exception)
3997          {
3998            return self->simpleRepr();
3999          }
4000          
4001          std::string __repr__() const throw(INTERP_KERNEL::Exception)
4002          {
4003            std::ostringstream oss;
4004            self->reprQuickOverview(oss);
4005            return oss.str();
4006          }
4007        }
4008   };
4009   
4010   class MEDCouplingFieldInt;
4011   
4012   class MEDCouplingFieldDouble : public MEDCoupling::MEDCouplingField
4013   {
4014   public:
4015     static MEDCouplingFieldDouble *New(TypeOfField type, TypeOfTimeDiscretization td=ONE_TIME);
4016     static MEDCouplingFieldDouble *New(const MEDCouplingFieldTemplate& ft, TypeOfTimeDiscretization td=ONE_TIME);
4017     void setTimeUnit(const std::string& unit);
4018     std::string getTimeUnit() const;
4019     void synchronizeTimeWithSupport() throw(INTERP_KERNEL::Exception);
4020     void copyTinyAttrFrom(const MEDCouplingFieldDouble *other) throw(INTERP_KERNEL::Exception);
4021     void copyAllTinyAttrFrom(const MEDCouplingFieldDouble *other) throw(INTERP_KERNEL::Exception);
4022     std::string simpleRepr() const throw(INTERP_KERNEL::Exception);
4023     std::string advancedRepr() const throw(INTERP_KERNEL::Exception);
4024     std::string  writeVTK(const std::string& fileName, bool isBinary=true) const throw(INTERP_KERNEL::Exception);
4025     MEDCouplingFieldInt *convertToIntField() const throw(INTERP_KERNEL::Exception);
4026     MEDCouplingFieldDouble *clone(bool recDeepCpy) const;
4027     MEDCouplingFieldDouble *cloneWithMesh(bool recDeepCpy) const;
4028     MEDCouplingFieldDouble *deepCopy() const;
4029     MEDCouplingFieldDouble *buildNewTimeReprFromThis(TypeOfTimeDiscretization td, bool deepCopy) const throw(INTERP_KERNEL::Exception);
4030     MEDCouplingFieldDouble *nodeToCellDiscretization() const throw(INTERP_KERNEL::Exception);
4031     MEDCouplingFieldDouble *cellToNodeDiscretization() const throw(INTERP_KERNEL::Exception);
4032     TypeOfTimeDiscretization getTimeDiscretization() const throw(INTERP_KERNEL::Exception);
4033     double getIJ(int tupleId, int compoId) const throw(INTERP_KERNEL::Exception);
4034     double getIJK(int cellId, int nodeIdInCell, int compoId) const throw(INTERP_KERNEL::Exception);
4035     void synchronizeTimeWithMesh() throw(INTERP_KERNEL::Exception);
4036     void setArray(DataArrayDouble *array) throw(INTERP_KERNEL::Exception);
4037     void setEndArray(DataArrayDouble *array) throw(INTERP_KERNEL::Exception);
4038     void setTime(double val, int iteration, int order) throw(INTERP_KERNEL::Exception);
4039     void setStartTime(double val, int iteration, int order) throw(INTERP_KERNEL::Exception);
4040     void setEndTime(double val, int iteration, int order) throw(INTERP_KERNEL::Exception);
4041     void applyLin(double a, double b, int compoId) throw(INTERP_KERNEL::Exception);
4042     void applyLin(double a, double b) throw(INTERP_KERNEL::Exception);
4043     int getNumberOfComponents() const throw(INTERP_KERNEL::Exception);
4044     int getNumberOfTuples() const throw(INTERP_KERNEL::Exception);
4045     int getNumberOfValues() const throw(INTERP_KERNEL::Exception);
4046     void setTimeTolerance(double val) throw(INTERP_KERNEL::Exception);
4047     double getTimeTolerance() const throw(INTERP_KERNEL::Exception);
4048     void setIteration(int it) throw(INTERP_KERNEL::Exception);
4049     void setEndIteration(int it) throw(INTERP_KERNEL::Exception);
4050     void setOrder(int order) throw(INTERP_KERNEL::Exception);
4051     void setEndOrder(int order) throw(INTERP_KERNEL::Exception);
4052     void setTimeValue(double val) throw(INTERP_KERNEL::Exception);
4053     void setEndTimeValue(double val) throw(INTERP_KERNEL::Exception);
4054     void changeUnderlyingMesh(const MEDCouplingMesh *other, int levOfCheck, double precOnMesh, double eps=1e-15) throw(INTERP_KERNEL::Exception);
4055     void substractInPlaceDM(const MEDCouplingFieldDouble *f, int levOfCheck, double precOnMesh, double eps=1e-15) throw(INTERP_KERNEL::Exception);
4056     bool mergeNodes(double eps, double epsOnVals=1e-15) throw(INTERP_KERNEL::Exception);
4057     bool mergeNodesCenter(double eps, double epsOnVals=1e-15) throw(INTERP_KERNEL::Exception);
4058     bool zipCoords(double epsOnVals=1e-15) throw(INTERP_KERNEL::Exception);
4059     bool zipConnectivity(int compType,double epsOnVals=1e-15) throw(INTERP_KERNEL::Exception);
4060     bool simplexize(int policy) throw(INTERP_KERNEL::Exception);
4061     MEDCouplingFieldDouble *doublyContractedProduct() const throw(INTERP_KERNEL::Exception);
4062     MEDCouplingFieldDouble *determinant() const throw(INTERP_KERNEL::Exception);
4063     MEDCouplingFieldDouble *eigenValues() const throw(INTERP_KERNEL::Exception);
4064     MEDCouplingFieldDouble *eigenVectors() const throw(INTERP_KERNEL::Exception);
4065     MEDCouplingFieldDouble *inverse() const throw(INTERP_KERNEL::Exception);
4066     MEDCouplingFieldDouble *trace() const throw(INTERP_KERNEL::Exception);
4067     MEDCouplingFieldDouble *deviator() const throw(INTERP_KERNEL::Exception);
4068     MEDCouplingFieldDouble *magnitude() const throw(INTERP_KERNEL::Exception);
4069     MEDCouplingFieldDouble *maxPerTuple() const throw(INTERP_KERNEL::Exception);
4070     void changeNbOfComponents(int newNbOfComp, double dftValue=0.) throw(INTERP_KERNEL::Exception);
4071     void sortPerTuple(bool asc) throw(INTERP_KERNEL::Exception);
4072     MEDCouplingFieldDouble &operator=(double value) throw(INTERP_KERNEL::Exception);
4073     void fillFromAnalytic(int nbOfComp, const std::string& func) throw(INTERP_KERNEL::Exception);
4074     void fillFromAnalyticCompo(int nbOfComp, const std::string& func) throw(INTERP_KERNEL::Exception);
4075     void fillFromAnalyticNamedCompo(int nbOfComp, const std::vector<std::string>& varsOrder, const std::string& func) throw(INTERP_KERNEL::Exception);
4076     void applyFunc(int nbOfComp, const std::string& func) throw(INTERP_KERNEL::Exception);
4077     void applyFuncCompo(int nbOfComp, const std::string& func) throw(INTERP_KERNEL::Exception);
4078     void applyFuncNamedCompo(int nbOfComp, const std::vector<std::string>& varsOrder, const std::string& func) throw(INTERP_KERNEL::Exception);
4079     void applyFunc(int nbOfComp, double val) throw(INTERP_KERNEL::Exception);
4080     void applyFunc(const std::string& func) throw(INTERP_KERNEL::Exception);
4081     void applyFuncFast32(const std::string& func) throw(INTERP_KERNEL::Exception);
4082     void applyFuncFast64(const std::string& func) throw(INTERP_KERNEL::Exception);
4083     double accumulate(int compId) const throw(INTERP_KERNEL::Exception);
4084     double getMaxValue() const throw(INTERP_KERNEL::Exception);
4085     double getMinValue() const throw(INTERP_KERNEL::Exception);
4086     double getAverageValue() const throw(INTERP_KERNEL::Exception);
4087     double norm2() const throw(INTERP_KERNEL::Exception);
4088     double normMax() const throw(INTERP_KERNEL::Exception);
4089     //do not put a default value to isWAbs because confusion in python with overloaded getWeightedAverageValue method
4090     double getWeightedAverageValue(int compId, bool isWAbs) const throw(INTERP_KERNEL::Exception);
4091     double integral(int compId, bool isWAbs) const throw(INTERP_KERNEL::Exception);
4092     double normL1(int compId) const throw(INTERP_KERNEL::Exception);
4093     double normL2(int compId) const throw(INTERP_KERNEL::Exception);
4094     DataArrayInt *findIdsInRange(double vmin, double vmax) const throw(INTERP_KERNEL::Exception);
4095     MEDCouplingFieldDouble *buildSubPartRange(int begin, int end, int step) const throw(INTERP_KERNEL::Exception);
4096     static MEDCouplingFieldDouble *MergeFields(const MEDCouplingFieldDouble *f1, const MEDCouplingFieldDouble *f2) throw(INTERP_KERNEL::Exception);
4097     static MEDCouplingFieldDouble *MeldFields(const MEDCouplingFieldDouble *f1, const MEDCouplingFieldDouble *f2) throw(INTERP_KERNEL::Exception);
4098     static MEDCouplingFieldDouble *DotFields(const MEDCouplingFieldDouble *f1, const MEDCouplingFieldDouble *f2) throw(INTERP_KERNEL::Exception);
4099     MEDCouplingFieldDouble *dot(const MEDCouplingFieldDouble& other) const throw(INTERP_KERNEL::Exception);
4100     static MEDCouplingFieldDouble *CrossProductFields(const MEDCouplingFieldDouble *f1, const MEDCouplingFieldDouble *f2) throw(INTERP_KERNEL::Exception);
4101     MEDCouplingFieldDouble *crossProduct(const MEDCouplingFieldDouble& other) const throw(INTERP_KERNEL::Exception);
4102     static MEDCouplingFieldDouble *MaxFields(const MEDCouplingFieldDouble *f1, const MEDCouplingFieldDouble *f2) throw(INTERP_KERNEL::Exception);
4103     MEDCouplingFieldDouble *max(const MEDCouplingFieldDouble& other) const throw(INTERP_KERNEL::Exception);
4104     static MEDCouplingFieldDouble *MinFields(const MEDCouplingFieldDouble *f1, const MEDCouplingFieldDouble *f2) throw(INTERP_KERNEL::Exception);
4105     static MEDCouplingFieldDouble *AddFields(const MEDCouplingFieldDouble *f1, const MEDCouplingFieldDouble *f2) throw(INTERP_KERNEL::Exception);
4106     static MEDCouplingFieldDouble *SubstractFields(const MEDCouplingFieldDouble *f1, const MEDCouplingFieldDouble *f2) throw(INTERP_KERNEL::Exception);
4107     static MEDCouplingFieldDouble *MultiplyFields(const MEDCouplingFieldDouble *f1, const MEDCouplingFieldDouble *f2) throw(INTERP_KERNEL::Exception);
4108     static MEDCouplingFieldDouble *DivideFields(const MEDCouplingFieldDouble *f1, const MEDCouplingFieldDouble *f2) throw(INTERP_KERNEL::Exception);
4109     MEDCouplingFieldDouble *min(const MEDCouplingFieldDouble& other) const throw(INTERP_KERNEL::Exception);
4110     MEDCouplingFieldDouble *negate() const throw(INTERP_KERNEL::Exception);
4111     %extend {
4112       MEDCouplingFieldDouble(TypeOfField type, TypeOfTimeDiscretization td=ONE_TIME)
4113       {
4114         return MEDCouplingFieldDouble::New(type,td);
4115       }
4116
4117       MEDCouplingFieldDouble(const MEDCouplingFieldTemplate& ft, TypeOfTimeDiscretization td=ONE_TIME)
4118       {
4119         return MEDCouplingFieldDouble::New(ft,td);
4120       }
4121
4122       std::string __str__() const throw(INTERP_KERNEL::Exception)
4123       {
4124         return self->simpleRepr();
4125       }
4126
4127       std::string __repr__() const throw(INTERP_KERNEL::Exception)
4128       {
4129         std::ostringstream oss;
4130         self->reprQuickOverview(oss);
4131         return oss.str();
4132       }
4133       
4134       MEDCouplingFieldDouble *voronoize(double eps) const throw(INTERP_KERNEL::Exception)
4135       {
4136         MCAuto<MEDCouplingFieldDouble> ret(self->voronoize(eps));
4137         return ret.retn();
4138       }
4139
4140       MEDCouplingFieldDouble *convertQuadraticCellsToLinear() const throw(INTERP_KERNEL::Exception)
4141       {
4142         MCAuto<MEDCouplingFieldDouble> ret(self->convertQuadraticCellsToLinear());
4143         return ret.retn();
4144       }
4145       
4146       MEDCouplingFieldDouble *computeVectorFieldCyl(PyObject *center, PyObject *vector) const
4147       {
4148         const char msg[]="Python wrap of MEDCouplingFieldDouble::computeVectorFieldCyl : ";
4149         double val,val2;
4150         DataArrayDouble *a,*a2;
4151         DataArrayDoubleTuple *aa,*aa2;
4152         std::vector<double> bb,bb2;
4153         int sw;
4154         const double *centerPtr=convertObjToPossibleCpp5_Safe(center,sw,val,a,aa,bb,msg,1,3,true);
4155         const double *vectorPtr=convertObjToPossibleCpp5_Safe(vector,sw,val2,a2,aa2,bb2,msg,1,3,true);
4156         return self->computeVectorFieldCyl(centerPtr,vectorPtr);
4157       }
4158
4159       DataArrayDouble *getArray() throw(INTERP_KERNEL::Exception)
4160       {
4161         DataArrayDouble *ret=self->getArray();
4162         if(ret)
4163           ret->incrRef();
4164         return ret;
4165       }
4166
4167       PyObject *getArrays() const throw(INTERP_KERNEL::Exception)
4168       {
4169         std::vector<DataArrayDouble *> arrs=self->getArrays();
4170         for(std::vector<DataArrayDouble *>::iterator it=arrs.begin();it!=arrs.end();it++)
4171           if(*it)
4172             (*it)->incrRef();
4173         int sz=arrs.size();
4174         PyObject *ret=PyTuple_New(sz);
4175         for(int i=0;i<sz;i++)
4176           {
4177             if(arrs[i])
4178               PyTuple_SetItem(ret,i,SWIG_NewPointerObj(SWIG_as_voidptr(arrs[i]),SWIGTYPE_p_MEDCoupling__DataArrayDouble, SWIG_POINTER_OWN | 0 ));
4179             else
4180               PyTuple_SetItem(ret,i,SWIG_NewPointerObj(SWIG_as_voidptr(0),SWIGTYPE_p_MEDCoupling__DataArrayDouble, 0 | 0 ));
4181           }
4182         return ret;
4183       }
4184
4185       void setArrays(PyObject *ls) throw(INTERP_KERNEL::Exception)
4186       {
4187         std::vector<const DataArrayDouble *> tmp;
4188         convertFromPyObjVectorOfObj<const DataArrayDouble *>(ls,SWIGTYPE_p_MEDCoupling__DataArrayDouble,"DataArrayDouble",tmp);
4189         int sz=tmp.size();
4190         std::vector<DataArrayDouble *> arrs(sz);
4191         for(int i=0;i<sz;i++)
4192           arrs[i]=const_cast<DataArrayDouble *>(tmp[i]);
4193         self->setArrays(arrs);
4194       }
4195
4196       DataArrayDouble *getEndArray() throw(INTERP_KERNEL::Exception)
4197       {
4198         DataArrayDouble *ret=self->getEndArray();
4199         if(ret)
4200           ret->incrRef();
4201         return ret;
4202       }
4203
4204       PyObject *getValueOn(PyObject *sl) const throw(INTERP_KERNEL::Exception)
4205       {
4206         double val;
4207         DataArrayDouble *a;
4208         DataArrayDoubleTuple *aa;
4209         std::vector<double> bb;
4210         int sw;
4211         const MEDCouplingMesh *mesh=self->getMesh();
4212         if(!mesh)
4213           throw INTERP_KERNEL::Exception("Python wrap of MEDCouplingFieldDouble::getValueOn : no underlying mesh !");
4214         int spaceDim=mesh->getSpaceDimension();
4215         const char msg[]="Python wrap of MEDCouplingFieldDouble::getValueOn : ";
4216         const double *spaceLoc=convertObjToPossibleCpp5_Safe(sl,sw,val,a,aa,bb,msg,1,spaceDim,true);
4217         //
4218         int sz=self->getNumberOfComponents();
4219         INTERP_KERNEL::AutoPtr<double> res=new double[sz];
4220         self->getValueOn(spaceLoc,res);
4221         return convertDblArrToPyList<double>(res,sz);
4222       }
4223
4224        PyObject *getValueOnPos(int i, int j, int k) const throw(INTERP_KERNEL::Exception)
4225        {
4226          int sz=self->getNumberOfComponents();
4227          INTERP_KERNEL::AutoPtr<double> res=new double[sz];
4228          self->getValueOnPos(i,j,k,res);
4229          return convertDblArrToPyList<double>(res,sz);
4230        }
4231
4232       DataArrayDouble *getValueOnMulti(PyObject *locs) const throw(INTERP_KERNEL::Exception)
4233       {
4234         const MEDCouplingMesh *mesh(self->getMesh());
4235         if(!mesh)
4236           throw INTERP_KERNEL::Exception("Python wrap MEDCouplingFieldDouble::getValueOnMulti : lying on a null mesh !");
4237         //
4238         int sw,nbPts;
4239         double v0; MEDCoupling::DataArrayDouble *v1(0); MEDCoupling::DataArrayDoubleTuple *v2(0); std::vector<double> v3;
4240         const double *inp=convertObjToPossibleCpp5_Safe2(locs,sw,v0,v1,v2,v3,"wrap of MEDCouplingFieldDouble::getValueOnMulti",
4241                                                          mesh->getSpaceDimension(),true,nbPts);
4242         return self->getValueOnMulti(inp,nbPts);
4243       }
4244
4245       PyObject *getValueOn(PyObject *sl, double time) const throw(INTERP_KERNEL::Exception)
4246       {
4247         double val;
4248         DataArrayDouble *a;
4249         DataArrayDoubleTuple *aa;
4250         std::vector<double> bb;
4251         int sw;
4252         const MEDCouplingMesh *mesh=self->getMesh();
4253         if(!mesh)
4254           throw INTERP_KERNEL::Exception("Python wrap of MEDCouplingFieldDouble::getValueOn : no underlying mesh !");
4255         int spaceDim=mesh->getSpaceDimension();
4256         const char msg[]="Python wrap of MEDCouplingFieldDouble::getValueOn : ";
4257         const double *spaceLoc=convertObjToPossibleCpp5_Safe(sl,sw,val,a,aa,bb,msg,1,spaceDim,true);
4258         //
4259         //
4260         int sz=self->getNumberOfComponents();
4261         INTERP_KERNEL::AutoPtr<double> res=new double[sz];
4262         self->getValueOn(spaceLoc,time,res);
4263         return convertDblArrToPyList<double>(res,sz);
4264       }
4265
4266       void setValues(PyObject *li, PyObject *nbOfTuples=0, PyObject *nbOfComp=0) throw(INTERP_KERNEL::Exception)
4267       {
4268         if(self->getArray()!=0)
4269           MEDCoupling_DataArrayDouble_setValues__SWIG_0(self->getArray(),li,nbOfTuples,nbOfComp);
4270         else
4271           {
4272             MCAuto<DataArrayDouble> arr=DataArrayDouble::New();
4273             MEDCoupling_DataArrayDouble_setValues__SWIG_0(arr,li,nbOfTuples,nbOfComp);
4274             self->setArray(arr);
4275           }
4276       }
4277       
4278       PyObject *getTime() throw(INTERP_KERNEL::Exception)
4279       {
4280         int tmp1,tmp2;
4281         double tmp0=self->getTime(tmp1,tmp2);
4282         PyObject *res = PyList_New(3);
4283         PyList_SetItem(res,0,SWIG_From_double(tmp0));
4284         PyList_SetItem(res,1,SWIG_From_int(tmp1));
4285         PyList_SetItem(res,2,SWIG_From_int(tmp2));
4286         return res;
4287       }
4288
4289       PyObject *getStartTime() throw(INTERP_KERNEL::Exception)
4290       {
4291         int tmp1,tmp2;
4292         double tmp0=self->getStartTime(tmp1,tmp2);
4293         PyObject *res = PyList_New(3);
4294         PyList_SetItem(res,0,SWIG_From_double(tmp0));
4295         PyList_SetItem(res,1,SWIG_From_int(tmp1));
4296         PyList_SetItem(res,2,SWIG_From_int(tmp2));
4297         return res;
4298       }
4299
4300       PyObject *getEndTime() throw(INTERP_KERNEL::Exception)
4301       {
4302         int tmp1,tmp2;
4303         double tmp0=self->getEndTime(tmp1,tmp2);
4304         PyObject *res = PyList_New(3);
4305         PyList_SetItem(res,0,SWIG_From_double(tmp0));
4306         PyList_SetItem(res,1,SWIG_From_int(tmp1));
4307         PyList_SetItem(res,2,SWIG_From_int(tmp2));
4308         return res;
4309       }
4310       PyObject *accumulate() const throw(INTERP_KERNEL::Exception)
4311       {
4312         int sz=self->getNumberOfComponents();
4313         INTERP_KERNEL::AutoPtr<double> tmp=new double[sz];
4314         self->accumulate(tmp);
4315         return convertDblArrToPyList<double>(tmp,sz);
4316       }
4317       PyObject *integral(bool isWAbs) const throw(INTERP_KERNEL::Exception)
4318       {
4319         int sz=self->getNumberOfComponents();
4320         INTERP_KERNEL::AutoPtr<double> tmp=new double[sz];
4321         self->integral(isWAbs,tmp);
4322         return convertDblArrToPyList<double>(tmp,sz);
4323       }
4324       PyObject *getWeightedAverageValue(bool isWAbs=true) const throw(INTERP_KERNEL::Exception)
4325       {
4326         int sz=self->getNumberOfComponents();
4327         INTERP_KERNEL::AutoPtr<double> tmp=new double[sz];
4328         self->getWeightedAverageValue(tmp,isWAbs);
4329         return convertDblArrToPyList<double>(tmp,sz);
4330       }
4331       PyObject *normL1() const throw(INTERP_KERNEL::Exception)
4332       {
4333         int sz=self->getNumberOfComponents();
4334         INTERP_KERNEL::AutoPtr<double> tmp=new double[sz];
4335         self->normL1(tmp);
4336         return convertDblArrToPyList<double>(tmp,sz);
4337       }
4338       PyObject *normL2() const throw(INTERP_KERNEL::Exception)
4339       {
4340         int sz=self->getNumberOfComponents();
4341         INTERP_KERNEL::AutoPtr<double> tmp=new double[sz];
4342         self->normL2(tmp);
4343         return convertDblArrToPyList<double>(tmp,sz);
4344       }
4345       void renumberCells(PyObject *li, bool check=true) throw(INTERP_KERNEL::Exception)
4346       {
4347         int szArr,sw,iTypppArr;
4348         std::vector<int> stdvecTyyppArr;
4349         const int *tmp=convertIntStarLikePyObjToCppIntStar(li,sw,szArr,iTypppArr,stdvecTyyppArr);
4350         self->renumberCells(tmp,check);
4351       }
4352       
4353       void renumberCellsWithoutMesh(PyObject *li, bool check=true) throw(INTERP_KERNEL::Exception)
4354       {
4355         int szArr,sw,iTypppArr;
4356         std::vector<int> stdvecTyyppArr;
4357         const int *tmp=convertIntStarLikePyObjToCppIntStar(li,sw,szArr,iTypppArr,stdvecTyyppArr);
4358         self->renumberCellsWithoutMesh(tmp,check);
4359       }
4360       
4361       void renumberNodes(PyObject *li, double eps=1e-15) throw(INTERP_KERNEL::Exception)
4362       {
4363         int szArr,sw,iTypppArr;
4364         std::vector<int> stdvecTyyppArr;
4365         const int *tmp=convertIntStarLikePyObjToCppIntStar(li,sw,szArr,iTypppArr,stdvecTyyppArr);
4366         self->renumberNodes(tmp,eps);
4367       }
4368
4369       void renumberNodesWithoutMesh(PyObject *li, int newNbOfNodes, double eps=1e-15) throw(INTERP_KERNEL::Exception)
4370       {
4371         int szArr,sw,iTypppArr;
4372         std::vector<int> stdvecTyyppArr;
4373         const int *tmp=convertIntStarLikePyObjToCppIntStar(li,sw,szArr,iTypppArr,stdvecTyyppArr);
4374         self->renumberNodesWithoutMesh(tmp,newNbOfNodes,eps);
4375       }
4376
4377       MEDCouplingFieldDouble *buildSubPart(PyObject *li) const throw(INTERP_KERNEL::Exception)
4378       {
4379         return fieldT_buildSubPart(self,li);
4380       }
4381
4382       MEDCouplingFieldDouble *__getitem__(PyObject *li) const throw(INTERP_KERNEL::Exception)
4383       {
4384         return fieldT__getitem__(self,li);
4385       }
4386
4387       PyObject *getMaxValue2() const throw(INTERP_KERNEL::Exception)
4388       {
4389         DataArrayInt *tmp;
4390         double r1=self->getMaxValue2(tmp);
4391         PyObject *ret=PyTuple_New(2);
4392         PyTuple_SetItem(ret,0,PyFloat_FromDouble(r1));
4393         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(tmp),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
4394         return ret;
4395       }
4396       
4397       PyObject *getMinValue2() const throw(INTERP_KERNEL::Exception)
4398       {
4399         DataArrayInt *tmp;
4400         double r1=self->getMinValue2(tmp);
4401         PyObject *ret=PyTuple_New(2);
4402         PyTuple_SetItem(ret,0,PyFloat_FromDouble(r1));
4403         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(tmp),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
4404         return ret;
4405       }
4406       
4407       MEDCouplingFieldDouble *keepSelectedComponents(PyObject *li) const throw(INTERP_KERNEL::Exception)
4408       {
4409         std::vector<int> tmp;
4410         convertPyToNewIntArr3(li,tmp);
4411         return self->keepSelectedComponents(tmp);
4412       }
4413
4414       void setSelectedComponents(const MEDCouplingFieldDouble *f, PyObject *li) throw(INTERP_KERNEL::Exception)
4415       {
4416         std::vector<int> tmp;
4417         convertPyToNewIntArr3(li,tmp);
4418         self->setSelectedComponents(f,tmp);
4419       }
4420
4421       MEDCouplingFieldDouble *extractSlice3D(PyObject *origin, PyObject *vec, double eps) const throw(INTERP_KERNEL::Exception)
4422       {
4423         double val,val2;
4424         DataArrayDouble *a,*a2;
4425         DataArrayDoubleTuple *aa,*aa2;
4426         std::vector<double> bb,bb2;
4427         int sw;
4428         int spaceDim=3;
4429         const char msg[]="Python wrap of MEDCouplingFieldDouble::extractSlice3D : 1st paramater for origin.";
4430         const char msg2[]="Python wrap of MEDCouplingFieldDouble::extractSlice3D : 2nd paramater for vector.";
4431         const double *orig=convertObjToPossibleCpp5_Safe(origin,sw,val,a,aa,bb,msg,1,spaceDim,true);
4432         const double *vect=convertObjToPossibleCpp5_Safe(vec,sw,val2,a2,aa2,bb2,msg2,1,spaceDim,true);
4433         //
4434         return self->extractSlice3D(orig,vect,eps);
4435       }
4436
4437       MEDCouplingFieldDouble *__add__(PyObject *obj) throw(INTERP_KERNEL::Exception)
4438       {
4439         return MEDCoupling_MEDCouplingFieldDouble___add__Impl(self,obj);
4440       }
4441
4442       MEDCouplingFieldDouble *__radd__(PyObject *obj) throw(INTERP_KERNEL::Exception)
4443       {
4444         return MEDCoupling_MEDCouplingFieldDouble___radd__Impl(self,obj);
4445       }
4446
4447       MEDCouplingFieldDouble *__sub__(PyObject *obj) throw(INTERP_KERNEL::Exception)
4448       {
4449         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.";
4450         const char msg2[]="in MEDCouplingFieldDouble.__sub__ : self field has no Array of values set !";
4451         void *argp;
4452         //
4453         if(SWIG_IsOK(SWIG_ConvertPtr(obj,&argp,SWIGTYPE_p_MEDCoupling__MEDCouplingFieldDouble,0|0)))
4454           {
4455             MEDCouplingFieldDouble *other=reinterpret_cast< MEDCoupling::MEDCouplingFieldDouble * >(argp);
4456             if(other)
4457               return (*self)-(*other);
4458             else
4459               throw INTERP_KERNEL::Exception(msg);
4460           }
4461         //
4462         double val;
4463         DataArrayDouble *a;
4464         DataArrayDoubleTuple *aa;
4465         std::vector<double> bb;
4466         int sw;
4467         convertDoubleStarLikePyObjToCpp_2(obj,sw,val,a,aa,bb);
4468         switch(sw)
4469           {
4470           case 1:
4471             {
4472               if(!self->getArray())
4473                 throw INTERP_KERNEL::Exception(msg2);
4474               MCAuto<DataArrayDouble> ret=self->getArray()->deepCopy();
4475               ret->applyLin(1.,-val);
4476               MCAuto<MEDCouplingFieldDouble> ret2=self->clone(false);
4477               ret2->setArray(ret);
4478               return ret2.retn();
4479             }
4480           case 2:
4481             {
4482               if(!self->getArray())
4483                 throw INTERP_KERNEL::Exception(msg2);
4484               MCAuto<DataArrayDouble> ret=DataArrayDouble::Substract(self->getArray(),a);
4485               MCAuto<MEDCouplingFieldDouble> ret2=self->clone(false);
4486               ret2->setArray(ret);
4487               return ret2.retn();
4488             }
4489           case 3:
4490             {
4491               if(!self->getArray())
4492                 throw INTERP_KERNEL::Exception(msg2);
4493               MCAuto<DataArrayDouble> aaa=aa->buildDADouble(1,self->getNumberOfComponents());
4494               MCAuto<DataArrayDouble> ret=DataArrayDouble::Substract(self->getArray(),aaa);
4495               MCAuto<MEDCouplingFieldDouble> ret2=self->clone(false);
4496               ret2->setArray(ret);
4497               return ret2.retn();
4498             }
4499           case 4:
4500             {
4501               if(!self->getArray())
4502                 throw INTERP_KERNEL::Exception(msg2);
4503               MCAuto<DataArrayDouble> aaa=DataArrayDouble::New(); aaa->useArray(&bb[0],false,CPP_DEALLOC,1,(int)bb.size());
4504               MCAuto<DataArrayDouble> ret=DataArrayDouble::Substract(self->getArray(),aaa);
4505               MCAuto<MEDCouplingFieldDouble> ret2=self->clone(false);
4506               ret2->setArray(ret);
4507               return ret2.retn();
4508             }
4509           default:
4510             { throw INTERP_KERNEL::Exception(msg); }
4511           }
4512       }
4513
4514       MEDCouplingFieldDouble *__rsub__(PyObject *obj) throw(INTERP_KERNEL::Exception)
4515       {
4516         return MEDCoupling_MEDCouplingFieldDouble___rsub__Impl(self,obj);
4517       }
4518
4519       MEDCouplingFieldDouble *__mul__(PyObject *obj) throw(INTERP_KERNEL::Exception)
4520       {
4521         return MEDCoupling_MEDCouplingFieldDouble___mul__Impl(self,obj);
4522       }
4523
4524       MEDCouplingFieldDouble *__rmul__(PyObject *obj) throw(INTERP_KERNEL::Exception)
4525       {
4526         return MEDCoupling_MEDCouplingFieldDouble___rmul__Impl(self,obj);
4527       }
4528
4529       MEDCouplingFieldDouble *__div__(PyObject *obj) throw(INTERP_KERNEL::Exception)
4530       {
4531         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.";
4532         const char msg2[]="in MEDCouplingFieldDouble.__div__ : self field has no Array of values set !";
4533         void *argp;
4534         //
4535         if(SWIG_IsOK(SWIG_ConvertPtr(obj,&argp,SWIGTYPE_p_MEDCoupling__MEDCouplingFieldDouble,0|0)))
4536           {
4537             MEDCouplingFieldDouble *other=reinterpret_cast< MEDCoupling::MEDCouplingFieldDouble * >(argp);
4538             if(other)
4539               return (*self)/(*other);
4540             else
4541               throw INTERP_KERNEL::Exception(msg);
4542           }
4543         //
4544         double val;
4545         DataArrayDouble *a;
4546         DataArrayDoubleTuple *aa;
4547         std::vector<double> bb;
4548         int sw;
4549         convertDoubleStarLikePyObjToCpp_2(obj,sw,val,a,aa,bb);
4550         switch(sw)
4551           {
4552           case 1:
4553             {
4554               if(val==0.)
4555                 throw INTERP_KERNEL::Exception("MEDCouplingFieldDouble.__div__ : trying to divide by zero !");
4556               if(!self->getArray())
4557                 throw INTERP_KERNEL::Exception(msg2);
4558               MCAuto<DataArrayDouble> ret=self->getArray()->deepCopy();
4559               ret->applyLin(1./val,0);
4560               MCAuto<MEDCouplingFieldDouble> ret2=self->clone(false);
4561               ret2->setArray(ret);
4562               return ret2.retn();
4563             }
4564           case 2:
4565             {
4566               if(!self->getArray())
4567                 throw INTERP_KERNEL::Exception(msg2);
4568               MCAuto<DataArrayDouble> ret=DataArrayDouble::Divide(self->getArray(),a);
4569               MCAuto<MEDCouplingFieldDouble> ret2=self->clone(false);
4570               ret2->setArray(ret);
4571               return ret2.retn();
4572             }
4573           case 3:
4574             {
4575               if(!self->getArray())
4576                 throw INTERP_KERNEL::Exception(msg2);
4577               MCAuto<DataArrayDouble> aaa=aa->buildDADouble(1,self->getNumberOfComponents());
4578               MCAuto<DataArrayDouble> ret=DataArrayDouble::Divide(self->getArray(),aaa);
4579               MCAuto<MEDCouplingFieldDouble> ret2=self->clone(false);
4580               ret2->setArray(ret);
4581               return ret2.retn();
4582             }
4583           case 4:
4584             {
4585               if(!self->getArray())
4586                 throw INTERP_KERNEL::Exception(msg2);
4587               MCAuto<DataArrayDouble> aaa=DataArrayDouble::New(); aaa->useArray(&bb[0],false,CPP_DEALLOC,1,(int)bb.size());
4588               MCAuto<DataArrayDouble> ret=DataArrayDouble::Divide(self->getArray(),aaa);
4589               MCAuto<MEDCouplingFieldDouble> ret2=self->clone(false);
4590               ret2->setArray(ret);
4591               return ret2.retn();
4592             }
4593           default:
4594             { throw INTERP_KERNEL::Exception(msg); }
4595           }
4596       }
4597
4598       MEDCouplingFieldDouble *__rdiv__(PyObject *obj) throw(INTERP_KERNEL::Exception)
4599       {
4600         return MEDCoupling_MEDCouplingFieldDouble___rdiv__Impl(self,obj);
4601       }
4602
4603       MEDCouplingFieldDouble *__pow__(PyObject *obj) throw(INTERP_KERNEL::Exception)
4604       {
4605         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.";
4606         const char msg2[]="in MEDCouplingFieldDouble.__pow__ : self field has no Array of values set !";
4607         void *argp;
4608         //
4609         if(SWIG_IsOK(SWIG_ConvertPtr(obj,&argp,SWIGTYPE_p_MEDCoupling__MEDCouplingFieldDouble,0|0)))
4610           {
4611             MEDCouplingFieldDouble *other=reinterpret_cast< MEDCoupling::MEDCouplingFieldDouble * >(argp);
4612             if(other)
4613               return (*self)^(*other);
4614             else
4615               throw INTERP_KERNEL::Exception(msg);
4616           }
4617         //
4618         double val;
4619         DataArrayDouble *a;
4620         DataArrayDoubleTuple *aa;
4621         std::vector<double> bb;
4622         int sw;
4623         convertDoubleStarLikePyObjToCpp_2(obj,sw,val,a,aa,bb);
4624         switch(sw)
4625           {
4626           case 1:
4627             {
4628               if(!self->getArray())
4629                 throw INTERP_KERNEL::Exception(msg2);
4630               MCAuto<DataArrayDouble> ret=self->getArray()->deepCopy();
4631               ret->applyPow(val);
4632               MCAuto<MEDCouplingFieldDouble> ret2=self->clone(false);
4633               ret2->setArray(ret);
4634               return ret2.retn();
4635             }
4636           case 2:
4637             {
4638               if(!self->getArray())
4639                 throw INTERP_KERNEL::Exception(msg2);
4640               MCAuto<DataArrayDouble> ret=DataArrayDouble::Pow(self->getArray(),a);
4641               MCAuto<MEDCouplingFieldDouble> ret2=self->clone(false);
4642               ret2->setArray(ret);
4643               return ret2.retn();
4644             }
4645           case 3:
4646             {
4647               if(!self->getArray())
4648                 throw INTERP_KERNEL::Exception(msg2);
4649               MCAuto<DataArrayDouble> aaa=aa->buildDADouble(1,self->getNumberOfComponents());
4650               MCAuto<DataArrayDouble> ret=DataArrayDouble::Pow(self->getArray(),aaa);
4651               MCAuto<MEDCouplingFieldDouble> ret2=self->clone(false);
4652               ret2->setArray(ret);
4653               return ret2.retn();
4654             }
4655           case 4:
4656             {
4657               if(!self->getArray())
4658                 throw INTERP_KERNEL::Exception(msg2);
4659               MCAuto<DataArrayDouble> aaa=DataArrayDouble::New(); aaa->useArray(&bb[0],false,CPP_DEALLOC,1,(int)bb.size());
4660               MCAuto<DataArrayDouble> ret=DataArrayDouble::Pow(self->getArray(),aaa);
4661               MCAuto<MEDCouplingFieldDouble> ret2=self->clone(false);
4662               ret2->setArray(ret);
4663               return ret2.retn();
4664             }
4665           default:
4666             { throw INTERP_KERNEL::Exception(msg); }
4667           }
4668       }
4669
4670       MEDCouplingFieldDouble *__neg__() const throw(INTERP_KERNEL::Exception)
4671       {
4672         return self->negate();
4673       }
4674
4675       PyObject *___iadd___(PyObject *trueSelf, PyObject *obj) throw(INTERP_KERNEL::Exception)
4676       {
4677         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.";
4678         const char msg2[]="in MEDCouplingFieldDouble.__iadd__ : self field has no Array of values set !";
4679         void *argp;
4680         //
4681         if(SWIG_IsOK(SWIG_ConvertPtr(obj,&argp,SWIGTYPE_p_MEDCoupling__MEDCouplingFieldDouble,0|0)))
4682           {
4683             MEDCouplingFieldDouble *other=reinterpret_cast< MEDCoupling::MEDCouplingFieldDouble * >(argp);
4684             if(other)
4685               {
4686                 *self+=*other;
4687                 Py_XINCREF(trueSelf);
4688                 return trueSelf;
4689               }
4690             else
4691               throw INTERP_KERNEL::Exception(msg);
4692           }
4693         //
4694         double val;
4695         DataArrayDouble *a;
4696         DataArrayDoubleTuple *aa;
4697         std::vector<double> bb;
4698         int sw;
4699         convertDoubleStarLikePyObjToCpp_2(obj,sw,val,a,aa,bb);
4700         switch(sw)
4701           {
4702           case 1:
4703             {
4704               if(!self->getArray())
4705                 throw INTERP_KERNEL::Exception(msg2);
4706               self->getArray()->applyLin(1.,val);
4707               Py_XINCREF(trueSelf);
4708               return trueSelf;
4709             }
4710           case 2:
4711             {
4712               MCAuto<MEDCouplingFieldDouble> ret2=self->clone(false);
4713               ret2->setArray(a);
4714               *self+=*ret2;
4715               Py_XINCREF(trueSelf);
4716               return trueSelf;
4717             }
4718           case 3:
4719             {
4720               MCAuto<DataArrayDouble> aaa=aa->buildDADouble(1,self->getNumberOfComponents());
4721               MCAuto<MEDCouplingFieldDouble> ret2=self->clone(false);
4722               ret2->setArray(aaa);
4723               *self+=*ret2;
4724               Py_XINCREF(trueSelf);
4725               return trueSelf;
4726             }
4727           case 4:
4728             {
4729               if(!self->getArray())
4730                 throw INTERP_KERNEL::Exception(msg2);
4731               MCAuto<DataArrayDouble> aaa=DataArrayDouble::New(); aaa->useArray(&bb[0],false,CPP_DEALLOC,1,(int)bb.size());
4732               self->getArray()->addEqual(aaa);
4733               Py_XINCREF(trueSelf);
4734               return trueSelf;
4735             }
4736           default:
4737             { throw INTERP_KERNEL::Exception(msg); }
4738           }
4739       }
4740
4741       PyObject *___isub___(PyObject *trueSelf, PyObject *obj) throw(INTERP_KERNEL::Exception)
4742       {
4743         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.";
4744         const char msg2[]="in MEDCouplingFieldDouble.__isub__ : self field has no Array of values set !";
4745         void *argp;
4746         //
4747         if(SWIG_IsOK(SWIG_ConvertPtr(obj,&argp,SWIGTYPE_p_MEDCoupling__MEDCouplingFieldDouble,0|0)))
4748           {
4749             MEDCouplingFieldDouble *other=reinterpret_cast< MEDCoupling::MEDCouplingFieldDouble * >(argp);
4750             if(other)
4751               {
4752                 *self-=*other;
4753                 Py_XINCREF(trueSelf);
4754                 return trueSelf;
4755               }
4756             else
4757               throw INTERP_KERNEL::Exception(msg);
4758           }
4759         //
4760         double val;
4761         DataArrayDouble *a;
4762         DataArrayDoubleTuple *aa;
4763         std::vector<double> bb;
4764         int sw;
4765         convertDoubleStarLikePyObjToCpp_2(obj,sw,val,a,aa,bb);
4766         switch(sw)
4767           {
4768           case 1:
4769             {
4770               if(!self->getArray())
4771                 throw INTERP_KERNEL::Exception(msg2);
4772               self->getArray()->applyLin(1.,-val);
4773               Py_XINCREF(trueSelf);
4774               return trueSelf;
4775             }
4776           case 2:
4777             {
4778               MCAuto<MEDCouplingFieldDouble> ret2=self->clone(false);
4779               ret2->setArray(a);
4780               *self-=*ret2;
4781               Py_XINCREF(trueSelf);
4782               return trueSelf;
4783             }
4784           case 3:
4785             {
4786               MCAuto<DataArrayDouble> aaa=aa->buildDADouble(1,self->getNumberOfComponents());
4787               MCAuto<MEDCouplingFieldDouble> ret2=self->clone(false);
4788               ret2->setArray(aaa);
4789               *self-=*ret2;
4790               Py_XINCREF(trueSelf);
4791               return trueSelf;
4792             }
4793           case 4:
4794             {
4795               if(!self->getArray())
4796                 throw INTERP_KERNEL::Exception(msg2);
4797               MCAuto<DataArrayDouble> aaa=DataArrayDouble::New(); aaa->useArray(&bb[0],false,CPP_DEALLOC,1,(int)bb.size());
4798               self->getArray()->substractEqual(aaa);
4799               Py_XINCREF(trueSelf);
4800               return trueSelf;
4801             }
4802           default:
4803             { throw INTERP_KERNEL::Exception(msg); }
4804           }
4805       }
4806
4807       PyObject *___imul___(PyObject *trueSelf, PyObject *obj) throw(INTERP_KERNEL::Exception)
4808       {
4809         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.";
4810         const char msg2[]="in MEDCouplingFieldDouble.__imul__ : self field has no Array of values set !";
4811         void *argp;
4812         //
4813         if(SWIG_IsOK(SWIG_ConvertPtr(obj,&argp,SWIGTYPE_p_MEDCoupling__MEDCouplingFieldDouble,0|0)))
4814           {
4815             MEDCouplingFieldDouble *other=reinterpret_cast< MEDCoupling::MEDCouplingFieldDouble * >(argp);
4816             if(other)
4817               {
4818                 *self*=*other;
4819                 Py_XINCREF(trueSelf);
4820                 return trueSelf;
4821               }
4822             else
4823               throw INTERP_KERNEL::Exception(msg);
4824           }
4825         //
4826         double val;
4827         DataArrayDouble *a;
4828         DataArrayDoubleTuple *aa;
4829         std::vector<double> bb;
4830         int sw;
4831         convertDoubleStarLikePyObjToCpp_2(obj,sw,val,a,aa,bb);
4832         switch(sw)
4833           {
4834           case 1:
4835             {
4836               if(!self->getArray())
4837                 throw INTERP_KERNEL::Exception(msg2);
4838               self->getArray()->applyLin(val,0);
4839               Py_XINCREF(trueSelf);
4840               return trueSelf;
4841             }
4842           case 2:
4843             {
4844               MCAuto<MEDCouplingFieldDouble> ret2=self->clone(false);
4845               ret2->setArray(a);
4846               *self*=*ret2;
4847               Py_XINCREF(trueSelf);
4848               return trueSelf;
4849             }
4850           case 3:
4851             {
4852               MCAuto<DataArrayDouble> aaa=aa->buildDADouble(1,self->getNumberOfComponents());
4853               MCAuto<MEDCouplingFieldDouble> ret2=self->clone(false);
4854               ret2->setArray(aaa);
4855               *self*=*ret2;
4856               Py_XINCREF(trueSelf);
4857               return trueSelf;
4858             }
4859           case 4:
4860             {
4861               if(!self->getArray())
4862                 throw INTERP_KERNEL::Exception(msg2);
4863               MCAuto<DataArrayDouble> aaa=DataArrayDouble::New(); aaa->useArray(&bb[0],false,CPP_DEALLOC,1,(int)bb.size());
4864               self->getArray()->multiplyEqual(aaa);
4865               Py_XINCREF(trueSelf);
4866               return trueSelf;
4867             }
4868           default:
4869             { throw INTERP_KERNEL::Exception(msg); }
4870           }
4871       }
4872
4873       PyObject *___idiv___(PyObject *trueSelf, PyObject *obj) throw(INTERP_KERNEL::Exception)
4874       {
4875         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.";
4876         const char msg2[]="in MEDCouplingFieldDouble.__idiv__ : self field has no Array of values set !";
4877         void *argp;
4878         //
4879         if(SWIG_IsOK(SWIG_ConvertPtr(obj,&argp,SWIGTYPE_p_MEDCoupling__MEDCouplingFieldDouble,0|0)))
4880           {
4881             MEDCouplingFieldDouble *other=reinterpret_cast< MEDCoupling::MEDCouplingFieldDouble * >(argp);
4882             if(other)
4883               {
4884                 *self/=*other;
4885                 Py_XINCREF(trueSelf);
4886                 return trueSelf;
4887               }
4888             else
4889               throw INTERP_KERNEL::Exception(msg);
4890           }
4891         //
4892         double val;
4893         DataArrayDouble *a;
4894         DataArrayDoubleTuple *aa;
4895         std::vector<double> bb;
4896         int sw;
4897         convertDoubleStarLikePyObjToCpp_2(obj,sw,val,a,aa,bb);
4898         switch(sw)
4899           {
4900           case 1:
4901             {
4902               if(val==0.)
4903                 throw INTERP_KERNEL::Exception("MEDCouplingFieldDouble.__idiv__ : trying to divide by zero !");
4904               if(!self->getArray())
4905                 throw INTERP_KERNEL::Exception(msg2);
4906               self->getArray()->applyLin(1./val,0);
4907               Py_XINCREF(trueSelf);
4908               return trueSelf;
4909             }
4910           case 2:
4911             {
4912               MCAuto<MEDCouplingFieldDouble> ret2=self->clone(false);
4913               ret2->setArray(a);
4914               *self/=*ret2;
4915               Py_XINCREF(trueSelf);
4916               return trueSelf;
4917             }
4918           case 3:
4919             {
4920               MCAuto<DataArrayDouble> aaa=aa->buildDADouble(1,self->getNumberOfComponents());
4921               MCAuto<MEDCouplingFieldDouble> ret2=self->clone(false);
4922               ret2->setArray(aaa);
4923               *self/=*ret2;
4924               Py_XINCREF(trueSelf);
4925               return trueSelf;
4926             }
4927           case 4:
4928             {
4929               if(!self->getArray())
4930                 throw INTERP_KERNEL::Exception(msg2);
4931               MCAuto<DataArrayDouble> aaa=DataArrayDouble::New(); aaa->useArray(&bb[0],false,CPP_DEALLOC,1,(int)bb.size());
4932               self->getArray()->divideEqual(aaa);
4933               Py_XINCREF(trueSelf);
4934               return trueSelf;
4935             }
4936           default:
4937             { throw INTERP_KERNEL::Exception(msg); }
4938           }
4939       }
4940
4941       PyObject *___ipow___(PyObject *trueSelf, PyObject *obj) throw(INTERP_KERNEL::Exception)
4942       {
4943         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.";
4944         const char msg2[]="in MEDCouplingFieldDouble.__ipow__ : self field has no Array of values set !";
4945         void *argp;
4946         //
4947         if(SWIG_IsOK(SWIG_ConvertPtr(obj,&argp,SWIGTYPE_p_MEDCoupling__MEDCouplingFieldDouble,0|0)))
4948           {
4949             MEDCouplingFieldDouble *other=reinterpret_cast< MEDCoupling::MEDCouplingFieldDouble * >(argp);
4950             if(other)
4951               {
4952                 *self^=*other;
4953                 Py_XINCREF(trueSelf);
4954                 return trueSelf;
4955               }
4956             else
4957               throw INTERP_KERNEL::Exception(msg);
4958           }
4959         //
4960         double val;
4961         DataArrayDouble *a;
4962         DataArrayDoubleTuple *aa;
4963         std::vector<double> bb;
4964         int sw;
4965         convertDoubleStarLikePyObjToCpp_2(obj,sw,val,a,aa,bb);
4966         switch(sw)
4967           {
4968           case 1:
4969             {
4970               if(!self->getArray())
4971                 throw INTERP_KERNEL::Exception(msg2);
4972               self->getArray()->applyPow(val);
4973               Py_XINCREF(trueSelf);
4974               return trueSelf;
4975             }
4976           case 2:
4977             {
4978               MCAuto<MEDCouplingFieldDouble> ret2=self->clone(false);
4979               ret2->setArray(a);
4980               *self^=*ret2;
4981               Py_XINCREF(trueSelf);
4982               return trueSelf;
4983             }
4984           case 3:
4985             {
4986               MCAuto<DataArrayDouble> aaa=aa->buildDADouble(1,self->getNumberOfComponents());
4987               MCAuto<MEDCouplingFieldDouble> ret2=self->clone(false);
4988               ret2->setArray(aaa);
4989               *self^=*ret2;
4990               Py_XINCREF(trueSelf);
4991               return trueSelf;
4992             }
4993           case 4:
4994             {
4995               if(!self->getArray())
4996                 throw INTERP_KERNEL::Exception(msg2);
4997               MCAuto<DataArrayDouble> aaa=DataArrayDouble::New(); aaa->useArray(&bb[0],false,CPP_DEALLOC,1,(int)bb.size());
4998               self->getArray()->powEqual(aaa);
4999               Py_XINCREF(trueSelf);
5000               return trueSelf;
5001             }
5002           default:
5003             { throw INTERP_KERNEL::Exception(msg); }
5004           }
5005       }
5006
5007       static MEDCouplingFieldDouble *MergeFields(PyObject *li) throw(INTERP_KERNEL::Exception)
5008       {
5009         std::vector<const MEDCouplingFieldDouble *> tmp;
5010         convertFromPyObjVectorOfObj<const MEDCoupling::MEDCouplingFieldDouble *>(li,SWIGTYPE_p_MEDCoupling__MEDCouplingFieldDouble,"MEDCouplingFieldDouble",tmp);
5011         return MEDCouplingFieldDouble::MergeFields(tmp);
5012       }
5013
5014       static std::string WriteVTK(const char *fileName, PyObject *li, bool isBinary=true) throw(INTERP_KERNEL::Exception)
5015       {
5016         std::vector<const MEDCouplingFieldDouble *> tmp;
5017         convertFromPyObjVectorOfObj<const MEDCoupling::MEDCouplingFieldDouble *>(li,SWIGTYPE_p_MEDCoupling__MEDCouplingFieldDouble,"MEDCouplingFieldDouble",tmp);
5018         return MEDCouplingFieldDouble::WriteVTK(fileName,tmp,isBinary);
5019       }
5020
5021       PyObject *getTinySerializationInformation() const throw(INTERP_KERNEL::Exception)
5022       {
5023         return field_getTinySerializationInformation<MEDCouplingFieldDouble>(self);
5024       }
5025       
5026       PyObject *serialize() const throw(INTERP_KERNEL::Exception)
5027       {
5028         return field_serialize<double>(self);
5029       }
5030
5031       static PyObject *___new___(PyObject *cls, PyObject *args) throw(INTERP_KERNEL::Exception)
5032       {
5033         return NewMethWrapCallInitOnlyIfDictWithSingleEltInInputGeneral<SinglePyObjExpectToBeAListOfSz2>(cls,args,"MEDCouplingFieldDouble");
5034       }
5035
5036       PyObject *__getnewargs__() throw(INTERP_KERNEL::Exception)
5037       {// put an empty dict in input to say to __new__ to call __init__...
5038         return field__getnewargs__<MEDCouplingFieldDouble>(self);
5039       }
5040
5041       PyObject *__getstate__() const throw(INTERP_KERNEL::Exception)
5042       {
5043         return field__getstate__<MEDCouplingFieldDouble>(self,MEDCoupling_MEDCouplingFieldDouble_getTinySerializationInformation,MEDCoupling_MEDCouplingFieldDouble_serialize);
5044       }
5045       
5046       void __setstate__(PyObject *inp) throw(INTERP_KERNEL::Exception)
5047       {
5048         field__setstate__<double>(self,inp);
5049       }
5050     }
5051   };
5052
5053   class MEDCouplingMultiFields : public RefCountObject, public TimeLabel
5054   {
5055   public:
5056     int getNumberOfFields() const;
5057     MEDCouplingMultiFields *deepCopy() const;
5058     virtual std::string simpleRepr() const throw(INTERP_KERNEL::Exception);
5059     virtual std::string advancedRepr() const throw(INTERP_KERNEL::Exception);
5060     virtual bool isEqual(const MEDCouplingMultiFields *other, double meshPrec, double valsPrec) const;
5061     virtual bool isEqualWithoutConsideringStr(const MEDCouplingMultiFields *other, double meshPrec, double valsPrec) const;
5062     virtual void checkConsistencyLight() const throw(INTERP_KERNEL::Exception);
5063     %extend
5064        {
5065          std::string __str__() const throw(INTERP_KERNEL::Exception)
5066          {
5067            return self->simpleRepr();
5068          }
5069          static MEDCouplingMultiFields *New(PyObject *li) throw(INTERP_KERNEL::Exception)
5070          {
5071            std::vector<const MEDCoupling::MEDCouplingFieldDouble *> tmp;
5072            convertFromPyObjVectorOfObj<const MEDCoupling::MEDCouplingFieldDouble *>(li,SWIGTYPE_p_MEDCoupling__MEDCouplingFieldDouble,"MEDCouplingFieldDouble",tmp);
5073            int sz=tmp.size();
5074            std::vector<MEDCouplingFieldDouble *> fs(sz);
5075            for(int i=0;i<sz;i++)
5076              fs[i]=const_cast<MEDCouplingFieldDouble *>(tmp[i]);
5077            return MEDCouplingMultiFields::New(fs);
5078          }
5079          MEDCouplingMultiFields(PyObject *li) throw(INTERP_KERNEL::Exception)
5080          {
5081            std::vector<const MEDCoupling::MEDCouplingFieldDouble *> tmp;
5082            convertFromPyObjVectorOfObj<const MEDCoupling::MEDCouplingFieldDouble *>(li,SWIGTYPE_p_MEDCoupling__MEDCouplingFieldDouble,"MEDCouplingFieldDouble",tmp);
5083            int sz=tmp.size();
5084            std::vector<MEDCouplingFieldDouble *> fs(sz);
5085            for(int i=0;i<sz;i++)
5086              fs[i]=const_cast<MEDCouplingFieldDouble *>(tmp[i]);
5087            return MEDCouplingMultiFields::New(fs);
5088          }
5089          PyObject *getFields() const
5090          {
5091            std::vector<const MEDCouplingFieldDouble *> fields=self->getFields();
5092            int sz=fields.size();
5093            PyObject *res = PyList_New(sz);
5094            for(int i=0;i<sz;i++)
5095              {
5096                if(fields[i])
5097                  {
5098                    fields[i]->incrRef();
5099                    PyList_SetItem(res,i,SWIG_NewPointerObj(SWIG_as_voidptr(fields[i]),SWIGTYPE_p_MEDCoupling__MEDCouplingFieldDouble, SWIG_POINTER_OWN | 0 ));
5100                  }
5101                else
5102                  {
5103                    PyList_SetItem(res,i,SWIG_NewPointerObj(SWIG_as_voidptr(0),SWIGTYPE_p_MEDCoupling__MEDCouplingFieldDouble, 0 ));
5104                  }
5105              }
5106            return res;
5107          }
5108          PyObject *getFieldAtPos(int id) const throw(INTERP_KERNEL::Exception)
5109          {
5110            const MEDCouplingFieldDouble *ret=self->getFieldAtPos(id);
5111            if(ret)
5112              {
5113                ret->incrRef();
5114                return SWIG_NewPointerObj(SWIG_as_voidptr(ret),SWIGTYPE_p_MEDCoupling__MEDCouplingFieldDouble, SWIG_POINTER_OWN | 0 );
5115              }
5116            else
5117              return SWIG_NewPointerObj(SWIG_as_voidptr(0),SWIGTYPE_p_MEDCoupling__MEDCouplingFieldDouble, 0 );
5118          }
5119          PyObject *getMeshes() const throw(INTERP_KERNEL::Exception)
5120          {
5121            std::vector<MEDCouplingMesh *> ms=self->getMeshes();
5122            int sz=ms.size();
5123            PyObject *res = PyList_New(sz);
5124            for(int i=0;i<sz;i++)
5125              {
5126                if(ms[i])
5127                  {
5128                    ms[i]->incrRef();
5129                    PyList_SetItem(res,i,convertMesh(ms[i], SWIG_POINTER_OWN | 0 ));
5130                  }
5131                else
5132                  {
5133                    PyList_SetItem(res,i,SWIG_NewPointerObj(SWIG_as_voidptr(0),SWIGTYPE_p_MEDCoupling__MEDCouplingUMesh, 0 ));
5134                  }
5135              }
5136            return res;
5137          }
5138          PyObject *getDifferentMeshes() const throw(INTERP_KERNEL::Exception)
5139          {
5140            std::vector<int> refs;
5141            std::vector<MEDCouplingMesh *> ms=self->getDifferentMeshes(refs);
5142            int sz=ms.size();
5143            PyObject *res = PyList_New(sz);
5144            for(int i=0;i<sz;i++)
5145              {
5146                if(ms[i])
5147                  {
5148                    ms[i]->incrRef();
5149                    PyList_SetItem(res,i,convertMesh(ms[i], SWIG_POINTER_OWN | 0 ));
5150                  }
5151                else
5152                  {
5153                    PyList_SetItem(res,i,SWIG_NewPointerObj(SWIG_as_voidptr(0),SWIGTYPE_p_MEDCoupling__MEDCouplingUMesh, 0 ));
5154                  }
5155              }
5156            //
5157            PyObject *ret=PyTuple_New(2);
5158            PyTuple_SetItem(ret,0,res);
5159            PyTuple_SetItem(ret,1,convertIntArrToPyList2(refs));
5160            return ret;
5161          }
5162          PyObject *getArrays() const throw(INTERP_KERNEL::Exception)
5163          {
5164            std::vector<DataArrayDouble *> ms=self->getArrays();
5165            int sz=ms.size();
5166            PyObject *res = PyList_New(sz);
5167            for(int i=0;i<sz;i++)
5168              {
5169                if(ms[i])
5170                  {
5171                    ms[i]->incrRef();
5172                    PyList_SetItem(res,i,SWIG_NewPointerObj(SWIG_as_voidptr(ms[i]),SWIGTYPE_p_MEDCoupling__DataArrayDouble, SWIG_POINTER_OWN | 0 ));
5173                  }
5174                else
5175                  {
5176                    PyList_SetItem(res,i,SWIG_NewPointerObj(SWIG_as_voidptr(0),SWIGTYPE_p_MEDCoupling__DataArrayDouble, 0 ));
5177                  }
5178              }
5179            return res;
5180          }
5181          PyObject *getDifferentArrays() const throw(INTERP_KERNEL::Exception)
5182          {
5183            std::vector< std::vector<int> > refs;
5184            std::vector<DataArrayDouble *> ms=self->getDifferentArrays(refs);
5185            int sz=ms.size();
5186            PyObject *res = PyList_New(sz);
5187            PyObject *res2 = PyList_New(sz);
5188            for(int i=0;i<sz;i++)
5189              {
5190                if(ms[i])
5191                  {
5192                    ms[i]->incrRef();
5193                    PyList_SetItem(res,i,SWIG_NewPointerObj(SWIG_as_voidptr(ms[i]),SWIGTYPE_p_MEDCoupling__DataArrayDouble, SWIG_POINTER_OWN | 0 ));
5194                  }
5195                else
5196                  {
5197                    PyList_SetItem(res,i,SWIG_NewPointerObj(SWIG_as_voidptr(0),SWIGTYPE_p_MEDCoupling__DataArrayDouble, 0 ));
5198                  }
5199                PyList_SetItem(res2,i,convertIntArrToPyList2(refs[i]));
5200              }
5201            //
5202            PyObject *ret=PyTuple_New(2);
5203            PyTuple_SetItem(ret,0,res);
5204            PyTuple_SetItem(ret,1,res2);
5205            return ret;
5206          }
5207        }
5208   };
5209
5210   class MEDCouplingFieldInt : public MEDCouplingField
5211   {
5212   public:
5213     static MEDCouplingFieldInt *New(TypeOfField type, TypeOfTimeDiscretization td=ONE_TIME);
5214     static MEDCouplingFieldInt *New(const MEDCouplingFieldTemplate& ft, TypeOfTimeDiscretization td=ONE_TIME);
5215     void setTimeUnit(const std::string& unit) throw(INTERP_KERNEL::Exception);
5216     std::string getTimeUnit() const throw(INTERP_KERNEL::Exception);
5217     void setTime(double val, int iteration, int order) throw(INTERP_KERNEL::Exception);
5218     void setArray(DataArrayInt *array) throw(INTERP_KERNEL::Exception);
5219     MEDCouplingFieldInt *deepCopy() const throw(INTERP_KERNEL::Exception);
5220     MEDCouplingFieldInt *clone(bool recDeepCpy) const throw(INTERP_KERNEL::Exception);
5221     MEDCouplingFieldInt *cloneWithMesh(bool recDeepCpy) const throw(INTERP_KERNEL::Exception);
5222     MEDCouplingFieldDouble *convertToDblField() const throw(INTERP_KERNEL::Exception);
5223     MEDCouplingFieldInt *buildSubPartRange(int begin, int end, int step) const throw(INTERP_KERNEL::Exception);
5224     %extend {
5225       MEDCouplingFieldInt(TypeOfField type, TypeOfTimeDiscretization td=ONE_TIME)
5226       {
5227         return MEDCouplingFieldInt::New(type,td);
5228       }
5229
5230       MEDCouplingFieldInt(const MEDCouplingFieldTemplate& ft, TypeOfTimeDiscretization td=ONE_TIME)
5231       {
5232         return MEDCouplingFieldInt::New(ft,td);
5233       }
5234
5235       std::string __str__() const throw(INTERP_KERNEL::Exception)
5236       {
5237         return self->simpleRepr();
5238       }
5239
5240       std::string __repr__() const throw(INTERP_KERNEL::Exception)
5241       {
5242         std::ostringstream oss;
5243         self->reprQuickOverview(oss);
5244         return oss.str();
5245       }
5246
5247       MEDCouplingFieldInt *buildSubPart(PyObject *li) const throw(INTERP_KERNEL::Exception)
5248       {
5249         return fieldT_buildSubPart(self,li);
5250       }
5251
5252       MEDCouplingFieldInt *__getitem__(PyObject *li) const throw(INTERP_KERNEL::Exception)
5253       {
5254         return fieldT__getitem__(self,li);
5255       }
5256
5257       DataArrayInt *getArray() throw(INTERP_KERNEL::Exception)
5258       {
5259         DataArrayInt *ret=self->getArray();
5260         if(ret)
5261           ret->incrRef();
5262         return ret;
5263       }
5264       
5265       PyObject *getTime() throw(INTERP_KERNEL::Exception)
5266         {
5267         int tmp1,tmp2;
5268         double tmp0=self->getTime(tmp1,tmp2);
5269         PyObject *res = PyList_New(3);
5270         PyList_SetItem(res,0,SWIG_From_double(tmp0));
5271         PyList_SetItem(res,1,SWIG_From_int(tmp1));
5272         PyList_SetItem(res,2,SWIG_From_int(tmp2));
5273         return res;
5274         }
5275
5276       PyObject *getTinySerializationInformation() const throw(INTERP_KERNEL::Exception)
5277       {
5278         return field_getTinySerializationInformation<MEDCouplingFieldInt>(self);
5279       }
5280       
5281       PyObject *serialize() const throw(INTERP_KERNEL::Exception)
5282       {
5283         return field_serialize<int>(self);
5284       }
5285
5286       static PyObject *___new___(PyObject *cls, PyObject *args) throw(INTERP_KERNEL::Exception)
5287       {
5288         return NewMethWrapCallInitOnlyIfDictWithSingleEltInInputGeneral<SinglePyObjExpectToBeAListOfSz2>(cls,args,"MEDCouplingFieldInt");
5289       }
5290
5291       PyObject *__getnewargs__() throw(INTERP_KERNEL::Exception)
5292       {// put an empty dict in input to say to __new__ to call __init__...
5293         return field__getnewargs__<MEDCouplingFieldInt>(self);
5294       }
5295
5296       PyObject *__getstate__() const throw(INTERP_KERNEL::Exception)
5297       {
5298         return field__getstate__<MEDCouplingFieldInt>(self,MEDCoupling_MEDCouplingFieldInt_getTinySerializationInformation,MEDCoupling_MEDCouplingFieldInt_serialize);
5299       }
5300       
5301       void __setstate__(PyObject *inp) throw(INTERP_KERNEL::Exception)
5302       {
5303         field__setstate__<int>(self,inp);
5304       }
5305     }
5306   };
5307
5308   class MEDCouplingFieldFloat : public MEDCouplingField
5309   {
5310   public:
5311     static MEDCouplingFieldFloat *New(TypeOfField type, TypeOfTimeDiscretization td=ONE_TIME);
5312     static MEDCouplingFieldFloat *New(const MEDCouplingFieldTemplate& ft, TypeOfTimeDiscretization td=ONE_TIME);
5313     void setTimeUnit(const std::string& unit) throw(INTERP_KERNEL::Exception);
5314     std::string getTimeUnit() const throw(INTERP_KERNEL::Exception);
5315     void setTime(double val, int iteration, int order) throw(INTERP_KERNEL::Exception);
5316     void setArray(DataArrayFloat *array) throw(INTERP_KERNEL::Exception);
5317     MEDCouplingFieldFloat *deepCopy() const throw(INTERP_KERNEL::Exception);
5318     MEDCouplingFieldFloat *clone(bool recDeepCpy) const throw(INTERP_KERNEL::Exception);
5319     MEDCouplingFieldFloat *cloneWithMesh(bool recDeepCpy) const throw(INTERP_KERNEL::Exception);
5320     MEDCouplingFieldDouble *convertToDblField() const throw(INTERP_KERNEL::Exception);
5321     MEDCouplingFieldFloat *buildSubPartRange(int begin, int end, int step) const throw(INTERP_KERNEL::Exception);
5322     %extend {
5323       MEDCouplingFieldFloat(TypeOfField type, TypeOfTimeDiscretization td=ONE_TIME)
5324       {
5325         return MEDCouplingFieldFloat::New(type,td);
5326       }
5327
5328       MEDCouplingFieldFloat(const MEDCouplingFieldTemplate& ft, TypeOfTimeDiscretization td=ONE_TIME)
5329       {
5330         return MEDCouplingFieldFloat::New(ft,td);
5331       }
5332
5333       std::string __str__() const throw(INTERP_KERNEL::Exception)
5334       {
5335         return self->simpleRepr();
5336       }
5337
5338       std::string __repr__() const throw(INTERP_KERNEL::Exception)
5339       {
5340         std::ostringstream oss;
5341         self->reprQuickOverview(oss);
5342         return oss.str();
5343       }
5344
5345       MEDCouplingFieldFloat *buildSubPart(PyObject *li) const throw(INTERP_KERNEL::Exception)
5346       {
5347         return fieldT_buildSubPart(self,li);
5348       }
5349
5350       MEDCouplingFieldFloat *__getitem__(PyObject *li) const throw(INTERP_KERNEL::Exception)
5351       {
5352         return fieldT__getitem__(self,li);
5353       }
5354
5355       DataArrayFloat *getArray() throw(INTERP_KERNEL::Exception)
5356       {
5357         DataArrayFloat *ret=self->getArray();
5358         if(ret)
5359           ret->incrRef();
5360         return ret;
5361       }
5362       
5363       PyObject *getTime() throw(INTERP_KERNEL::Exception)
5364       {
5365         int tmp1,tmp2;
5366         double tmp0=self->getTime(tmp1,tmp2);
5367         PyObject *res = PyList_New(3);
5368         PyList_SetItem(res,0,SWIG_From_double(tmp0));
5369         PyList_SetItem(res,1,SWIG_From_int(tmp1));
5370         PyList_SetItem(res,2,SWIG_From_int(tmp2));
5371         return res;
5372       }
5373
5374       PyObject *getTinySerializationInformation() const throw(INTERP_KERNEL::Exception)
5375       {
5376         return field_getTinySerializationInformation<MEDCouplingFieldFloat>(self);
5377       }
5378       
5379       PyObject *serialize() const throw(INTERP_KERNEL::Exception)
5380       {
5381         return field_serialize<float>(self);
5382       }
5383         
5384       static PyObject *___new___(PyObject *cls, PyObject *args) throw(INTERP_KERNEL::Exception)
5385       {
5386         return NewMethWrapCallInitOnlyIfDictWithSingleEltInInputGeneral<SinglePyObjExpectToBeAListOfSz2>(cls,args,"MEDCouplingFieldFloat");
5387       }
5388       
5389       PyObject *__getnewargs__() throw(INTERP_KERNEL::Exception)
5390       {// put an empty dict in input to say to __new__ to call __init__...
5391         return field__getnewargs__<MEDCouplingFieldFloat>(self);
5392       }
5393       
5394       PyObject *__getstate__() const throw(INTERP_KERNEL::Exception)
5395       {
5396         return field__getstate__<MEDCouplingFieldFloat>(self,MEDCoupling_MEDCouplingFieldFloat_getTinySerializationInformation,MEDCoupling_MEDCouplingFieldFloat_serialize);
5397       }
5398         
5399       void __setstate__(PyObject *inp) throw(INTERP_KERNEL::Exception)
5400       {
5401         field__setstate__<float>(self,inp);
5402       }
5403     }
5404   };
5405   
5406   class MEDCouplingDefinitionTime
5407   {
5408   public:
5409     MEDCouplingDefinitionTime();
5410     void assign(const MEDCouplingDefinitionTime& other);
5411     bool isEqual(const MEDCouplingDefinitionTime& other) const;
5412     double getTimeResolution() const;
5413     std::vector<double> getHotSpotsTime() const;
5414     %extend
5415       {
5416         std::string __str__() const throw(INTERP_KERNEL::Exception)
5417           {
5418             std::ostringstream oss;
5419             self->appendRepr(oss);
5420             return oss.str();
5421           }
5422
5423         PyObject *getIdsOnTimeRight(double tm) const throw(INTERP_KERNEL::Exception)
5424         {
5425           int meshId,arrId,arrIdInField,fieldId;
5426           self->getIdsOnTimeRight(tm,meshId,arrId,arrIdInField,fieldId);
5427           PyObject *res=PyList_New(4);
5428           PyList_SetItem(res,0,PyInt_FromLong(meshId));
5429           PyList_SetItem(res,1,PyInt_FromLong(arrId));
5430           PyList_SetItem(res,2,PyInt_FromLong(arrIdInField));
5431           PyList_SetItem(res,3,PyInt_FromLong(fieldId));
5432           return res;
5433         }
5434
5435         PyObject *getIdsOnTimeLeft(double tm) const throw(INTERP_KERNEL::Exception)
5436         {
5437           int meshId,arrId,arrIdInField,fieldId;
5438           self->getIdsOnTimeLeft(tm,meshId,arrId,arrIdInField,fieldId);
5439           PyObject *res=PyList_New(4);
5440           PyList_SetItem(res,0,PyInt_FromLong(meshId));
5441           PyList_SetItem(res,1,PyInt_FromLong(arrId));
5442           PyList_SetItem(res,2,PyInt_FromLong(arrIdInField));
5443           PyList_SetItem(res,3,PyInt_FromLong(fieldId));
5444           return res;
5445         }
5446       }
5447   };
5448
5449   class MEDCouplingFieldOverTime : public MEDCouplingMultiFields
5450   {
5451   public:
5452     double getTimeTolerance() const throw(INTERP_KERNEL::Exception);
5453     MEDCouplingDefinitionTime getDefinitionTimeZone() const;
5454     
5455     %extend
5456       {
5457         MEDCouplingFieldOverTime(PyObject *li) throw(INTERP_KERNEL::Exception)
5458           {
5459             std::vector<const MEDCoupling::MEDCouplingFieldDouble *> tmp;
5460             convertFromPyObjVectorOfObj<const MEDCoupling::MEDCouplingFieldDouble *>(li,SWIGTYPE_p_MEDCoupling__MEDCouplingFieldDouble,"MEDCouplingFieldDouble",tmp);
5461             int sz=tmp.size();
5462             std::vector<MEDCouplingFieldDouble *> fs(sz);
5463             for(int i=0;i<sz;i++)
5464               fs[i]=const_cast<MEDCouplingFieldDouble *>(tmp[i]);
5465             return MEDCouplingFieldOverTime::New(fs);
5466           }
5467         std::string __str__() const throw(INTERP_KERNEL::Exception)
5468           {
5469             return self->simpleRepr();
5470           }
5471         static MEDCouplingFieldOverTime *New(PyObject *li) throw(INTERP_KERNEL::Exception)
5472         {
5473           std::vector<const MEDCoupling::MEDCouplingFieldDouble *> tmp;
5474           convertFromPyObjVectorOfObj<const MEDCoupling::MEDCouplingFieldDouble *>(li,SWIGTYPE_p_MEDCoupling__MEDCouplingFieldDouble,"MEDCouplingFieldDouble",tmp);
5475            int sz=tmp.size();
5476            std::vector<MEDCouplingFieldDouble *> fs(sz);
5477            for(int i=0;i<sz;i++)
5478              fs[i]=const_cast<MEDCouplingFieldDouble *>(tmp[i]);
5479            return MEDCouplingFieldOverTime::New(fs);
5480          }
5481       }
5482   };
5483
5484   class MEDCouplingCartesianAMRMesh;
5485   
5486   class MEDCouplingCartesianAMRPatchGen : public RefCountObject
5487   {
5488   public:
5489     int getNumberOfCellsRecursiveWithOverlap() const throw(INTERP_KERNEL::Exception);
5490     int getNumberOfCellsRecursiveWithoutOverlap() const throw(INTERP_KERNEL::Exception);
5491     int getMaxNumberOfLevelsRelativeToThis() const throw(INTERP_KERNEL::Exception);
5492     %extend
5493     {
5494       MEDCouplingCartesianAMRMeshGen *getMesh() const throw(INTERP_KERNEL::Exception)
5495       {
5496         MEDCouplingCartesianAMRMeshGen *ret(const_cast<MEDCouplingCartesianAMRMeshGen *>(self->getMesh()));
5497         if(ret)
5498           ret->incrRef();
5499         return ret;
5500       }
5501     }
5502   };
5503
5504   class MEDCouplingCartesianAMRPatch : public MEDCouplingCartesianAMRPatchGen
5505   {
5506   public:
5507     int getNumberOfOverlapedCellsForFather() const throw(INTERP_KERNEL::Exception);
5508     bool isInMyNeighborhood(const MEDCouplingCartesianAMRPatch *other, int ghostLev) const throw(INTERP_KERNEL::Exception);
5509     std::vector<int> computeCellGridSt() const throw(INTERP_KERNEL::Exception);
5510     %extend
5511     {
5512       PyObject *getBLTRRange() const throw(INTERP_KERNEL::Exception)
5513       {
5514         const std::vector< std::pair<int,int> >& ret(self->getBLTRRange());
5515         return convertFromVectorPairInt(ret);
5516       }
5517
5518       PyObject *getBLTRRangeRelativeToGF() const throw(INTERP_KERNEL::Exception)
5519       {
5520         std::vector< std::pair<int,int> > ret(self->getBLTRRangeRelativeToGF());
5521         return convertFromVectorPairInt(ret);
5522       }
5523
5524       void addPatch(PyObject *bottomLeftTopRight, const std::vector<int>& factors) throw(INTERP_KERNEL::Exception)
5525       {
5526         std::vector< std::pair<int,int> > inp;
5527         convertPyToVectorPairInt(bottomLeftTopRight,inp);
5528         self->addPatch(inp,factors);
5529       }
5530
5531       MEDCouplingCartesianAMRPatch *__getitem__(int patchId) const throw(INTERP_KERNEL::Exception)
5532       {
5533         const MEDCouplingCartesianAMRMeshGen *mesh(self->getMesh());
5534         if(!mesh)
5535           throw INTERP_KERNEL::Exception("wrap MEDCouplingCartesianAMRPatchGen.__getitem__ : no underlying mesh !");
5536         if(patchId==mesh->getNumberOfPatches())
5537           {
5538             std::ostringstream oss;
5539             oss << "Requesting for patchId " << patchId << " having only " << mesh->getNumberOfPatches() << " patches !";
5540             PyErr_SetString(PyExc_StopIteration,oss.str().c_str());
5541             return 0;
5542           }
5543         MEDCouplingCartesianAMRPatch *ret(const_cast<MEDCouplingCartesianAMRPatch *>(mesh->getPatch(patchId)));
5544         if(ret)
5545           ret->incrRef();
5546         return ret;
5547       }
5548
5549       void __delitem__(int patchId) throw(INTERP_KERNEL::Exception)
5550       {
5551         MEDCouplingCartesianAMRMeshGen *mesh(const_cast<MEDCouplingCartesianAMRMeshGen *>(self->getMesh()));
5552         if(!mesh)
5553           throw INTERP_KERNEL::Exception("wrap MEDCouplingCartesianAMRPatch.__delitem__ : no underlying mesh !");
5554         mesh->removePatch(patchId);
5555       }
5556
5557       int __len__() const throw(INTERP_KERNEL::Exception)
5558       {
5559         const MEDCouplingCartesianAMRMeshGen *mesh(self->getMesh());
5560         if(!mesh)
5561           throw INTERP_KERNEL::Exception("wrap MEDCouplingCartesianAMRPatch.__len__ : no underlying mesh !");
5562         return mesh->getNumberOfPatches();
5563       }
5564     }
5565   };
5566
5567   class MEDCouplingCartesianAMRPatchGF : public MEDCouplingCartesianAMRPatchGen
5568   {
5569   };
5570   
5571   class MEDCouplingCartesianAMRMeshGen : public RefCountObject, public TimeLabel
5572   {
5573   public:
5574     int getAbsoluteLevel() const throw(INTERP_KERNEL::Exception);
5575     int getAbsoluteLevelRelativeTo(const MEDCouplingCartesianAMRMeshGen *ref) const throw(INTERP_KERNEL::Exception);
5576     std::vector<int> getPositionRelativeTo(const MEDCouplingCartesianAMRMeshGen *ref) const throw(INTERP_KERNEL::Exception);
5577     int getSpaceDimension() const throw(INTERP_KERNEL::Exception);
5578     const std::vector<int>& getFactors() const throw(INTERP_KERNEL::Exception);
5579     void setFactors(const std::vector<int>& newFactors) throw(INTERP_KERNEL::Exception);
5580     int getMaxNumberOfLevelsRelativeToThis() const throw(INTERP_KERNEL::Exception);
5581     int getNumberOfCellsAtCurrentLevel() const throw(INTERP_KERNEL::Exception);
5582     int getNumberOfCellsAtCurrentLevelGhost(int ghostLev) const throw(INTERP_KERNEL::Exception);
5583     int getNumberOfCellsRecursiveWithOverlap() const throw(INTERP_KERNEL::Exception);
5584     int getNumberOfCellsRecursiveWithoutOverlap() const throw(INTERP_KERNEL::Exception);
5585     bool isPatchInNeighborhoodOf(int patchId1, int patchId2, int ghostLev) const throw(INTERP_KERNEL::Exception);
5586    virtual void detachFromFather() throw(INTERP_KERNEL::Exception);
5587     //
5588     int getNumberOfPatches() const throw(INTERP_KERNEL::Exception);
5589     int getPatchIdFromChildMesh(const MEDCouplingCartesianAMRMeshGen *mesh) const throw(INTERP_KERNEL::Exception);
5590     MEDCouplingUMesh *buildUnstructured() const throw(INTERP_KERNEL::Exception);
5591     DataArrayDouble *extractGhostFrom(int ghostSz, const DataArrayDouble *arr) const throw(INTERP_KERNEL::Exception);
5592     std::vector<int> getPatchIdsInTheNeighborhoodOf(int patchId, int ghostLev) const throw(INTERP_KERNEL::Exception);
5593     MEDCoupling1SGTUMesh *buildMeshFromPatchEnvelop() const throw(INTERP_KERNEL::Exception);
5594     MEDCoupling1SGTUMesh *buildMeshOfDirectChildrenOnly() const throw(INTERP_KERNEL::Exception);
5595     void removeAllPatches() throw(INTERP_KERNEL::Exception);
5596     void removePatch(int patchId) throw(INTERP_KERNEL::Exception);
5597     void createPatchesFromCriterion(const INTERP_KERNEL::BoxSplittingOptions& bso, const DataArrayByte *criterion, const std::vector<int>& factors) throw(INTERP_KERNEL::Exception);
5598     void createPatchesFromCriterion(const INTERP_KERNEL::BoxSplittingOptions& bso, const DataArrayDouble *criterion, const std::vector<int>& factors, double eps) throw(INTERP_KERNEL::Exception);
5599     DataArrayDouble *createCellFieldOnPatch(int patchId, const DataArrayDouble *cellFieldOnThis) const throw(INTERP_KERNEL::Exception);
5600     void fillCellFieldOnPatch(int patchId, const DataArrayDouble *cellFieldOnThis, DataArrayDouble *cellFieldOnPatch, bool isConservative=true) const throw(INTERP_KERNEL::Exception);
5601     void fillCellFieldOnPatchGhost(int patchId, const DataArrayDouble *cellFieldOnThis, DataArrayDouble *cellFieldOnPatch, int ghostLev, bool isConservative=true) const throw(INTERP_KERNEL::Exception);
5602     void fillCellFieldOnPatchOnlyOnGhostZone(int patchId, const DataArrayDouble *cellFieldOnThis, DataArrayDouble *cellFieldOnPatch, int ghostLev) const throw(INTERP_KERNEL::Exception);
5603     void fillCellFieldOnPatchOnlyOnGhostZoneWith(int ghostLev, const MEDCouplingCartesianAMRPatch *patchToBeModified, const MEDCouplingCartesianAMRPatch *neighborPatch, DataArrayDouble *cellFieldOnPatch, const DataArrayDouble *cellFieldNeighbor) const;
5604     void fillCellFieldComingFromPatch(int patchId, const DataArrayDouble *cellFieldOnPatch, DataArrayDouble *cellFieldOnThis, bool isConservative=true) const throw(INTERP_KERNEL::Exception);
5605     void fillCellFieldComingFromPatchGhost(int patchId, const DataArrayDouble *cellFieldOnPatch, DataArrayDouble *cellFieldOnThis, int ghostLev, bool isConservative=true) const throw(INTERP_KERNEL::Exception);
5606     DataArrayInt *findPatchesInTheNeighborhoodOf(int patchId, int ghostLev) const throw(INTERP_KERNEL::Exception);
5607     std::string buildPythonDumpOfThis() const throw(INTERP_KERNEL::Exception);
5608     %extend
5609     {
5610       void addPatch(PyObject *bottomLeftTopRight, const std::vector<int>& factors) throw(INTERP_KERNEL::Exception)
5611       {
5612         std::vector< std::pair<int,int> > inp;
5613         convertPyToVectorPairInt(bottomLeftTopRight,inp);
5614         self->addPatch(inp,factors);
5615       }
5616
5617       PyObject *getPatches() const throw(INTERP_KERNEL::Exception)
5618       {
5619         std::vector< const MEDCouplingCartesianAMRPatch *> ps(self->getPatches());
5620         int sz(ps.size());
5621         PyObject *ret = PyList_New(sz);
5622         for(int i=0;i<sz;i++)
5623           {
5624             MEDCouplingCartesianAMRPatch *elt(const_cast<MEDCouplingCartesianAMRPatch *>(ps[i]));
5625             if(elt)
5626               elt->incrRef();
5627             PyList_SetItem(ret,i,convertCartesianAMRPatch(elt, SWIG_POINTER_OWN | 0 ));
5628           }
5629         return ret;
5630       }
5631
5632       // agy : don't know why typemap fails here ??? let it in the extend section
5633       PyObject *deepCopy(MEDCouplingCartesianAMRMeshGen *father) const throw(INTERP_KERNEL::Exception)
5634       {
5635         return convertCartesianAMRMesh(self->deepCopy(father), SWIG_POINTER_OWN | 0 );
5636       }
5637
5638       MEDCouplingCartesianAMRPatch *getPatchAtPosition(const std::vector<int>& pos) const throw(INTERP_KERNEL::Exception)
5639       {
5640         const MEDCouplingCartesianAMRPatch *ret(self->getPatchAtPosition(pos));
5641         MEDCouplingCartesianAMRPatch *ret2(const_cast<MEDCouplingCartesianAMRPatch *>(ret));
5642         if(ret2)
5643           ret2->incrRef();
5644         return ret2;
5645       }
5646
5647       MEDCouplingCartesianAMRMeshGen *getMeshAtPosition(const std::vector<int>& pos) const throw(INTERP_KERNEL::Exception)
5648       {
5649         const MEDCouplingCartesianAMRMeshGen *ret(self->getMeshAtPosition(pos));
5650         MEDCouplingCartesianAMRMeshGen *ret2(const_cast<MEDCouplingCartesianAMRMeshGen *>(ret));
5651         if(ret2)
5652           ret2->incrRef();
5653         return ret2;
5654       }
5655
5656       virtual PyObject *positionRelativeToGodFather() const throw(INTERP_KERNEL::Exception)
5657       {
5658         std::vector<int> out1;
5659         std::vector< std::pair<int,int> > out0(self->positionRelativeToGodFather(out1));
5660         PyObject *ret(PyTuple_New(2));
5661         PyTuple_SetItem(ret,0,convertFromVectorPairInt(out0));
5662         PyTuple_SetItem(ret,1,convertIntArrToPyList2(out1));
5663         return ret;
5664       }
5665
5666       virtual PyObject *retrieveGridsAt(int absoluteLev) const throw(INTERP_KERNEL::Exception)
5667       {
5668         std::vector<MEDCouplingCartesianAMRPatchGen *> ps(self->retrieveGridsAt(absoluteLev));
5669         int sz(ps.size());
5670         PyObject *ret = PyList_New(sz);
5671         for(int i=0;i<sz;i++)
5672           PyList_SetItem(ret,i,convertCartesianAMRPatch(ps[i], SWIG_POINTER_OWN | 0 ));
5673         return ret;
5674       }
5675
5676       MEDCouplingFieldDouble *buildCellFieldOnRecurseWithoutOverlapWithoutGhost(int ghostSz, PyObject *recurseArrs) const
5677       {
5678         std::vector<const DataArrayDouble *> inp;
5679         convertFromPyObjVectorOfObj<const MEDCoupling::DataArrayDouble *>(recurseArrs,SWIGTYPE_p_MEDCoupling__DataArrayDouble,"DataArrayDouble",inp);
5680         return self->buildCellFieldOnRecurseWithoutOverlapWithoutGhost(ghostSz,inp);
5681       }
5682
5683       virtual MEDCouplingCartesianAMRMeshGen *getFather() const throw(INTERP_KERNEL::Exception)
5684       {
5685         MEDCouplingCartesianAMRMeshGen *ret(const_cast<MEDCouplingCartesianAMRMeshGen *>(self->getFather()));
5686         if(ret)
5687           ret->incrRef();
5688         return ret;
5689       }
5690       
5691       virtual MEDCouplingCartesianAMRMeshGen *getGodFather() const throw(INTERP_KERNEL::Exception)
5692       {
5693         MEDCouplingCartesianAMRMeshGen *ret(const_cast<MEDCouplingCartesianAMRMeshGen *>(self->getGodFather()));
5694         if(ret)
5695           ret->incrRef();
5696         return ret;
5697       }
5698
5699       MEDCouplingCartesianAMRPatch *getPatch(int patchId) const throw(INTERP_KERNEL::Exception)
5700       {
5701         MEDCouplingCartesianAMRPatch *ret(const_cast<MEDCouplingCartesianAMRPatch *>(self->getPatch(patchId)));
5702         if(ret)
5703           ret->incrRef();
5704         return ret;
5705       }
5706
5707       MEDCouplingIMesh *getImageMesh() const throw(INTERP_KERNEL::Exception)
5708       {
5709         const MEDCouplingIMesh *ret(self->getImageMesh());
5710         if(ret)
5711           ret->incrRef();
5712         return const_cast<MEDCouplingIMesh *>(ret);
5713       }
5714
5715       MEDCouplingCartesianAMRPatch *__getitem__(int patchId) const throw(INTERP_KERNEL::Exception)
5716       {
5717         if(patchId==self->getNumberOfPatches())
5718           {
5719             std::ostringstream oss;
5720             oss << "Requesting for patchId " << patchId << " having only " << self->getNumberOfPatches() << " patches !";
5721             PyErr_SetString(PyExc_StopIteration,oss.str().c_str());
5722             return 0;
5723           }
5724         MEDCouplingCartesianAMRPatch *ret(const_cast<MEDCouplingCartesianAMRPatch *>(self->getPatch(patchId)));
5725         if(ret)
5726           ret->incrRef();
5727         return ret;
5728       }
5729
5730       void fillCellFieldOnPatchGhostAdv(int patchId, const DataArrayDouble *cellFieldOnThis, int ghostLev, PyObject *arrsOnPatches, bool isConservative=true) const throw(INTERP_KERNEL::Exception)
5731       {
5732         std::vector<const MEDCoupling::DataArrayDouble *> arrsOnPatches2;
5733         convertFromPyObjVectorOfObj<const MEDCoupling::DataArrayDouble *>(arrsOnPatches,SWIGTYPE_p_MEDCoupling__DataArrayDouble,"DataArrayDouble",arrsOnPatches2);
5734         self->fillCellFieldOnPatchGhostAdv(patchId,cellFieldOnThis,ghostLev,arrsOnPatches2,isConservative);
5735       }
5736
5737       void fillCellFieldOnPatchOnlyGhostAdv(int patchId, int ghostLev, PyObject *arrsOnPatches) const
5738       {
5739         std::vector<const MEDCoupling::DataArrayDouble *> arrsOnPatches2;
5740         convertFromPyObjVectorOfObj<const MEDCoupling::DataArrayDouble *>(arrsOnPatches,SWIGTYPE_p_MEDCoupling__DataArrayDouble,"DataArrayDouble",arrsOnPatches2);
5741         self->fillCellFieldOnPatchOnlyGhostAdv(patchId,ghostLev,arrsOnPatches2);
5742       }
5743
5744       void __delitem__(int patchId) throw(INTERP_KERNEL::Exception)
5745       {
5746         self->removePatch(patchId);
5747       }
5748
5749       int __len__() const throw(INTERP_KERNEL::Exception)
5750       {
5751         return self->getNumberOfPatches();
5752       }
5753     }
5754   };
5755
5756   class MEDCouplingCartesianAMRMeshSub : public MEDCouplingCartesianAMRMeshGen
5757   {
5758   };
5759
5760   class MEDCouplingCartesianAMRMesh : public MEDCouplingCartesianAMRMeshGen
5761   {
5762   public:
5763     static MEDCouplingCartesianAMRMesh *New(MEDCouplingIMesh *mesh) throw(INTERP_KERNEL::Exception);
5764     %extend
5765     {
5766       static MEDCouplingCartesianAMRMesh *New(const std::string& meshName, int spaceDim, PyObject *nodeStrct, PyObject *origin, PyObject *dxyz) throw(INTERP_KERNEL::Exception)
5767       {
5768         static const char msg0[]="MEDCouplingCartesianAMRMesh::New : error on 'origin' parameter !";
5769         static const char msg1[]="MEDCouplingCartesianAMRMesh::New : error on 'dxyz' parameter !";
5770         const int *nodeStrctPtr(0);
5771         const double *originPtr(0),*dxyzPtr(0);
5772         int sw,sz,val0;
5773         std::vector<int> bb0;
5774         nodeStrctPtr=convertIntStarLikePyObjToCppIntStar(nodeStrct,sw,sz,val0,bb0);
5775         //
5776         double val,val2;
5777         std::vector<double> bb,bb2;
5778         int sz1,sz2;
5779         originPtr=convertObjToPossibleCpp5_SingleCompo(origin,sw,val,bb,msg0,false,sz1);
5780         dxyzPtr=convertObjToPossibleCpp5_SingleCompo(dxyz,sw,val2,bb2,msg1,false,sz2);
5781         //
5782         return MEDCouplingCartesianAMRMesh::New(meshName,spaceDim,nodeStrctPtr,nodeStrctPtr+sz,originPtr,originPtr+sz1,dxyzPtr,dxyzPtr+sz2);
5783       }
5784
5785       void createPatchesFromCriterionML(PyObject *bso, const DataArrayDouble *criterion, PyObject *factors, double eps) throw(INTERP_KERNEL::Exception)
5786       {
5787         std::vector<const INTERP_KERNEL::BoxSplittingOptions *> inp0;
5788         convertFromPyObjVectorOfObj<const INTERP_KERNEL::BoxSplittingOptions *>(bso,SWIGTYPE_p_INTERP_KERNEL__BoxSplittingOptions,"BoxSplittingOptions",inp0);
5789         std::vector< std::vector<int> > inp2;
5790         convertPyToVectorOfVectorOfInt(factors,inp2);
5791         self->createPatchesFromCriterionML(inp0,criterion,inp2,eps);
5792       }
5793
5794       MEDCouplingCartesianAMRMesh(const std::string& meshName, int spaceDim, PyObject *nodeStrct, PyObject *origin, PyObject *dxyz) throw(INTERP_KERNEL::Exception)
5795       {
5796         return MEDCoupling_MEDCouplingCartesianAMRMesh_New__SWIG_1(meshName,spaceDim,nodeStrct,origin,dxyz);
5797       }
5798
5799       MEDCouplingCartesianAMRMesh(MEDCouplingIMesh *mesh) throw(INTERP_KERNEL::Exception)
5800       {
5801         return MEDCouplingCartesianAMRMesh::New(mesh);
5802       }
5803     }
5804   };
5805
5806   class MEDCouplingDataForGodFather : public RefCountObject
5807   {
5808   public:
5809     virtual void synchronizeFineToCoarse() throw(INTERP_KERNEL::Exception);
5810     virtual void synchronizeFineToCoarseBetween(int fromLev, int toLev) throw(INTERP_KERNEL::Exception);
5811     virtual void synchronizeCoarseToFine() throw(INTERP_KERNEL::Exception);
5812     virtual void synchronizeCoarseToFineBetween(int fromLev, int toLev) throw(INTERP_KERNEL::Exception);
5813     virtual void synchronizeAllGhostZones() throw(INTERP_KERNEL::Exception);
5814     virtual void synchronizeAllGhostZonesOfDirectChidrenOf(const MEDCouplingCartesianAMRMeshGen *mesh) throw(INTERP_KERNEL::Exception);
5815     virtual void synchronizeAllGhostZonesAtASpecifiedLevel(int level) throw(INTERP_KERNEL::Exception);
5816     virtual void synchronizeAllGhostZonesAtASpecifiedLevelUsingOnlyFather(int level) throw(INTERP_KERNEL::Exception);
5817     virtual void alloc() throw(INTERP_KERNEL::Exception);
5818     virtual void dealloc() throw(INTERP_KERNEL::Exception);
5819     %extend
5820     {
5821       MEDCouplingCartesianAMRMesh *getMyGodFather() throw(INTERP_KERNEL::Exception)
5822       {
5823         MEDCouplingCartesianAMRMesh *ret(self->getMyGodFather());
5824         if(ret)
5825           ret->incrRef();
5826         return ret;
5827       }
5828     }
5829   };
5830   
5831   class MEDCouplingAMRAttribute : public MEDCouplingDataForGodFather, public TimeLabel
5832   {
5833   public:
5834     int getNumberOfLevels() const throw(INTERP_KERNEL::Exception);
5835     MEDCouplingAMRAttribute *deepCopy() const throw(INTERP_KERNEL::Exception);
5836     MEDCouplingAMRAttribute *deepCpyWithoutGodFather() const throw(INTERP_KERNEL::Exception);
5837     MEDCouplingFieldDouble *buildCellFieldOnRecurseWithoutOverlapWithoutGhost(MEDCouplingCartesianAMRMeshGen *mesh, const std::string& fieldName) const throw(INTERP_KERNEL::Exception);
5838     MEDCouplingFieldDouble *buildCellFieldOnWithGhost(MEDCouplingCartesianAMRMeshGen *mesh, const std::string& fieldName) const throw(INTERP_KERNEL::Exception);
5839     MEDCouplingFieldDouble *buildCellFieldOnWithoutGhost(MEDCouplingCartesianAMRMeshGen *mesh, const std::string& fieldName) const throw(INTERP_KERNEL::Exception);
5840     bool changeGodFather(MEDCouplingCartesianAMRMesh *gf) throw(INTERP_KERNEL::Exception);
5841     MEDCouplingAMRAttribute *projectTo(MEDCouplingCartesianAMRMesh *targetGF) const throw(INTERP_KERNEL::Exception);
5842     std::string writeVTHB(const std::string& fileName) const throw(INTERP_KERNEL::Exception);
5843     %extend
5844     {
5845       static MEDCouplingAMRAttribute *New(MEDCouplingCartesianAMRMesh *gf, PyObject *fieldNames, int ghostLev) throw(INTERP_KERNEL::Exception)
5846       {
5847         std::vector< std::pair<std::string,int> > fieldNamesCpp0;
5848         std::vector< std::pair<std::string, std::vector<std::string> > > fieldNamesCpp1;
5849         MEDCouplingAMRAttribute *ret(0);
5850         try
5851           {
5852             convertPyToVectorPairStringInt(fieldNames,fieldNamesCpp0);
5853             ret=MEDCouplingAMRAttribute::New(gf,fieldNamesCpp0,ghostLev);
5854           }
5855         catch(INTERP_KERNEL::Exception&)
5856           {
5857             convertPyToVectorPairStringVecString(fieldNames,fieldNamesCpp1);
5858             ret=MEDCouplingAMRAttribute::New(gf,fieldNamesCpp1,ghostLev);
5859           }
5860         return ret;
5861       }
5862
5863       MEDCouplingAMRAttribute(MEDCouplingCartesianAMRMesh *gf, PyObject *fieldNames, int ghostLev) throw(INTERP_KERNEL::Exception)
5864       {
5865         return MEDCoupling_MEDCouplingAMRAttribute_New(gf,fieldNames,ghostLev);
5866       }
5867
5868       DataArrayDouble *getFieldOn(MEDCouplingCartesianAMRMeshGen *mesh, const std::string& fieldName) const throw(INTERP_KERNEL::Exception)
5869       {
5870         const DataArrayDouble *ret(self->getFieldOn(mesh,fieldName));
5871         DataArrayDouble *ret2(const_cast<DataArrayDouble *>(ret));
5872         if(ret2)
5873           ret2->incrRef();
5874         return ret2;
5875       }
5876
5877       void spillInfoOnComponents(PyObject *compNames) throw(INTERP_KERNEL::Exception)
5878       {
5879         std::vector< std::vector<std::string> > compNamesCpp;
5880         convertPyToVectorOfVectorOfString(compNames,compNamesCpp);
5881         self->spillInfoOnComponents(compNamesCpp);
5882       }
5883
5884       void spillNatures(PyObject *nfs) throw(INTERP_KERNEL::Exception)
5885       {
5886         std::vector<int> inp0;
5887         if(!fillIntVector(nfs,inp0))
5888           throw INTERP_KERNEL::Exception("wrap of MEDCouplingAMRAttribute::spillNatures : vector of NatureOfField enum expected !");
5889         std::size_t sz(inp0.size());
5890         std::vector<NatureOfField> inp00(sz);
5891         for(std::size_t i=0;i<sz;i++)
5892           inp00[i]=(NatureOfField)inp0[i];
5893         self->spillNatures(inp00);
5894       }
5895       
5896       PyObject *retrieveFieldsOn(MEDCouplingCartesianAMRMeshGen *mesh) const throw(INTERP_KERNEL::Exception)
5897       {
5898         std::vector<DataArrayDouble *> ret(self->retrieveFieldsOn(mesh));
5899         int sz((int)ret.size());
5900         PyObject *retPy(PyList_New(sz));
5901         for(int i=0;i<sz;i++)
5902           PyList_SetItem(retPy,i,SWIG_NewPointerObj(SWIG_as_voidptr(ret[i]),SWIGTYPE_p_MEDCoupling__DataArrayDouble, SWIG_POINTER_OWN | 0 ));
5903         return retPy;
5904       }
5905     }
5906   };
5907
5908   class DenseMatrix : public RefCountObject, public TimeLabel
5909   {
5910   public:
5911     static DenseMatrix *New(int nbRows, int nbCols) throw(INTERP_KERNEL::Exception);
5912     static DenseMatrix *New(DataArrayDouble *array, int nbRows, int nbCols) throw(INTERP_KERNEL::Exception);
5913     DenseMatrix *deepCopy() const throw(INTERP_KERNEL::Exception);
5914     DenseMatrix *shallowCpy() const throw(INTERP_KERNEL::Exception);
5915     //
5916     int getNumberOfRows() const throw(INTERP_KERNEL::Exception);
5917     int getNumberOfCols() const throw(INTERP_KERNEL::Exception);
5918     int getNbOfElems() const throw(INTERP_KERNEL::Exception);
5919     void reBuild(DataArrayDouble *array, int nbRows=-1, int nbCols=-1) throw(INTERP_KERNEL::Exception);
5920     void reShape(int nbRows, int nbCols) throw(INTERP_KERNEL::Exception);
5921     void transpose() throw(INTERP_KERNEL::Exception);
5922     //
5923     bool isEqual(const DenseMatrix& other, double eps) const throw(INTERP_KERNEL::Exception);
5924     DataArrayDouble *matVecMult(const DataArrayDouble *vec) const throw(INTERP_KERNEL::Exception);
5925     static DataArrayDouble *MatVecMult(const DenseMatrix *mat, const DataArrayDouble *vec) throw(INTERP_KERNEL::Exception);
5926     %extend
5927     {
5928       DenseMatrix(int nbRows, int nbCols) throw(INTERP_KERNEL::Exception)
5929       {
5930         return DenseMatrix::New(nbRows,nbCols);
5931       }
5932
5933       DenseMatrix(DataArrayDouble *array, int nbRows, int nbCols) throw(INTERP_KERNEL::Exception)
5934       {
5935         return DenseMatrix::New(array,nbRows,nbCols);
5936       }
5937
5938       PyObject *isEqualIfNotWhy(const DenseMatrix& other, double eps) const throw(INTERP_KERNEL::Exception)
5939       {
5940         std::string ret1;
5941         bool ret0=self->isEqualIfNotWhy(other,eps,ret1);
5942         PyObject *ret=PyTuple_New(2);
5943         PyObject *ret0Py=ret0?Py_True:Py_False;
5944         Py_XINCREF(ret0Py);
5945         PyTuple_SetItem(ret,0,ret0Py);
5946         PyTuple_SetItem(ret,1,PyString_FromString(ret1.c_str()));
5947         return ret;
5948       }
5949
5950       DataArrayDouble *getData() throw(INTERP_KERNEL::Exception)
5951       {
5952         DataArrayDouble *ret(self->getData());
5953         if(ret)
5954           ret->incrRef();
5955         return ret;
5956       }
5957
5958       DenseMatrix *__add__(const DenseMatrix *other) throw(INTERP_KERNEL::Exception)
5959       {
5960         return MEDCoupling::DenseMatrix::Add(self,other);
5961       }
5962
5963       DenseMatrix *__sub__(const DenseMatrix *other) throw(INTERP_KERNEL::Exception)
5964       {
5965         return MEDCoupling::DenseMatrix::Substract(self,other);
5966       }
5967
5968       DenseMatrix *__mul__(const DenseMatrix *other) throw(INTERP_KERNEL::Exception)
5969       {
5970         return MEDCoupling::DenseMatrix::Multiply(self,other);
5971       }
5972
5973       DenseMatrix *__mul__(const DataArrayDouble *other) throw(INTERP_KERNEL::Exception)
5974       {
5975         return MEDCoupling::DenseMatrix::Multiply(self,other);
5976       }
5977
5978       PyObject *___iadd___(PyObject *trueSelf, const DenseMatrix *other) throw(INTERP_KERNEL::Exception)
5979       {
5980         self->addEqual(other);
5981         Py_XINCREF(trueSelf);
5982         return trueSelf;
5983       }
5984
5985       PyObject *___isub___(PyObject *trueSelf, const DenseMatrix *other) throw(INTERP_KERNEL::Exception)
5986       {
5987         self->substractEqual(other);
5988         Py_XINCREF(trueSelf);
5989         return trueSelf;
5990       }
5991 #ifdef WITH_NUMPY
5992       PyObject *toNumPyMatrix() throw(INTERP_KERNEL::Exception) // not const. It is not a bug !
5993       {
5994         PyObject *obj(ToNumPyArrayUnderground<DataArrayDouble,double>(self->getData(),NPY_DOUBLE,"DataArrayDouble",self->getNumberOfRows(),self->getNumberOfCols()));
5995         return obj;
5996       }
5997 #endif
5998     }
5999   };
6000 }
6001
6002 %pythoncode %{
6003 import os
6004 __filename=os.environ.get('PYTHONSTARTUP')
6005 if __filename and os.path.isfile(__filename):
6006   execfile(__filename)
6007   pass
6008 %}