Salome HOME
Ready for Salome9/py3 - Thanks a lot Gilles
[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         if(!arrIndxIn)
2532           throw INTERP_KERNEL::Exception("ExtractFromIndexedArraysSlice (wrap) : last array is null !");
2533         arrIndxIn->checkAllocated();
2534         if(arrIndxIn->getNumberOfComponents()!=1)
2535           throw INTERP_KERNEL::Exception("ExtractFromIndexedArraysSlice (wrap) : number of components of last argument must be equal to one !");
2536         GetIndicesOfSlice(slic,arrIndxIn->getNumberOfTuples(),&strt,&stp,&step,"ExtractFromIndexedArraysSlice (wrap) : Invalid slice regarding nb of elements !");
2537         DataArrayInt *arrOut=0,*arrIndexOut=0;
2538         MEDCouplingUMesh::ExtractFromIndexedArraysSlice(strt,stp,step,arrIn,arrIndxIn,arrOut,arrIndexOut);
2539         PyObject *ret=PyTuple_New(2);
2540         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(arrOut),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2541         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(arrIndexOut),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2542         return ret;
2543       }
2544
2545       static PyObject *SetPartOfIndexedArrays(PyObject *li,
2546                                               const DataArrayInt *arrIn, const DataArrayInt *arrIndxIn,
2547                                               const DataArrayInt *srcArr, const DataArrayInt *srcArrIndex) throw(INTERP_KERNEL::Exception)
2548       {
2549         DataArrayInt *arrOut=0,*arrIndexOut=0;
2550         int sw;
2551         int singleVal;
2552         std::vector<int> multiVal;
2553         std::pair<int, std::pair<int,int> > slic;
2554         MEDCoupling::DataArrayInt *daIntTyypp=0;
2555         if(!arrIndxIn)
2556           throw INTERP_KERNEL::Exception("MEDCouplingUMesh::SetPartOfIndexedArrays : null pointer as arrIndex !");
2557         convertIntStarOrSliceLikePyObjToCpp(li,arrIndxIn->getNumberOfTuples()-1,sw,singleVal,multiVal,slic,daIntTyypp);
2558         switch(sw)
2559           {
2560           case 1:
2561             {
2562               MEDCouplingUMesh::SetPartOfIndexedArrays(&singleVal,&singleVal+1,arrIn,arrIndxIn,srcArr,srcArrIndex,arrOut,arrIndexOut);
2563               break;
2564             }
2565           case 2:
2566             {
2567               MEDCouplingUMesh::SetPartOfIndexedArrays(&multiVal[0],&multiVal[0]+multiVal.size(),arrIn,arrIndxIn,srcArr,srcArrIndex,arrOut,arrIndexOut);
2568               break;
2569             }
2570           case 4:
2571             {
2572               MEDCouplingUMesh::SetPartOfIndexedArrays(daIntTyypp->begin(),daIntTyypp->end(),arrIn,arrIndxIn,srcArr,srcArrIndex,arrOut,arrIndexOut);
2573               break;
2574             }
2575           default:
2576             throw INTERP_KERNEL::Exception("MEDCouplingUMesh::SetPartOfIndexedArrays : unrecognized type entered, expected list of int, tuple of int or DataArrayInt !");
2577           }
2578         PyObject *ret=PyTuple_New(2);
2579         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(arrOut),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2580         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(arrIndexOut),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2581         return ret;
2582       }
2583
2584       static void SetPartOfIndexedArraysSameIdx(PyObject *li, DataArrayInt *arrIn, const DataArrayInt *arrIndxIn,
2585                                                 const DataArrayInt *srcArr, const DataArrayInt *srcArrIndex) throw(INTERP_KERNEL::Exception)
2586       {
2587         int sw;
2588         int singleVal;
2589         std::vector<int> multiVal;
2590         std::pair<int, std::pair<int,int> > slic;
2591         MEDCoupling::DataArrayInt *daIntTyypp=0;
2592         if(!arrIndxIn)
2593           throw INTERP_KERNEL::Exception("MEDCouplingUMesh::SetPartOfIndexedArraysSameIdx : null pointer as arrIndex !");
2594         convertIntStarOrSliceLikePyObjToCpp(li,arrIndxIn->getNumberOfTuples()-1,sw,singleVal,multiVal,slic,daIntTyypp);
2595         switch(sw)
2596           {
2597           case 1:
2598             {
2599               MEDCouplingUMesh::SetPartOfIndexedArraysSameIdx(&singleVal,&singleVal+1,arrIn,arrIndxIn,srcArr,srcArrIndex);
2600               break;
2601             }
2602           case 2:
2603             {
2604               MEDCouplingUMesh::SetPartOfIndexedArraysSameIdx(&multiVal[0],&multiVal[0]+multiVal.size(),arrIn,arrIndxIn,srcArr,srcArrIndex);
2605               break;
2606             }
2607           case 4:
2608             {
2609               MEDCouplingUMesh::SetPartOfIndexedArraysSameIdx(daIntTyypp->begin(),daIntTyypp->end(),arrIn,arrIndxIn,srcArr,srcArrIndex);
2610               break;
2611             }
2612           default:
2613             throw INTERP_KERNEL::Exception("MEDCouplingUMesh::SetPartOfIndexedArraysSameIdx : unrecognized type entered, expected list of int, tuple of int or DataArrayInt !");
2614           }
2615       }
2616
2617       PyObject *are2DCellsNotCorrectlyOriented(PyObject *vec, bool polyOnly) const throw(INTERP_KERNEL::Exception)
2618       {
2619         double val;
2620         DataArrayDouble *a;
2621         DataArrayDoubleTuple *aa;
2622         std::vector<double> bb;
2623         int sw;
2624         int spaceDim=self->getSpaceDimension();
2625         const char msg[]="Python wrap of MEDCouplingUMesh::are2DCellsNotCorrectlyOriented : ";
2626         const double *v=convertObjToPossibleCpp5_Safe(vec,sw,val,a,aa,bb,msg,1,spaceDim,true);
2627         //
2628         std::vector<int> cells;
2629         self->are2DCellsNotCorrectlyOriented(v,polyOnly,cells);
2630         DataArrayInt *ret=DataArrayInt::New();
2631         ret->alloc((int)cells.size(),1);
2632         std::copy(cells.begin(),cells.end(),ret->getPointer());
2633         return SWIG_NewPointerObj(SWIG_as_voidptr(ret),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 );
2634       }
2635
2636       void orientCorrectly2DCells(PyObject *vec, bool polyOnly) throw(INTERP_KERNEL::Exception)
2637       {
2638         double val;
2639         DataArrayDouble *a;
2640         DataArrayDoubleTuple *aa;
2641         std::vector<double> bb;
2642         int sw;
2643         int spaceDim=self->getSpaceDimension();
2644         const char msg[]="Python wrap of MEDCouplingUMesh::orientCorrectly2DCells : ";
2645         const double *v=convertObjToPossibleCpp5_Safe(vec,sw,val,a,aa,bb,msg,1,spaceDim,true);
2646         self->orientCorrectly2DCells(v,polyOnly);
2647       }
2648       
2649       PyObject *arePolyhedronsNotCorrectlyOriented() const throw(INTERP_KERNEL::Exception)
2650       {
2651         std::vector<int> cells;
2652         self->arePolyhedronsNotCorrectlyOriented(cells);
2653         DataArrayInt *ret=DataArrayInt::New();
2654         ret->alloc((int)cells.size(),1);
2655         std::copy(cells.begin(),cells.end(),ret->getPointer());
2656         return SWIG_NewPointerObj(SWIG_as_voidptr(ret),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 );
2657       }
2658
2659       PyObject *getFastAveragePlaneOfThis() const throw(INTERP_KERNEL::Exception)
2660       {
2661         double vec[3];
2662         double pos[3];
2663         self->getFastAveragePlaneOfThis(vec,pos);
2664         double vals[6];
2665         std::copy(vec,vec+3,vals);
2666         std::copy(pos,pos+3,vals+3);
2667         return convertDblArrToPyListOfTuple<double>(vals,3,2);
2668       }
2669       
2670       static MEDCouplingUMesh *MergeUMeshes(PyObject *li) throw(INTERP_KERNEL::Exception)
2671       {
2672         std::vector<const MEDCoupling::MEDCouplingUMesh *> tmp;
2673         convertFromPyObjVectorOfObj<const MEDCoupling::MEDCouplingUMesh *>(li,SWIGTYPE_p_MEDCoupling__MEDCouplingUMesh,"MEDCouplingUMesh",tmp);
2674         return MEDCouplingUMesh::MergeUMeshes(tmp);
2675       }
2676
2677       PyObject *areCellsIncludedIn(const MEDCouplingUMesh *other, int compType) const throw(INTERP_KERNEL::Exception)
2678       {
2679         DataArrayInt *ret1;
2680         bool ret0=self->areCellsIncludedIn(other,compType,ret1);
2681         PyObject *ret=PyTuple_New(2);
2682         PyObject *ret0Py=ret0?Py_True:Py_False;
2683         Py_XINCREF(ret0Py);
2684         PyTuple_SetItem(ret,0,ret0Py);
2685         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(ret1),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2686         return ret;
2687       }
2688
2689       PyObject *areCellsIncludedInPolicy7(const MEDCouplingUMesh *other) const throw(INTERP_KERNEL::Exception)
2690       {
2691         DataArrayInt *ret1;
2692         bool ret0=self->areCellsIncludedInPolicy7(other,ret1);
2693         PyObject *ret=PyTuple_New(2);
2694         PyObject *ret0Py=ret0?Py_True:Py_False;
2695         Py_XINCREF(ret0Py);
2696         PyTuple_SetItem(ret,0,ret0Py);
2697         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(ret1),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2698         return ret;
2699       }
2700
2701       PyObject *explode3DMeshTo1D() const throw(INTERP_KERNEL::Exception)
2702       {
2703         MCAuto<DataArrayInt> d0=DataArrayInt::New();
2704         MCAuto<DataArrayInt> d1=DataArrayInt::New();
2705         MCAuto<DataArrayInt> d2=DataArrayInt::New();
2706         MCAuto<DataArrayInt> d3=DataArrayInt::New();
2707         MEDCouplingUMesh *m=self->explode3DMeshTo1D(d0,d1,d2,d3);
2708         PyObject *ret=PyTuple_New(5);
2709         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(m),SWIGTYPE_p_MEDCoupling__MEDCouplingUMesh, SWIG_POINTER_OWN | 0 ));
2710         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(d0.retn()),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2711         PyTuple_SetItem(ret,2,SWIG_NewPointerObj(SWIG_as_voidptr(d1.retn()),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2712         PyTuple_SetItem(ret,3,SWIG_NewPointerObj(SWIG_as_voidptr(d2.retn()),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2713         PyTuple_SetItem(ret,4,SWIG_NewPointerObj(SWIG_as_voidptr(d3.retn()),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2714         return ret;
2715       }
2716
2717       PyObject *explodeIntoEdges() const throw(INTERP_KERNEL::Exception)
2718       {
2719         MCAuto<DataArrayInt> desc,descIndex,revDesc,revDescIndx;
2720         MCAuto<MEDCouplingUMesh> m(self->explodeIntoEdges(desc,descIndex,revDesc,revDescIndx));
2721         PyObject *ret=PyTuple_New(5);
2722         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(m.retn()),SWIGTYPE_p_MEDCoupling__MEDCouplingUMesh, SWIG_POINTER_OWN | 0 ));
2723         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(desc.retn()),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2724         PyTuple_SetItem(ret,2,SWIG_NewPointerObj(SWIG_as_voidptr(descIndex.retn()),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2725         PyTuple_SetItem(ret,3,SWIG_NewPointerObj(SWIG_as_voidptr(revDesc.retn()),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2726         PyTuple_SetItem(ret,4,SWIG_NewPointerObj(SWIG_as_voidptr(revDescIndx.retn()),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2727         return ret;
2728       }
2729
2730       PyObject *explodeMeshIntoMicroEdges() const throw(INTERP_KERNEL::Exception)
2731       {
2732         MCAuto<DataArrayInt> d0=DataArrayInt::New();
2733         MCAuto<DataArrayInt> d1=DataArrayInt::New();
2734         MCAuto<DataArrayInt> d2=DataArrayInt::New();
2735         MCAuto<DataArrayInt> d3=DataArrayInt::New();
2736         MEDCouplingUMesh *m=self->explodeMeshIntoMicroEdges(d0,d1,d2,d3);
2737         PyObject *ret=PyTuple_New(5);
2738         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(m),SWIGTYPE_p_MEDCoupling__MEDCouplingUMesh, SWIG_POINTER_OWN | 0 ));
2739         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(d0.retn()),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2740         PyTuple_SetItem(ret,2,SWIG_NewPointerObj(SWIG_as_voidptr(d1.retn()),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2741         PyTuple_SetItem(ret,3,SWIG_NewPointerObj(SWIG_as_voidptr(d2.retn()),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2742         PyTuple_SetItem(ret,4,SWIG_NewPointerObj(SWIG_as_voidptr(d3.retn()),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2743         return ret;
2744       }
2745
2746       PyObject *buildDescendingConnectivity() const throw(INTERP_KERNEL::Exception)
2747       {
2748         MCAuto<DataArrayInt> d0=DataArrayInt::New();
2749         MCAuto<DataArrayInt> d1=DataArrayInt::New();
2750         MCAuto<DataArrayInt> d2=DataArrayInt::New();
2751         MCAuto<DataArrayInt> d3=DataArrayInt::New();
2752         MEDCouplingUMesh *m=self->buildDescendingConnectivity(d0,d1,d2,d3);
2753         PyObject *ret=PyTuple_New(5);
2754         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(m),SWIGTYPE_p_MEDCoupling__MEDCouplingUMesh, SWIG_POINTER_OWN | 0 ));
2755         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(d0.retn()),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2756         PyTuple_SetItem(ret,2,SWIG_NewPointerObj(SWIG_as_voidptr(d1.retn()),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2757         PyTuple_SetItem(ret,3,SWIG_NewPointerObj(SWIG_as_voidptr(d2.retn()),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2758         PyTuple_SetItem(ret,4,SWIG_NewPointerObj(SWIG_as_voidptr(d3.retn()),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2759         return ret;
2760       }
2761
2762       PyObject *buildDescendingConnectivity2() const throw(INTERP_KERNEL::Exception)
2763       {
2764         MCAuto<DataArrayInt> d0=DataArrayInt::New();
2765         MCAuto<DataArrayInt> d1=DataArrayInt::New();
2766         MCAuto<DataArrayInt> d2=DataArrayInt::New();
2767         MCAuto<DataArrayInt> d3=DataArrayInt::New();
2768         MEDCouplingUMesh *m=self->buildDescendingConnectivity2(d0,d1,d2,d3);
2769         PyObject *ret=PyTuple_New(5);
2770         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(m),SWIGTYPE_p_MEDCoupling__MEDCouplingUMesh, SWIG_POINTER_OWN | 0 ));
2771         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(d0.retn()),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2772         PyTuple_SetItem(ret,2,SWIG_NewPointerObj(SWIG_as_voidptr(d1.retn()),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2773         PyTuple_SetItem(ret,3,SWIG_NewPointerObj(SWIG_as_voidptr(d2.retn()),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2774         PyTuple_SetItem(ret,4,SWIG_NewPointerObj(SWIG_as_voidptr(d3.retn()),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2775         return ret;
2776       }
2777       
2778       PyObject *computeNeighborsOfCells() const throw(INTERP_KERNEL::Exception)
2779       {
2780         DataArrayInt *neighbors=0,*neighborsIdx=0;
2781         self->computeNeighborsOfCells(neighbors,neighborsIdx);
2782         PyObject *ret=PyTuple_New(2);
2783         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(neighbors),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2784         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(neighborsIdx),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2785         return ret;
2786       }
2787
2788       PyObject *computeNeighborsOfNodes() const throw(INTERP_KERNEL::Exception)
2789       {
2790         DataArrayInt *neighbors=0,*neighborsIdx=0;
2791         self->computeNeighborsOfNodes(neighbors,neighborsIdx);
2792         PyObject *ret=PyTuple_New(2);
2793         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(neighbors),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2794         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(neighborsIdx),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2795         return ret;
2796       }
2797
2798       PyObject *computeEnlargedNeighborsOfNodes() const throw(INTERP_KERNEL::Exception)
2799       {
2800         MCAuto<DataArrayInt> neighbors,neighborsIdx;
2801         self->computeEnlargedNeighborsOfNodes(neighbors,neighborsIdx);
2802         PyObject *ret=PyTuple_New(2);
2803         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(neighbors.retn()),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2804         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(neighborsIdx.retn()),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2805         return ret;
2806       }
2807       
2808       PyObject *computeCellNeighborhoodFromNodesOne(const DataArrayInt *nodeNeigh, const DataArrayInt *nodeNeighI) const throw(INTERP_KERNEL::Exception)
2809       {
2810         MCAuto<DataArrayInt> cellNeigh,cellNeighIndex;
2811         self->computeCellNeighborhoodFromNodesOne(nodeNeigh,nodeNeighI,cellNeigh,cellNeighIndex);
2812         PyObject *ret=PyTuple_New(2);
2813         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(cellNeigh.retn()),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2814         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(cellNeighIndex.retn()),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2815         return ret;
2816       }
2817       
2818       static PyObject *ComputeNeighborsOfCellsAdv(const DataArrayInt *desc, const DataArrayInt *descI, const DataArrayInt *revDesc, const DataArrayInt *revDescI) throw(INTERP_KERNEL::Exception)
2819       {
2820         DataArrayInt *neighbors=0,*neighborsIdx=0;
2821         MEDCouplingUMesh::ComputeNeighborsOfCellsAdv(desc,descI,revDesc,revDescI,neighbors,neighborsIdx);
2822         PyObject *ret=PyTuple_New(2);
2823         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(neighbors),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2824         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(neighborsIdx),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2825         return ret;
2826       }
2827
2828       PyObject *emulateMEDMEMBDC(const MEDCouplingUMesh *nM1LevMesh)
2829       {
2830         MCAuto<DataArrayInt> d0=DataArrayInt::New();
2831         MCAuto<DataArrayInt> d1=DataArrayInt::New();
2832         DataArrayInt *d2,*d3,*d4,*dd5;
2833         MEDCouplingUMesh *mOut=self->emulateMEDMEMBDC(nM1LevMesh,d0,d1,d2,d3,d4,dd5);
2834         PyObject *ret=PyTuple_New(7);
2835         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(mOut),SWIGTYPE_p_MEDCoupling__MEDCouplingUMesh, SWIG_POINTER_OWN | 0 ));
2836         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(d0.retn()),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2837         PyTuple_SetItem(ret,2,SWIG_NewPointerObj(SWIG_as_voidptr(d1.retn()),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2838         PyTuple_SetItem(ret,3,SWIG_NewPointerObj(SWIG_as_voidptr(d2),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2839         PyTuple_SetItem(ret,4,SWIG_NewPointerObj(SWIG_as_voidptr(d3),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2840         PyTuple_SetItem(ret,5,SWIG_NewPointerObj(SWIG_as_voidptr(d4),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2841         PyTuple_SetItem(ret,6,SWIG_NewPointerObj(SWIG_as_voidptr(dd5),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2842         return ret;
2843       }
2844
2845       DataArrayDouble *getPartBarycenterAndOwner(DataArrayInt *da) const throw(INTERP_KERNEL::Exception)
2846       {
2847         if(!da)
2848           throw INTERP_KERNEL::Exception("Not null DataArrayInt instance expected !");
2849         da->checkAllocated();
2850         return self->getPartBarycenterAndOwner(da->getConstPointer(),da->getConstPointer()+da->getNbOfElems());
2851       }
2852
2853       DataArrayDouble *getPartMeasureField(bool isAbs, DataArrayInt *da) const throw(INTERP_KERNEL::Exception)
2854       {
2855         if(!da)
2856           throw INTERP_KERNEL::Exception("Not null DataArrayInt instance expected !");
2857         da->checkAllocated();
2858         return self->getPartMeasureField(isAbs,da->getConstPointer(),da->getConstPointer()+da->getNbOfElems());
2859       }
2860
2861       MEDCouplingFieldDouble *buildPartOrthogonalField(DataArrayInt *da) const throw(INTERP_KERNEL::Exception)
2862       {
2863         if(!da)
2864           throw INTERP_KERNEL::Exception("Not null DataArrayInt instance expected !");
2865         da->checkAllocated();
2866         return self->buildPartOrthogonalField(da->getConstPointer(),da->getConstPointer()+da->getNbOfElems());
2867       }
2868
2869       PyObject *getTypesOfPart(DataArrayInt *da) const throw(INTERP_KERNEL::Exception)
2870       {
2871         if(!da)
2872           throw INTERP_KERNEL::Exception("Not null DataArrayInt instance expected !");
2873         da->checkAllocated();
2874         std::set<INTERP_KERNEL::NormalizedCellType> result=self->getTypesOfPart(da->getConstPointer(),da->getConstPointer()+da->getNbOfElems());
2875         std::set<INTERP_KERNEL::NormalizedCellType>::const_iterator iL=result.begin();
2876         PyObject *res = PyList_New(result.size());
2877         for (int i=0;iL!=result.end(); i++, iL++)
2878           PyList_SetItem(res,i,PyInt_FromLong(*iL));
2879         return res;
2880       }
2881
2882       DataArrayInt *keepCellIdsByType(INTERP_KERNEL::NormalizedCellType type, DataArrayInt *da) const throw(INTERP_KERNEL::Exception)
2883       {
2884         if(!da)
2885           throw INTERP_KERNEL::Exception("Not null DataArrayInt instance expected !");
2886         da->checkAllocated();
2887         DataArrayInt *ret=self->keepCellIdsByType(type,da->getConstPointer(),da->getConstPointer()+da->getNbOfElems());
2888         ret->setName(da->getName().c_str());
2889         return ret;
2890       }
2891
2892       static PyObject *Intersect2DMeshes(const MEDCouplingUMesh *m1, const MEDCouplingUMesh *m2, double eps) throw(INTERP_KERNEL::Exception)
2893       {
2894         DataArrayInt *cellNb1=0,*cellNb2=0;
2895         MEDCouplingUMesh *mret=MEDCouplingUMesh::Intersect2DMeshes(m1,m2,eps,cellNb1,cellNb2);
2896         PyObject *ret=PyTuple_New(3);
2897         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(mret),SWIGTYPE_p_MEDCoupling__MEDCouplingUMesh, SWIG_POINTER_OWN | 0 ));
2898         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(cellNb1),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2899         PyTuple_SetItem(ret,2,SWIG_NewPointerObj(SWIG_as_voidptr(cellNb2),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2900         return ret;
2901       }
2902
2903       static PyObject *Intersect2DMeshWith1DLine(const MEDCouplingUMesh *mesh2D, const MEDCouplingUMesh *mesh1D, double eps) throw(INTERP_KERNEL::Exception)
2904       {
2905         MEDCouplingUMesh *splitMesh2D(0),*splitMesh1D(0);
2906         DataArrayInt *cellIdInMesh2D(0),*cellIdInMesh1D(0);
2907         MEDCouplingUMesh::Intersect2DMeshWith1DLine(mesh2D,mesh1D,eps,splitMesh2D,splitMesh1D,cellIdInMesh2D,cellIdInMesh1D);
2908         PyObject *ret(PyTuple_New(4));
2909         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(splitMesh2D),SWIGTYPE_p_MEDCoupling__MEDCouplingUMesh, SWIG_POINTER_OWN | 0 ));
2910         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(splitMesh1D),SWIGTYPE_p_MEDCoupling__MEDCouplingUMesh, SWIG_POINTER_OWN | 0 ));
2911         PyTuple_SetItem(ret,2,SWIG_NewPointerObj(SWIG_as_voidptr(cellIdInMesh2D),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2912         PyTuple_SetItem(ret,3,SWIG_NewPointerObj(SWIG_as_voidptr(cellIdInMesh1D),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2913         return ret;
2914       }
2915
2916       PyObject *buildSlice3D(PyObject *origin, PyObject *vec, double eps) const throw(INTERP_KERNEL::Exception)
2917       {
2918         int spaceDim=self->getSpaceDimension();
2919         if(spaceDim!=3)
2920           throw INTERP_KERNEL::Exception("Python wrap of MEDCouplingUMesh::buildSlice3D : works only for spaceDim 3 !");
2921         double val,val2;
2922         DataArrayDouble *a,*a2;
2923         DataArrayDoubleTuple *aa,*aa2;
2924         std::vector<double> bb,bb2;
2925         int sw;
2926         const char msg[]="Python wrap of MEDCouplingUMesh::buildSlice3D : 1st paramater for origin.";
2927         const char msg2[]="Python wrap of MEDCouplingUMesh::buildSlice3D : 2nd paramater for vector.";
2928         const double *orig=convertObjToPossibleCpp5_Safe(origin,sw,val,a,aa,bb,msg,1,spaceDim,true);
2929         const double *vect=convertObjToPossibleCpp5_Safe(vec,sw,val2,a2,aa2,bb2,msg2,1,spaceDim,true);
2930         //
2931         DataArrayInt *cellIds=0;
2932         MEDCouplingUMesh *ret0=self->buildSlice3D(orig,vect,eps,cellIds);
2933         PyObject *ret=PyTuple_New(2);
2934         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(ret0),SWIGTYPE_p_MEDCoupling__MEDCouplingUMesh, SWIG_POINTER_OWN | 0 ));
2935         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(cellIds),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2936         return ret;
2937       }
2938
2939       PyObject *buildSlice3DSurf(PyObject *origin, PyObject *vec, double eps) const throw(INTERP_KERNEL::Exception)
2940       {
2941         int spaceDim=self->getSpaceDimension();
2942         if(spaceDim!=3)
2943           throw INTERP_KERNEL::Exception("Python wrap of MEDCouplingUMesh::buildSlice3DSurf : works only for spaceDim 3 !");
2944         double val,val2;
2945         DataArrayDouble *a,*a2;
2946         DataArrayDoubleTuple *aa,*aa2;
2947         std::vector<double> bb,bb2;
2948         int sw;
2949         const char msg[]="Python wrap of MEDCouplingUMesh::buildSlice3DSurf : 1st paramater for origin.";
2950         const char msg2[]="Python wrap of MEDCouplingUMesh::buildSlice3DSurf : 2nd paramater for vector.";
2951         const double *orig=convertObjToPossibleCpp5_Safe(origin,sw,val,a,aa,bb,msg,1,spaceDim,true);
2952         const double *vect=convertObjToPossibleCpp5_Safe(vec,sw,val2,a2,aa2,bb2,msg2,1,spaceDim,true);
2953         //
2954         DataArrayInt *cellIds=0;
2955         MEDCouplingUMesh *ret0=self->buildSlice3DSurf(orig,vect,eps,cellIds);
2956         PyObject *ret=PyTuple_New(2);
2957         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(ret0),SWIGTYPE_p_MEDCoupling__MEDCouplingUMesh, SWIG_POINTER_OWN | 0 ));
2958         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(cellIds),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
2959         return ret;
2960       }
2961
2962       MEDCouplingUMesh *clipSingle3DCellByPlane(PyObject *origin, PyObject *vec, double eps) const throw(INTERP_KERNEL::Exception)
2963       {
2964         double val,val2;
2965         DataArrayDouble *a,*a2;
2966         DataArrayDoubleTuple *aa,*aa2;
2967         std::vector<double> bb,bb2;
2968         int sw;
2969         const char msg[]="Python wrap of MEDCouplingUMesh::clipSingle3DCellByPlane : 1st paramater for origin.";
2970         const char msg2[]="Python wrap of MEDCouplingUMesh::clipSingle3DCellByPlane : 2nd paramater for vector.";
2971         const double *orig=convertObjToPossibleCpp5_Safe(origin,sw,val,a,aa,bb,msg,1,3,true);
2972         const double *vect=convertObjToPossibleCpp5_Safe(vec,sw,val2,a2,aa2,bb2,msg2,1,3,true);
2973         MCAuto<MEDCouplingUMesh> ret(self->clipSingle3DCellByPlane(orig,vect,eps));
2974         return ret.retn();
2975       }
2976
2977       DataArrayInt *getCellIdsCrossingPlane(PyObject *origin, PyObject *vec, double eps) const throw(INTERP_KERNEL::Exception)
2978       {
2979         int spaceDim=self->getSpaceDimension();
2980         if(spaceDim!=3)
2981           throw INTERP_KERNEL::Exception("Python wrap of MEDCouplingUMesh::getCellIdsCrossingPlane : works only for spaceDim 3 !");
2982         double val,val2;
2983         DataArrayDouble *a,*a2;
2984         DataArrayDoubleTuple *aa,*aa2;
2985         std::vector<double> bb,bb2;
2986         int sw;
2987         const char msg[]="Python wrap of MEDCouplingUMesh::getCellIdsCrossingPlane : 1st paramater for origin.";
2988         const char msg2[]="Python wrap of MEDCouplingUMesh::getCellIdsCrossingPlane : 2nd paramater for vector.";
2989         const double *orig=convertObjToPossibleCpp5_Safe(origin,sw,val,a,aa,bb,msg,1,spaceDim,true);
2990         const double *vect=convertObjToPossibleCpp5_Safe(vec,sw,val2,a2,aa2,bb2,msg2,1,spaceDim,true);
2991         return self->getCellIdsCrossingPlane(orig,vect,eps);
2992       }
2993
2994       void convertToPolyTypes(PyObject *li) throw(INTERP_KERNEL::Exception)
2995       {
2996         int sw;
2997         int pos1;
2998         std::vector<int> pos2;
2999         DataArrayInt *pos3=0;
3000         DataArrayIntTuple *pos4=0;
3001         convertIntStarLikePyObjToCpp(li,sw,pos1,pos2,pos3,pos4);
3002         switch(sw)
3003           {
3004           case 1:
3005             {
3006               self->convertToPolyTypes(&pos1,&pos1+1);
3007               return;
3008             }
3009           case 2:
3010             {
3011               if(pos2.empty())
3012                 return;
3013               self->convertToPolyTypes(&pos2[0],&pos2[0]+pos2.size());
3014               return ;
3015             }
3016           case 3:
3017             {
3018               self->convertToPolyTypes(pos3->begin(),pos3->end());
3019               return ;
3020             }
3021           default:
3022             throw INTERP_KERNEL::Exception("MEDCouplingUMesh::convertToPolyTypes : unexpected input array type recognized !");
3023           }
3024       }      
3025     }
3026     void convertAllToPoly();
3027     void convertExtrudedPolyhedra() throw(INTERP_KERNEL::Exception);
3028     bool unPolyze() throw(INTERP_KERNEL::Exception);
3029     void simplifyPolyhedra(double eps) throw(INTERP_KERNEL::Exception);
3030     MEDCouplingUMesh *buildSpreadZonesWithPoly() const throw(INTERP_KERNEL::Exception);
3031     MEDCouplingUMesh *buildExtrudedMesh(const MEDCouplingUMesh *mesh1D, int policy) throw(INTERP_KERNEL::Exception);
3032   };
3033
3034   //== MEDCouplingUMesh End
3035
3036   //== MEDCouplingMappedExtrudedMesh
3037
3038   class MEDCouplingMappedExtrudedMesh : public MEDCoupling::MEDCouplingMesh
3039   {
3040   public:
3041     static MEDCouplingMappedExtrudedMesh *New(const MEDCouplingUMesh *mesh3D, const MEDCouplingUMesh *mesh2D, int cell2DId) throw(INTERP_KERNEL::Exception);
3042     static MEDCouplingMappedExtrudedMesh *New(const MEDCouplingCMesh *mesh3D) throw(INTERP_KERNEL::Exception);
3043     MEDCouplingUMesh *build3DUnstructuredMesh() const throw(INTERP_KERNEL::Exception);
3044     int get2DCellIdForExtrusion() const;
3045     %extend {
3046       MEDCouplingMappedExtrudedMesh(const MEDCouplingUMesh *mesh3D, const MEDCouplingUMesh *mesh2D, int cell2DId) throw(INTERP_KERNEL::Exception)
3047       {
3048         return MEDCouplingMappedExtrudedMesh::New(mesh3D,mesh2D,cell2DId);
3049       }
3050
3051       MEDCouplingMappedExtrudedMesh(const MEDCouplingCMesh *mesh3D) throw(INTERP_KERNEL::Exception)
3052       {
3053         return MEDCouplingMappedExtrudedMesh::New(mesh3D);
3054       }
3055
3056       MEDCouplingMappedExtrudedMesh()
3057       {
3058         return MEDCouplingMappedExtrudedMesh::New();
3059       }
3060
3061       static PyObject *___new___(PyObject *cls, PyObject *args) throw(INTERP_KERNEL::Exception)
3062       {
3063         return NewMethWrapCallInitOnlyIfEmptyDictInInput(cls,args,"MEDCouplingMappedExtrudedMesh");
3064       }
3065       
3066       std::string __str__() const throw(INTERP_KERNEL::Exception)
3067       {
3068         return self->simpleRepr();
3069       }
3070
3071       std::string __repr__() const throw(INTERP_KERNEL::Exception)
3072       {
3073         std::ostringstream oss;
3074         self->reprQuickOverview(oss);
3075         return oss.str();
3076       }
3077       
3078       PyObject *getMesh2D() const throw(INTERP_KERNEL::Exception)
3079       {
3080         MEDCouplingUMesh *ret=self->getMesh2D();
3081         if(ret)
3082           ret->incrRef();
3083         return convertMesh(ret, SWIG_POINTER_OWN | 0 );
3084       }
3085       PyObject *getMesh1D() const throw(INTERP_KERNEL::Exception)
3086       {
3087         MEDCouplingUMesh *ret=self->getMesh1D();
3088         if(ret)
3089           ret->incrRef();
3090         return convertMesh(ret, SWIG_POINTER_OWN | 0 );
3091       }
3092       PyObject *getMesh3DIds() const throw(INTERP_KERNEL::Exception)
3093       {
3094         DataArrayInt *ret=self->getMesh3DIds();
3095         if(ret)
3096           ret->incrRef();
3097         return SWIG_NewPointerObj(SWIG_as_voidptr(ret),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 );
3098       } 
3099     }
3100   };
3101
3102   //== MEDCouplingMappedExtrudedMesh End
3103
3104   class MEDCoupling1GTUMesh : public MEDCoupling::MEDCouplingPointSet
3105   {
3106   public:
3107     static MEDCoupling1GTUMesh *New(const std::string& name, INTERP_KERNEL::NormalizedCellType type) throw(INTERP_KERNEL::Exception);
3108     static MEDCoupling1GTUMesh *New(const MEDCouplingUMesh *m) throw(INTERP_KERNEL::Exception);
3109     INTERP_KERNEL::NormalizedCellType getCellModelEnum() const throw(INTERP_KERNEL::Exception);
3110     int getNodalConnectivityLength() const throw(INTERP_KERNEL::Exception);
3111     virtual void allocateCells(int nbOfCells=0) throw(INTERP_KERNEL::Exception);
3112     virtual void checkConsistencyOfConnectivity() const throw(INTERP_KERNEL::Exception);
3113     %extend
3114     {
3115       virtual void insertNextCell(PyObject *li) throw(INTERP_KERNEL::Exception)
3116       {
3117         int szArr,sw,iTypppArr;
3118         std::vector<int> stdvecTyyppArr;
3119         const int *tmp=convertIntStarLikePyObjToCppIntStar(li,sw,szArr,iTypppArr,stdvecTyyppArr);
3120         self->insertNextCell(tmp,tmp+szArr);
3121       }
3122
3123       virtual DataArrayInt *getNodalConnectivity() const throw(INTERP_KERNEL::Exception)
3124       {
3125         DataArrayInt *ret=self->getNodalConnectivity();
3126         if(ret) ret->incrRef();
3127         return ret;
3128       }
3129       
3130       static MEDCouplingUMesh *AggregateOnSameCoordsToUMesh(PyObject *li) throw(INTERP_KERNEL::Exception)
3131       {
3132         std::vector< const MEDCoupling1GTUMesh *> parts;
3133         convertFromPyObjVectorOfObj<const MEDCoupling::MEDCoupling1GTUMesh *>(li,SWIGTYPE_p_MEDCoupling__MEDCoupling1GTUMesh,"MEDCoupling1GTUMesh",parts);
3134         return MEDCoupling1GTUMesh::AggregateOnSameCoordsToUMesh(parts);
3135       }
3136     }
3137   };
3138
3139   //== MEDCoupling1SGTUMesh
3140
3141   class MEDCoupling1SGTUMesh : public MEDCoupling::MEDCoupling1GTUMesh
3142   {
3143   public:
3144     static MEDCoupling1SGTUMesh *New(const std::string& name, INTERP_KERNEL::NormalizedCellType type) throw(INTERP_KERNEL::Exception);
3145     static MEDCoupling1SGTUMesh *New(const MEDCouplingUMesh *m) throw(INTERP_KERNEL::Exception);
3146     void setNodalConnectivity(DataArrayInt *nodalConn) throw(INTERP_KERNEL::Exception);
3147     int getNumberOfNodesPerCell() const throw(INTERP_KERNEL::Exception);
3148     static MEDCoupling1SGTUMesh *Merge1SGTUMeshes(const MEDCoupling1SGTUMesh *mesh1, const MEDCoupling1SGTUMesh *mesh2) throw(INTERP_KERNEL::Exception);
3149     MEDCoupling1SGTUMesh *buildSetInstanceFromThis(int spaceDim) const throw(INTERP_KERNEL::Exception);
3150     MEDCoupling1GTUMesh *computeDualMesh() const throw(INTERP_KERNEL::Exception);
3151     MEDCoupling1SGTUMesh *explodeEachHexa8To6Quad4() const throw(INTERP_KERNEL::Exception);
3152     DataArrayInt *sortHexa8EachOther() throw(INTERP_KERNEL::Exception);
3153     %extend
3154     {
3155       MEDCoupling1SGTUMesh()
3156       {
3157         return MEDCoupling1SGTUMesh::New();
3158       }
3159
3160       MEDCoupling1SGTUMesh(const std::string& name, INTERP_KERNEL::NormalizedCellType type) throw(INTERP_KERNEL::Exception)
3161       {
3162         return MEDCoupling1SGTUMesh::New(name,type);
3163       }
3164
3165       MEDCoupling1SGTUMesh(const MEDCouplingUMesh *m) throw(INTERP_KERNEL::Exception)
3166       {
3167         return MEDCoupling1SGTUMesh::New(m);
3168       }
3169
3170       static PyObject *___new___(PyObject *cls, PyObject *args) throw(INTERP_KERNEL::Exception)
3171       {
3172         return NewMethWrapCallInitOnlyIfEmptyDictInInput(cls,args,"MEDCoupling1SGTUMesh");
3173       }
3174
3175       std::string __str__() const throw(INTERP_KERNEL::Exception)
3176       {
3177         return self->simpleRepr();
3178       }
3179       
3180       std::string __repr__() const throw(INTERP_KERNEL::Exception)
3181       {
3182         std::ostringstream oss;
3183         self->reprQuickOverview(oss);
3184         return oss.str();
3185       }
3186
3187       PyObject *structurizeMe(double eps=1e-12) const throw(INTERP_KERNEL::Exception)
3188       {
3189         DataArrayInt *cellPerm(0),*nodePerm(0);
3190         MEDCouplingCMesh *retCpp(self->structurizeMe(cellPerm,nodePerm,eps));
3191         PyObject *ret(PyTuple_New(3));
3192         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(retCpp),SWIGTYPE_p_MEDCoupling__MEDCouplingCMesh, SWIG_POINTER_OWN | 0 ));
3193         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(cellPerm),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
3194         PyTuple_SetItem(ret,2,SWIG_NewPointerObj(SWIG_as_voidptr(nodePerm),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
3195         return ret;
3196       }
3197
3198       static MEDCoupling1SGTUMesh *Merge1SGTUMeshes(PyObject *li) throw(INTERP_KERNEL::Exception)
3199       {
3200         std::vector<const MEDCoupling::MEDCoupling1SGTUMesh *> tmp;
3201         convertFromPyObjVectorOfObj<const MEDCoupling::MEDCoupling1SGTUMesh *>(li,SWIGTYPE_p_MEDCoupling__MEDCoupling1SGTUMesh,"MEDCoupling1SGTUMesh",tmp);
3202         return MEDCoupling1SGTUMesh::Merge1SGTUMeshes(tmp);
3203       }
3204       
3205       static MEDCoupling1SGTUMesh *Merge1SGTUMeshesOnSameCoords(PyObject *li) throw(INTERP_KERNEL::Exception)
3206       {
3207         std::vector<const MEDCoupling::MEDCoupling1SGTUMesh *> tmp;
3208         convertFromPyObjVectorOfObj<const MEDCoupling::MEDCoupling1SGTUMesh *>(li,SWIGTYPE_p_MEDCoupling__MEDCoupling1SGTUMesh,"MEDCoupling1SGTUMesh",tmp);
3209         return MEDCoupling1SGTUMesh::Merge1SGTUMeshesOnSameCoords(tmp);
3210       }
3211     }
3212   };
3213   
3214   //== MEDCoupling1SGTUMesh End
3215
3216   //== MEDCoupling1DGTUMesh
3217
3218   class MEDCoupling1DGTUMesh : public MEDCoupling::MEDCoupling1GTUMesh
3219   {
3220   public:
3221     static MEDCoupling1DGTUMesh *New(const std::string& name, INTERP_KERNEL::NormalizedCellType type) throw(INTERP_KERNEL::Exception);
3222     static MEDCoupling1DGTUMesh *New(const MEDCouplingUMesh *m) throw(INTERP_KERNEL::Exception);
3223     void setNodalConnectivity(DataArrayInt *nodalConn, DataArrayInt *nodalConnIndex) throw(INTERP_KERNEL::Exception);
3224     MEDCoupling1DGTUMesh *buildSetInstanceFromThis(int spaceDim) const throw(INTERP_KERNEL::Exception);
3225     bool isPacked() const throw(INTERP_KERNEL::Exception);
3226     %extend
3227     {
3228       MEDCoupling1DGTUMesh()
3229       {
3230         return MEDCoupling1DGTUMesh::New();
3231       }
3232       MEDCoupling1DGTUMesh(const std::string& name, INTERP_KERNEL::NormalizedCellType type) throw(INTERP_KERNEL::Exception)
3233       {
3234         return MEDCoupling1DGTUMesh::New(name,type);
3235       }
3236
3237       MEDCoupling1DGTUMesh(const MEDCouplingUMesh *m) throw(INTERP_KERNEL::Exception)
3238       {
3239         return MEDCoupling1DGTUMesh::New(m);
3240       }
3241
3242       static PyObject *___new___(PyObject *cls, PyObject *args) throw(INTERP_KERNEL::Exception)
3243       {
3244         return NewMethWrapCallInitOnlyIfEmptyDictInInput(cls,args,"MEDCoupling1DGTUMesh");
3245       }
3246
3247       std::string __str__() const throw(INTERP_KERNEL::Exception)
3248       {
3249         return self->simpleRepr();
3250       }
3251       
3252       std::string __repr__() const throw(INTERP_KERNEL::Exception)
3253       {
3254         std::ostringstream oss;
3255         self->reprQuickOverview(oss);
3256         return oss.str();
3257       }
3258
3259       DataArrayInt *getNodalConnectivityIndex() const throw(INTERP_KERNEL::Exception)
3260       {
3261         DataArrayInt *ret=self->getNodalConnectivityIndex();
3262         if(ret) ret->incrRef();
3263         return ret;
3264       }
3265
3266       PyObject *retrievePackedNodalConnectivity() const throw(INTERP_KERNEL::Exception)
3267       {
3268         DataArrayInt *ret1=0,*ret2=0;
3269         bool ret0=self->retrievePackedNodalConnectivity(ret1,ret2);
3270         PyObject *ret0Py=ret0?Py_True:Py_False;
3271         Py_XINCREF(ret0Py);
3272         PyObject *ret=PyTuple_New(3);
3273         PyTuple_SetItem(ret,0,ret0Py);
3274         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(ret1),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
3275         PyTuple_SetItem(ret,2,SWIG_NewPointerObj(SWIG_as_voidptr(ret2),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
3276         return ret;
3277       }
3278       
3279       PyObject *copyWithNodalConnectivityPacked() const throw(INTERP_KERNEL::Exception)
3280       {
3281         bool ret1;
3282         MEDCoupling1DGTUMesh *ret0=self->copyWithNodalConnectivityPacked(ret1);
3283         PyObject *ret=PyTuple_New(2);
3284         PyObject *ret1Py=ret1?Py_True:Py_False; Py_XINCREF(ret1Py);
3285         PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(ret0),SWIGTYPE_p_MEDCoupling__MEDCoupling1DGTUMesh, SWIG_POINTER_OWN | 0 ));
3286         PyTuple_SetItem(ret,1,ret1Py);
3287         return ret;
3288       }
3289
3290       static MEDCoupling1DGTUMesh *Merge1DGTUMeshes(PyObject *li) throw(INTERP_KERNEL::Exception)
3291       {
3292         std::vector<const MEDCoupling::MEDCoupling1DGTUMesh *> tmp;
3293         convertFromPyObjVectorOfObj<const MEDCoupling::MEDCoupling1DGTUMesh *>(li,SWIGTYPE_p_MEDCoupling__MEDCoupling1DGTUMesh,"MEDCoupling1DGTUMesh",tmp);
3294         return MEDCoupling1DGTUMesh::Merge1DGTUMeshes(tmp);
3295       }
3296       
3297       static MEDCoupling1DGTUMesh *Merge1DGTUMeshesOnSameCoords(PyObject *li) throw(INTERP_KERNEL::Exception)
3298       {
3299         std::vector<const MEDCoupling::MEDCoupling1DGTUMesh *> tmp;
3300         convertFromPyObjVectorOfObj<const MEDCoupling::MEDCoupling1DGTUMesh *>(li,SWIGTYPE_p_MEDCoupling__MEDCoupling1DGTUMesh,"MEDCoupling1DGTUMesh",tmp);
3301         return MEDCoupling1DGTUMesh::Merge1DGTUMeshesOnSameCoords(tmp);
3302       }
3303       
3304       static DataArrayInt *AggregateNodalConnAndShiftNodeIds(PyObject *li, const std::vector<int>& offsetInNodeIdsPerElt) throw(INTERP_KERNEL::Exception)
3305       {
3306         std::vector<const MEDCoupling::DataArrayInt *> tmp;
3307         convertFromPyObjVectorOfObj<const MEDCoupling::DataArrayInt *>(li,SWIGTYPE_p_MEDCoupling__DataArrayInt,"DataArrayInt",tmp);
3308         return MEDCoupling1DGTUMesh::AggregateNodalConnAndShiftNodeIds(tmp,offsetInNodeIdsPerElt);
3309       }
3310     }
3311   };
3312
3313   //== MEDCoupling1DGTUMeshEnd
3314
3315   class MEDCouplingStructuredMesh : public MEDCoupling::MEDCouplingMesh
3316   {
3317   public:
3318     int getCellIdFromPos(int i, int j, int k) const throw(INTERP_KERNEL::Exception);
3319     int getNodeIdFromPos(int i, int j, int k) const throw(INTERP_KERNEL::Exception);
3320     int getNumberOfCellsOfSubLevelMesh() const throw(INTERP_KERNEL::Exception);
3321     int getSpaceDimensionOnNodeStruct() const throw(INTERP_KERNEL::Exception);
3322     double computeSquareness() const throw(INTERP_KERNEL::Exception);
3323     virtual std::vector<int> getNodeGridStructure() const throw(INTERP_KERNEL::Exception);
3324     std::vector<int> getCellGridStructure() const throw(INTERP_KERNEL::Exception);
3325     MEDCoupling1SGTUMesh *build1SGTUnstructured() const throw(INTERP_KERNEL::Exception);
3326     std::vector<int> getLocationFromCellId(int cellId) const throw(INTERP_KERNEL::Exception);
3327     std::vector<int> getLocationFromNodeId(int cellId) const throw(INTERP_KERNEL::Exception);
3328     static INTERP_KERNEL::NormalizedCellType GetGeoTypeGivenMeshDimension(int meshDim) throw(INTERP_KERNEL::Exception);
3329     MEDCoupling1SGTUMesh *build1SGTSubLevelMesh() const throw(INTERP_KERNEL::Exception);
3330     static int DeduceNumberOfGivenStructure(const std::vector<int>& st) throw(INTERP_KERNEL::Exception);
3331     static DataArrayInt *ComputeCornersGhost(const std::vector<int>& st, int ghostLev) throw(INTERP_KERNEL::Exception);
3332     static std::vector<int> GetSplitVectFromStruct(const std::vector<int>& strct) throw(INTERP_KERNEL::Exception);
3333     %extend
3334     {
3335       virtual MEDCouplingStructuredMesh *buildStructuredSubPart(PyObject *cellPart) const throw(INTERP_KERNEL::Exception)
3336       {
3337         int tmpp1=-1,tmpp2=-1;
3338         std::vector<int> tmp=fillArrayWithPyListInt2(cellPart,tmpp1,tmpp2);
3339         std::vector< std::pair<int,int> > inp;
3340         if(tmpp2==2)
3341           {
3342             inp.resize(tmpp1);
3343             for(int i=0;i<tmpp1;i++)
3344               { inp[i].first=tmp[2*i]; inp[i].second=tmp[2*i+1]; }
3345           }
3346         else if(tmpp2==1)
3347           {
3348             if(tmpp1%2!=0)
3349               throw INTERP_KERNEL::Exception("Wrap of MEDCouplingStructuredMesh.buildStructuredSubPart : invalid input size ! Must be even size !");
3350             inp.resize(tmpp1/2);
3351             for(int i=0;i<tmpp1/2;i++)
3352               { inp[i].first=tmp[2*i]; inp[i].second=tmp[2*i+1]; }
3353           }
3354         else
3355           throw INTERP_KERNEL::Exception("Wrap of MEDCouplingStructuredMesh.buildStructuredSubPart : invalid input size !");
3356         return self->buildStructuredSubPart(inp);
3357       }
3358
3359       static DataArrayInt *BuildExplicitIdsFrom(PyObject *st, PyObject *part) throw(INTERP_KERNEL::Exception)
3360       {
3361         std::vector< std::pair<int,int> > inp;
3362         convertPyToVectorPairInt(part,inp);
3363         //
3364         int szArr,sw,iTypppArr;
3365         std::vector<int> stdvecTyyppArr;
3366         const int *tmp4=convertIntStarLikePyObjToCppIntStar(st,sw,szArr,iTypppArr,stdvecTyyppArr);
3367         std::vector<int> tmp5(tmp4,tmp4+szArr);
3368         //
3369         return MEDCouplingStructuredMesh::BuildExplicitIdsFrom(tmp5,inp);
3370       }
3371
3372       static void MultiplyPartOf(const std::vector<int>& st, PyObject *part, double factor, DataArrayDouble *da) throw(INTERP_KERNEL::Exception)
3373       {
3374         std::vector< std::pair<int,int> > inp;
3375         convertPyToVectorPairInt(part,inp);
3376         MEDCouplingStructuredMesh::MultiplyPartOf(st,inp,factor,da);
3377       }
3378
3379       static void MultiplyPartOfByGhost(const std::vector<int>& st, PyObject *part, int ghostSize, double factor, DataArrayDouble *da) throw(INTERP_KERNEL::Exception)
3380       {
3381         std::vector< std::pair<int,int> > inp;
3382         convertPyToVectorPairInt(part,inp);
3383         MEDCouplingStructuredMesh::MultiplyPartOfByGhost(st,inp,ghostSize,factor,da);
3384       }
3385
3386       static PyObject *PutInGhostFormat(int ghostSize, const std::vector<int>& st, PyObject *part) throw(INTERP_KERNEL::Exception)
3387       {
3388         std::vector< std::pair<int,int> > inp;
3389         convertPyToVectorPairInt(part,inp);
3390         std::vector<int> stWithGhost;
3391         std::vector< std::pair<int,int> > partWithGhost;
3392         MEDCouplingStructuredMesh::PutInGhostFormat(ghostSize,st,inp,stWithGhost,partWithGhost);
3393         PyObject *ret(PyTuple_New(2));
3394         PyTuple_SetItem(ret,0,convertIntArrToPyList2(stWithGhost));
3395         PyTuple_SetItem(ret,1,convertFromVectorPairInt(partWithGhost));
3396         return ret;
3397       }
3398
3399       static DataArrayDouble *ExtractFieldOfDoubleFrom(const std::vector<int>& st, const DataArrayDouble *fieldOfDbl, PyObject *partCompactFormat) throw(INTERP_KERNEL::Exception)
3400       {
3401         std::vector< std::pair<int,int> > inp;
3402         convertPyToVectorPairInt(partCompactFormat,inp);
3403         return MEDCouplingStructuredMesh::ExtractFieldOfDoubleFrom(st,fieldOfDbl,inp);
3404       }
3405
3406       static void AssignPartOfFieldOfDoubleUsing(const std::vector<int>& st, DataArrayDouble *fieldOfDbl, PyObject *partCompactFormat, const DataArrayDouble *other) throw(INTERP_KERNEL::Exception)
3407       {
3408         std::vector< std::pair<int,int> > inp;
3409         convertPyToVectorPairInt(partCompactFormat,inp);
3410         MEDCouplingStructuredMesh::AssignPartOfFieldOfDoubleUsing(st,fieldOfDbl,inp,other);
3411       }
3412
3413       static int DeduceNumberOfGivenRangeInCompactFrmt(PyObject *part) throw(INTERP_KERNEL::Exception)
3414       {
3415         std::vector< std::pair<int,int> > inp;
3416         convertPyToVectorPairInt(part,inp);
3417         return MEDCouplingStructuredMesh::DeduceNumberOfGivenRangeInCompactFrmt(inp);
3418       }
3419
3420       static DataArrayInt *Build1GTNodalConnectivity(PyObject *li) throw(INTERP_KERNEL::Exception)
3421       {
3422         int szArr,sw,iTypppArr;
3423         std::vector<int> stdvecTyyppArr;
3424         const int *tmp=convertIntStarLikePyObjToCppIntStar(li,sw,szArr,iTypppArr,stdvecTyyppArr);
3425         return MEDCouplingStructuredMesh::Build1GTNodalConnectivity(tmp,tmp+szArr);
3426       }
3427
3428       static DataArrayInt *Build1GTNodalConnectivityOfSubLevelMesh(PyObject *li) throw(INTERP_KERNEL::Exception)
3429       {
3430         int szArr,sw,iTypppArr;
3431         std::vector<int> stdvecTyyppArr;
3432         const int *tmp(convertIntStarLikePyObjToCppIntStar(li,sw,szArr,iTypppArr,stdvecTyyppArr));
3433         return MEDCouplingStructuredMesh::Build1GTNodalConnectivityOfSubLevelMesh(tmp,tmp+szArr);
3434       }
3435
3436       static std::vector<int> GetDimensionsFromCompactFrmt(PyObject *partCompactFormat) throw(INTERP_KERNEL::Exception)
3437       {
3438         std::vector< std::pair<int,int> > inp;
3439         convertPyToVectorPairInt(partCompactFormat,inp);
3440         return MEDCouplingStructuredMesh::GetDimensionsFromCompactFrmt(inp);
3441       }
3442
3443       static PyObject *GetCompactFrmtFromDimensions(const std::vector<int>& dims) throw(INTERP_KERNEL::Exception)
3444       {
3445         std::vector< std::pair<int,int> > ret(MEDCouplingStructuredMesh::GetCompactFrmtFromDimensions(dims));
3446         PyObject *retPy=PyList_New(ret.size());
3447         for(std::size_t i=0;i<ret.size();i++)
3448           {
3449             PyObject *tmp=PyTuple_New(2);
3450             PyTuple_SetItem(tmp,0,PyInt_FromLong(ret[i].first));
3451             PyTuple_SetItem(tmp,1,PyInt_FromLong(ret[i].second));
3452             PyList_SetItem(retPy,i,tmp);
3453           }
3454         return retPy;
3455       }
3456
3457       static PyObject *IntersectRanges(PyObject *r1, PyObject *r2) throw(INTERP_KERNEL::Exception)
3458       {
3459         std::vector< std::pair<int,int> > r1Cpp,r2Cpp;
3460         convertPyToVectorPairInt(r1,r1Cpp);
3461         convertPyToVectorPairInt(r2,r2Cpp);
3462         std::vector< std::pair<int,int> > ret(MEDCouplingStructuredMesh::IntersectRanges(r1Cpp,r2Cpp));
3463         PyObject *retPy=PyList_New(ret.size());
3464         for(std::size_t i=0;i<ret.size();i++)
3465           {
3466             PyObject *tmp=PyTuple_New(2);
3467             PyTuple_SetItem(tmp,0,PyInt_FromLong(ret[i].first));
3468             PyTuple_SetItem(tmp,1,PyInt_FromLong(ret[i].second));
3469             PyList_SetItem(retPy,i,tmp);
3470           }
3471         return retPy;
3472       }
3473
3474       static bool AreRangesIntersect(PyObject *r1, PyObject *r2)
3475       {
3476         std::vector< std::pair<int,int> > r1Cpp,r2Cpp;
3477         convertPyToVectorPairInt(r1,r1Cpp);
3478         convertPyToVectorPairInt(r2,r2Cpp);
3479         return MEDCouplingStructuredMesh::AreRangesIntersect(r1Cpp,r2Cpp);
3480       }
3481
3482       static PyObject *IsPartStructured(PyObject *li, PyObject *st) throw(INTERP_KERNEL::Exception)
3483       {
3484         int szArr,sw,iTypppArr;
3485         std::vector<int> stdvecTyyppArr;
3486         const int *tmp=convertIntStarLikePyObjToCppIntStar(li,sw,szArr,iTypppArr,stdvecTyyppArr);
3487         int szArr2,sw2,iTypppArr2;
3488         std::vector<int> stdvecTyyppArr2;
3489         const int *tmp2=convertIntStarLikePyObjToCppIntStar(st,sw2,szArr2,iTypppArr2,stdvecTyyppArr2);
3490         std::vector<int> tmp3(tmp2,tmp2+szArr2);
3491         std::vector< std::pair<int,int> > partCompactFormat;
3492         bool ret0=MEDCouplingStructuredMesh::IsPartStructured(tmp,tmp+szArr,tmp3,partCompactFormat);
3493         PyObject *ret=PyTuple_New(2);
3494         PyObject *ret0Py=ret0?Py_True:Py_False; Py_XINCREF(ret0Py);
3495         PyTuple_SetItem(ret,0,ret0Py);
3496         PyObject *ret1Py=PyList_New(partCompactFormat.size());
3497         for(std::size_t i=0;i<partCompactFormat.size();i++)
3498           {
3499             PyObject *tmp4=PyTuple_New(2);
3500             PyTuple_SetItem(tmp4,0,PyInt_FromLong(partCompactFormat[i].first));
3501             PyTuple_SetItem(tmp4,1,PyInt_FromLong(partCompactFormat[i].second));
3502             PyList_SetItem(ret1Py,i,tmp4);
3503           }
3504         PyTuple_SetItem(ret,1,ret1Py);
3505         return ret;
3506       }
3507
3508       static PyObject *ChangeReferenceFromGlobalOfCompactFrmt(PyObject *bigInAbs, PyObject *partOfBigInAbs, bool check=true) throw(INTERP_KERNEL::Exception)
3509       {
3510         std::vector< std::pair<int,int> > param0,param1,ret;
3511         convertPyToVectorPairInt(bigInAbs,param0);
3512         convertPyToVectorPairInt(partOfBigInAbs,param1);
3513         MEDCouplingStructuredMesh::ChangeReferenceFromGlobalOfCompactFrmt(param0,param1,ret,check);
3514         PyObject *retPy(PyList_New(ret.size()));
3515         for(std::size_t i=0;i<ret.size();i++)
3516           {
3517             PyObject *tmp(PyTuple_New(2));
3518             PyTuple_SetItem(tmp,0,PyInt_FromLong(ret[i].first));
3519             PyTuple_SetItem(tmp,1,PyInt_FromLong(ret[i].second));
3520             PyList_SetItem(retPy,i,tmp);
3521           }
3522         return retPy;
3523       }
3524
3525       static PyObject *TranslateCompactFrmt(PyObject *part, const std::vector<int>& translation) throw(INTERP_KERNEL::Exception)
3526       {
3527         std::vector< std::pair<int,int> > param0;
3528         convertPyToVectorPairInt(part,param0);
3529         std::vector< std::pair<int,int> > ret(MEDCouplingStructuredMesh::TranslateCompactFrmt(param0,translation));
3530         PyObject *retPy(PyList_New(ret.size()));
3531         for(std::size_t i=0;i<ret.size();i++)
3532           {
3533             PyObject *tmp(PyTuple_New(2));
3534             PyTuple_SetItem(tmp,0,PyInt_FromLong(ret[i].first));
3535             PyTuple_SetItem(tmp,1,PyInt_FromLong(ret[i].second));
3536             PyList_SetItem(retPy,i,tmp);
3537           }
3538         return retPy;
3539       }
3540
3541       static std::vector<int> FindTranslationFrom(PyObject *startingFrom, PyObject *goingTo) throw(INTERP_KERNEL::Exception)
3542       {
3543         std::vector< std::pair<int,int> > param0,param1;
3544         convertPyToVectorPairInt(startingFrom,param0);
3545         convertPyToVectorPairInt(goingTo,param1);
3546         return  MEDCouplingStructuredMesh::FindTranslationFrom(param0,param1);
3547       }
3548
3549       static PyObject *ChangeReferenceToGlobalOfCompactFrmt(PyObject *bigInAbs, PyObject *partOfBigRelativeToBig, bool check=true) throw(INTERP_KERNEL::Exception)
3550       {
3551         std::vector< std::pair<int,int> > param0,param1,ret;
3552         convertPyToVectorPairInt(bigInAbs,param0);
3553         convertPyToVectorPairInt(partOfBigRelativeToBig,param1);
3554         MEDCouplingStructuredMesh::ChangeReferenceToGlobalOfCompactFrmt(param0,param1,ret,check);
3555         PyObject *retPy(PyList_New(ret.size()));
3556         for(std::size_t i=0;i<ret.size();i++)
3557           {
3558             PyObject *tmp(PyTuple_New(2));
3559             PyTuple_SetItem(tmp,0,PyInt_FromLong(ret[i].first));
3560             PyTuple_SetItem(tmp,1,PyInt_FromLong(ret[i].second));
3561             PyList_SetItem(retPy,i,tmp);
3562           }
3563         return retPy;
3564       }
3565     }
3566   };
3567
3568   class MEDCouplingCurveLinearMesh;
3569
3570   //== MEDCouplingCMesh
3571   
3572   class MEDCouplingCMesh : public MEDCoupling::MEDCouplingStructuredMesh
3573   {
3574   public:
3575     static MEDCouplingCMesh *New() throw(INTERP_KERNEL::Exception);
3576     static MEDCouplingCMesh *New(const std::string& meshName) throw(INTERP_KERNEL::Exception);
3577     void setCoords(const DataArrayDouble *coordsX,
3578                    const DataArrayDouble *coordsY=0,
3579                    const DataArrayDouble *coordsZ=0) throw(INTERP_KERNEL::Exception);
3580     void setCoordsAt(int i, const DataArrayDouble *arr) throw(INTERP_KERNEL::Exception);
3581     MEDCouplingCurveLinearMesh *buildCurveLinear() const throw(INTERP_KERNEL::Exception);
3582     %extend {
3583       MEDCouplingCMesh() throw(INTERP_KERNEL::Exception)
3584       {
3585         return MEDCouplingCMesh::New();
3586       }
3587       MEDCouplingCMesh(const std::string& meshName) throw(INTERP_KERNEL::Exception)
3588       {
3589         return MEDCouplingCMesh::New(meshName);
3590       }
3591       // serialization
3592       static PyObject *___new___(PyObject *cls, PyObject *args) throw(INTERP_KERNEL::Exception)
3593       {
3594         return NewMethWrapCallInitOnlyIfEmptyDictInInput(cls,args,"MEDCouplingCMesh");
3595       }
3596       std::string __str__() const throw(INTERP_KERNEL::Exception)
3597       {
3598         return self->simpleRepr();
3599       }
3600       std::string __repr__() const throw(INTERP_KERNEL::Exception)
3601       {
3602         std::ostringstream oss;
3603         self->reprQuickOverview(oss);
3604         return oss.str();
3605       }
3606       DataArrayDouble *getCoordsAt(int i) throw(INTERP_KERNEL::Exception)
3607       {
3608         DataArrayDouble *ret=self->getCoordsAt(i);
3609         if(ret)
3610           ret->incrRef();
3611         return ret;
3612       }
3613     }
3614   };
3615
3616   //== MEDCouplingCMesh End
3617
3618   //== MEDCouplingCurveLinearMesh
3619
3620   class MEDCouplingCurveLinearMesh : public MEDCoupling::MEDCouplingStructuredMesh
3621   {
3622   public:
3623     static MEDCouplingCurveLinearMesh *New() throw(INTERP_KERNEL::Exception);
3624     static MEDCouplingCurveLinearMesh *New(const std::string& meshName) throw(INTERP_KERNEL::Exception);
3625     void setCoords(const DataArrayDouble *coords) throw(INTERP_KERNEL::Exception);
3626     %extend {
3627       MEDCouplingCurveLinearMesh() throw(INTERP_KERNEL::Exception)
3628       {
3629         return MEDCouplingCurveLinearMesh::New();
3630       }
3631       MEDCouplingCurveLinearMesh(const std::string& meshName) throw(INTERP_KERNEL::Exception)
3632       {
3633         return MEDCouplingCurveLinearMesh::New(meshName);
3634       }
3635       static PyObject *___new___(PyObject *cls, PyObject *args) throw(INTERP_KERNEL::Exception)
3636       {
3637         return NewMethWrapCallInitOnlyIfEmptyDictInInput(cls,args,"MEDCouplingCurveLinearMesh");
3638       }
3639       std::string __str__() const throw(INTERP_KERNEL::Exception) 
3640       {
3641         return self->simpleRepr();
3642       }
3643       std::string __repr__() const throw(INTERP_KERNEL::Exception)
3644       {
3645         std::ostringstream oss;
3646         self->reprQuickOverview(oss);
3647         return oss.str();
3648       }
3649       DataArrayDouble *getCoords() throw(INTERP_KERNEL::Exception)
3650       {
3651         DataArrayDouble *ret=self->getCoords();
3652         if(ret)
3653           ret->incrRef();
3654         return ret;
3655       }
3656       void setNodeGridStructure(PyObject *gridStruct) throw(INTERP_KERNEL::Exception)
3657       {
3658         int szArr,sw,iTypppArr;
3659         std::vector<int> stdvecTyyppArr;
3660         const int *tmp=convertIntStarLikePyObjToCppIntStar(gridStruct,sw,szArr,iTypppArr,stdvecTyyppArr);
3661         self->setNodeGridStructure(tmp,tmp+szArr);
3662       }
3663     }
3664   };
3665
3666   //== MEDCouplingCurveLinearMesh End
3667
3668   //== MEDCouplingIMesh
3669
3670   class MEDCouplingIMesh : public MEDCoupling::MEDCouplingStructuredMesh
3671   {
3672   public:
3673     static MEDCouplingIMesh *New() throw(INTERP_KERNEL::Exception);
3674     //
3675     void setSpaceDimension(int spaceDim) throw(INTERP_KERNEL::Exception);
3676     std::vector<int> getNodeStruct() const throw(INTERP_KERNEL::Exception);
3677     std::vector<double> getOrigin() const throw(INTERP_KERNEL::Exception);
3678     std::vector<double> getDXYZ() const throw(INTERP_KERNEL::Exception);
3679     void setAxisUnit(const std::string& unitName) throw(INTERP_KERNEL::Exception);
3680     std::string getAxisUnit() const throw(INTERP_KERNEL::Exception);
3681     double getMeasureOfAnyCell() const throw(INTERP_KERNEL::Exception);
3682     MEDCouplingCMesh *convertToCartesian() const throw(INTERP_KERNEL::Exception);
3683     void refineWithFactor(const std::vector<int>& factors) throw(INTERP_KERNEL::Exception);
3684     MEDCouplingIMesh *asSingleCell() const throw(INTERP_KERNEL::Exception);
3685     MEDCouplingIMesh *buildWithGhost(int ghostLev) const throw(INTERP_KERNEL::Exception);
3686     %extend
3687     {
3688       MEDCouplingIMesh()
3689       {
3690         return MEDCouplingIMesh::New();
3691       }
3692       static MEDCouplingIMesh *New(const std::string& meshName, int spaceDim, PyObject *nodeStrct, PyObject *origin, PyObject *dxyz) throw(INTERP_KERNEL::Exception)
3693       {
3694         static const char msg0[]="MEDCouplingIMesh::New : error on 'origin' parameter !";
3695         static const char msg1[]="MEDCouplingIMesh::New : error on 'dxyz' parameter !";
3696         const int *nodeStrctPtr(0);
3697         const double *originPtr(0),*dxyzPtr(0);
3698         int sw,sz,val0;
3699         std::vector<int> bb0;
3700         nodeStrctPtr=convertIntStarLikePyObjToCppIntStar(nodeStrct,sw,sz,val0,bb0);
3701         //
3702         double val,val2;
3703         std::vector<double> bb,bb2;
3704         int sz1,sz2;
3705         originPtr=convertObjToPossibleCpp5_SingleCompo(origin,sw,val,bb,msg0,false,sz1);
3706         dxyzPtr=convertObjToPossibleCpp5_SingleCompo(dxyz,sw,val2,bb2,msg1,false,sz2);
3707         //
3708         return MEDCouplingIMesh::New(meshName,spaceDim,nodeStrctPtr,nodeStrctPtr+sz,originPtr,originPtr+sz1,dxyzPtr,dxyzPtr+sz2);
3709       }
3710
3711       MEDCouplingIMesh(const std::string& meshName, int spaceDim, PyObject *nodeStrct, PyObject *origin, PyObject *dxyz) throw(INTERP_KERNEL::Exception)
3712       {
3713         return MEDCoupling_MEDCouplingIMesh_New__SWIG_1(meshName,spaceDim,nodeStrct,origin,dxyz);
3714       }
3715
3716       static PyObject *___new___(PyObject *cls, PyObject *args) throw(INTERP_KERNEL::Exception)
3717       {
3718         return NewMethWrapCallInitOnlyIfEmptyDictInInput(cls,args,"MEDCouplingIMesh");
3719       }
3720
3721       void setNodeStruct(PyObject *nodeStrct) throw(INTERP_KERNEL::Exception)
3722       {
3723         int sw,sz,val0;
3724         std::vector<int> bb0;
3725         const int *nodeStrctPtr(convertIntStarLikePyObjToCppIntStar(nodeStrct,sw,sz,val0,bb0));
3726         self->setNodeStruct(nodeStrctPtr,nodeStrctPtr+sz);
3727       }
3728
3729       void setOrigin(PyObject *origin) throw(INTERP_KERNEL::Exception)
3730       {
3731         static const char msg[]="MEDCouplingIMesh::setOrigin : invalid input 'origin' parameter ! integer, float, list/tuple of float, DataArrayDouble or DataArrayDoubleTuple supported !";
3732         double val;
3733         DataArrayDouble *a;
3734         DataArrayDoubleTuple *aa;
3735         std::vector<double> bb;
3736         int sw,nbTuples;
3737         const double *originPtr(convertObjToPossibleCpp5_SingleCompo(origin,sw,val,bb,msg,false,nbTuples));
3738         self->setOrigin(originPtr,originPtr+nbTuples);
3739       }
3740       
3741       void setDXYZ(PyObject *dxyz) throw(INTERP_KERNEL::Exception)
3742       {
3743         static const char msg[]="MEDCouplingIMesh::setDXYZ : invalid input 'dxyz' parameter ! integer, float, list/tuple of float, DataArrayDouble or DataArrayDoubleTuple supported !";
3744         double val;
3745         DataArrayDouble *a;
3746         DataArrayDoubleTuple *aa;
3747         std::vector<double> bb;
3748         int sw,nbTuples;
3749         const double *originPtr(convertObjToPossibleCpp5_SingleCompo(dxyz,sw,val,bb,msg,false,nbTuples));
3750         self->setDXYZ(originPtr,originPtr+nbTuples);
3751       }
3752
3753       static void CondenseFineToCoarse(const std::vector<int>& coarseSt, const DataArrayDouble *fineDA, PyObject *fineLocInCoarse, const std::vector<int>& facts, DataArrayDouble *coarseDA) throw(INTERP_KERNEL::Exception)
3754       {
3755         std::vector< std::pair<int,int> > inp;
3756         convertPyToVectorPairInt(fineLocInCoarse,inp);
3757         MEDCouplingIMesh::CondenseFineToCoarse(coarseSt,fineDA,inp,facts,coarseDA);
3758       }
3759
3760       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)
3761       {
3762         std::vector< std::pair<int,int> > inp;
3763         convertPyToVectorPairInt(fineLocInCoarse,inp);
3764         MEDCouplingIMesh::CondenseFineToCoarseGhost(coarseSt,fineDA,inp,facts,coarseDA,ghostSize);
3765       }
3766
3767       static void SpreadCoarseToFine(const DataArrayDouble *coarseDA, const std::vector<int>& coarseSt, DataArrayDouble *fineDA, PyObject *fineLocInCoarse, const std::vector<int>& facts) throw(INTERP_KERNEL::Exception)
3768       {
3769         std::vector< std::pair<int,int> > inp;
3770         convertPyToVectorPairInt(fineLocInCoarse,inp);
3771         MEDCouplingIMesh::SpreadCoarseToFine(coarseDA,coarseSt,fineDA,inp,facts);
3772       }
3773
3774       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)
3775       {
3776         std::vector< std::pair<int,int> > inp;
3777         convertPyToVectorPairInt(fineLocInCoarse,inp);
3778         MEDCouplingIMesh::SpreadCoarseToFineGhost(coarseDA,coarseSt,fineDA,inp,facts,ghostSize);
3779       }
3780
3781       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)
3782       {
3783         std::vector< std::pair<int,int> > inp;
3784         convertPyToVectorPairInt(fineLocInCoarse,inp);
3785         MEDCouplingIMesh::SpreadCoarseToFineGhostZone(coarseDA,coarseSt,fineDA,inp,facts,ghostSize);
3786       }
3787
3788       std::string __str__() const throw(INTERP_KERNEL::Exception)
3789       {
3790         return self->simpleRepr();
3791       }
3792       std::string __repr__() const throw(INTERP_KERNEL::Exception)
3793       {
3794         std::ostringstream oss;
3795         self->reprQuickOverview(oss);
3796         return oss.str();
3797       }
3798     }
3799   };
3800
3801   //== MEDCouplingIMesh End
3802
3803 }
3804
3805 namespace MEDCoupling
3806 {
3807   class MEDCouplingField : public MEDCoupling::RefCountObject, public MEDCoupling::TimeLabel
3808   {
3809   public:
3810     virtual void checkConsistencyLight() const throw(INTERP_KERNEL::Exception);
3811     virtual bool areCompatibleForMerge(const MEDCouplingField *other) const throw(INTERP_KERNEL::Exception);
3812     virtual bool isEqual(const MEDCouplingField *other, double meshPrec, double valsPrec) const throw(INTERP_KERNEL::Exception);
3813     virtual bool isEqualWithoutConsideringStr(const MEDCouplingField *other, double meshPrec, double valsPrec) const throw(INTERP_KERNEL::Exception);
3814     virtual void copyTinyStringsFrom(const MEDCouplingField *other) throw(INTERP_KERNEL::Exception);
3815     void setMesh(const MEDCoupling::MEDCouplingMesh *mesh) throw(INTERP_KERNEL::Exception);
3816     void setName(const char *name) throw(INTERP_KERNEL::Exception);
3817     std::string getDescription() const throw(INTERP_KERNEL::Exception);
3818     void setDescription(const char *desc) throw(INTERP_KERNEL::Exception);
3819     std::string getName() const throw(INTERP_KERNEL::Exception);
3820     TypeOfField getTypeOfField() const throw(INTERP_KERNEL::Exception);
3821     NatureOfField getNature() const throw(INTERP_KERNEL::Exception);
3822     virtual void setNature(NatureOfField nat) throw(INTERP_KERNEL::Exception);
3823     DataArrayDouble *getLocalizationOfDiscr() const throw(INTERP_KERNEL::Exception);
3824     MEDCouplingFieldDouble *buildMeasureField(bool isAbs) const throw(INTERP_KERNEL::Exception);
3825     int getNumberOfTuplesExpected() const throw(INTERP_KERNEL::Exception);
3826     int getNumberOfMeshPlacesExpected() const throw(INTERP_KERNEL::Exception);
3827     void setGaussLocalizationOnType(INTERP_KERNEL::NormalizedCellType type, const std::vector<double>& refCoo,
3828                                     const std::vector<double>& gsCoo, const std::vector<double>& wg) throw(INTERP_KERNEL::Exception);
3829     void clearGaussLocalizations() throw(INTERP_KERNEL::Exception);
3830     MEDCouplingGaussLocalization& getGaussLocalization(int locId) throw(INTERP_KERNEL::Exception);
3831     int getNbOfGaussLocalization() const throw(INTERP_KERNEL::Exception);
3832     int getGaussLocalizationIdOfOneCell(int cellId) const throw(INTERP_KERNEL::Exception);
3833     const MEDCouplingGaussLocalization& getGaussLocalization(int locId) const throw(INTERP_KERNEL::Exception);
3834     int getGaussLocalizationIdOfOneType(INTERP_KERNEL::NormalizedCellType type) const throw(INTERP_KERNEL::Exception);
3835     void setDiscretization(MEDCouplingFieldDiscretization *newDisc);
3836     %extend {
3837       PyObject *getMesh() const throw(INTERP_KERNEL::Exception)
3838       {
3839         MEDCouplingMesh *ret1=const_cast<MEDCouplingMesh *>(self->getMesh());
3840         if(ret1)
3841           ret1->incrRef();
3842         return convertMesh(ret1,SWIG_POINTER_OWN | 0 );
3843       }
3844
3845       PyObject *getDiscretization() throw(INTERP_KERNEL::Exception)
3846       {
3847         MEDCouplingFieldDiscretization *ret=self->getDiscretization();
3848         if(ret)
3849           ret->incrRef();
3850         return convertFieldDiscretization(ret,SWIG_POINTER_OWN | 0 );
3851       }
3852
3853       PyObject *getGaussLocalizationIdsOfOneType(INTERP_KERNEL::NormalizedCellType type) const throw(INTERP_KERNEL::Exception)
3854       {
3855         std::set<int> ret=self->getGaussLocalizationIdsOfOneType(type);
3856         return convertIntArrToPyList3(ret);
3857       }
3858
3859       PyObject *isEqualIfNotWhy(const MEDCouplingField *other, double meshPrec, double valsPrec) const throw(INTERP_KERNEL::Exception)
3860       {
3861         std::string ret1;
3862         bool ret0=self->isEqualIfNotWhy(other,meshPrec,valsPrec,ret1);
3863         PyObject *ret=PyTuple_New(2);
3864         PyObject *ret0Py=ret0?Py_True:Py_False;
3865         Py_XINCREF(ret0Py);
3866         PyTuple_SetItem(ret,0,ret0Py);
3867         PyTuple_SetItem(ret,1,PyString_FromString(ret1.c_str()));
3868         return ret;
3869       }
3870
3871       PyObject *buildSubMeshData(PyObject *li) const throw(INTERP_KERNEL::Exception)
3872       {
3873         DataArrayInt *ret1=0;
3874         MEDCouplingMesh *ret0=0;
3875         void *da=0;
3876         int res1=SWIG_ConvertPtr(li,&da,SWIGTYPE_p_MEDCoupling__DataArrayInt, 0 |  0 );
3877         if (!SWIG_IsOK(res1))
3878           {
3879             int size;
3880             INTERP_KERNEL::AutoPtr<int> tmp=convertPyToNewIntArr2(li,&size);
3881             ret0=self->buildSubMeshData(tmp,tmp+size,ret1);
3882           }
3883         else
3884           {
3885             DataArrayInt *da2=reinterpret_cast< DataArrayInt * >(da);
3886             if(!da2)
3887               throw INTERP_KERNEL::Exception("Not null DataArrayInt instance expected !");
3888             da2->checkAllocated();
3889             ret0=self->buildSubMeshData(da2->getConstPointer(),da2->getConstPointer()+da2->getNbOfElems(),ret1);
3890           }
3891         PyObject *res = PyList_New(2);
3892         PyList_SetItem(res,0,convertMesh(ret0, SWIG_POINTER_OWN | 0 ));
3893         PyList_SetItem(res,1,SWIG_NewPointerObj((void*)ret1,SWIGTYPE_p_MEDCoupling__DataArrayInt,SWIG_POINTER_OWN | 0));
3894         return res;
3895       }
3896
3897       PyObject *buildSubMeshDataRange(int begin, int end, int step) const throw(INTERP_KERNEL::Exception)
3898       {
3899         DataArrayInt *ret1=0;
3900         int bb,ee,ss;
3901         MEDCouplingMesh *ret0=self->buildSubMeshDataRange(begin,end,step,bb,ee,ss,ret1);
3902         PyObject *res=PyTuple_New(2);
3903         PyTuple_SetItem(res,0,convertMesh(ret0, SWIG_POINTER_OWN | 0 ));
3904         if(ret1)
3905           PyTuple_SetItem(res,1,SWIG_NewPointerObj((void*)ret1,SWIGTYPE_p_MEDCoupling__DataArrayInt,SWIG_POINTER_OWN | 0));
3906         else
3907           {
3908             PyObject *res1=PySlice_New(PyInt_FromLong(bb),PyInt_FromLong(ee),PyInt_FromLong(ss));
3909             PyTuple_SetItem(res,1,res1);
3910           }
3911         return res;
3912       }
3913
3914       DataArrayInt *computeTupleIdsToSelectFromCellIds(PyObject *cellIds) const
3915       {
3916         int sw,sz(-1);
3917         int v0; std::vector<int> v1;
3918         const int *cellIdsBg(convertIntStarLikePyObjToCppIntStar(cellIds,sw,sz,v0,v1));
3919         return self->computeTupleIdsToSelectFromCellIds(cellIdsBg,cellIdsBg+sz);
3920       }
3921
3922       void setGaussLocalizationOnCells(PyObject *li, const std::vector<double>& refCoo,
3923                                        const std::vector<double>& gsCoo, const std::vector<double>& wg) throw(INTERP_KERNEL::Exception)
3924       {
3925         void *da=0;
3926         int res1=SWIG_ConvertPtr(li,&da,SWIGTYPE_p_MEDCoupling__DataArrayInt, 0 |  0 );
3927         if (!SWIG_IsOK(res1))
3928           {
3929             int size;
3930             INTERP_KERNEL::AutoPtr<int> tmp=convertPyToNewIntArr2(li,&size);
3931             self->setGaussLocalizationOnCells(tmp,((int *)tmp)+size,refCoo,gsCoo,wg);
3932           }
3933         else
3934           {
3935             DataArrayInt *da2=reinterpret_cast< DataArrayInt * >(da);
3936             if(!da2)
3937               throw INTERP_KERNEL::Exception("Not null DataArrayInt instance expected !");
3938             da2->checkAllocated();
3939             self->setGaussLocalizationOnCells(da2->getConstPointer(),da2->getConstPointer()+da2->getNbOfElems(),refCoo,gsCoo,wg);
3940           }
3941       }
3942
3943       PyObject *getCellIdsHavingGaussLocalization(int locId) const throw(INTERP_KERNEL::Exception)
3944       {
3945         std::vector<int> tmp;
3946         self->getCellIdsHavingGaussLocalization(locId,tmp);
3947         DataArrayInt *ret=DataArrayInt::New();
3948         ret->alloc((int)tmp.size(),1);
3949         std::copy(tmp.begin(),tmp.end(),ret->getPointer());
3950         return SWIG_NewPointerObj(SWIG_as_voidptr(ret),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 );
3951       }
3952       
3953       int getNumberOfTuplesExpectedRegardingCode(PyObject *code, PyObject *idsPerType) const throw(INTERP_KERNEL::Exception)
3954       {
3955         std::vector<int> inp0;
3956         convertPyToNewIntArr4(code,1,3,inp0);
3957         std::vector<const DataArrayInt *> inp1;
3958         convertFromPyObjVectorOfObj<const MEDCoupling::DataArrayInt *>(idsPerType,SWIGTYPE_p_MEDCoupling__DataArrayInt,"DataArrayInt",inp1);
3959         return self->getNumberOfTuplesExpectedRegardingCode(inp0,inp1);
3960       }
3961     }
3962   };
3963   
3964   class MEDCouplingFieldTemplate : public MEDCoupling::MEDCouplingField
3965   {
3966   public:
3967     static MEDCouplingFieldTemplate *New(const MEDCouplingFieldDouble& f) throw(INTERP_KERNEL::Exception);
3968     static MEDCouplingFieldTemplate *New(const MEDCouplingFieldFloat& f) throw(INTERP_KERNEL::Exception);
3969     static MEDCouplingFieldTemplate *New(const MEDCouplingFieldInt& f) throw(INTERP_KERNEL::Exception);
3970     static MEDCouplingFieldTemplate *New(TypeOfField type);
3971     std::string simpleRepr() const throw(INTERP_KERNEL::Exception);
3972     std::string advancedRepr() const throw(INTERP_KERNEL::Exception);
3973     %extend
3974        {
3975          MEDCouplingFieldTemplate(const MEDCouplingFieldDouble& f) throw(INTERP_KERNEL::Exception)
3976          {
3977            return MEDCouplingFieldTemplate::New(f);
3978          }
3979
3980          MEDCouplingFieldTemplate(const MEDCouplingFieldFloat& f) throw(INTERP_KERNEL::Exception)
3981          {
3982            return MEDCouplingFieldTemplate::New(f);
3983          }
3984          
3985          MEDCouplingFieldTemplate(const MEDCouplingFieldInt& f) throw(INTERP_KERNEL::Exception)
3986          {
3987            return MEDCouplingFieldTemplate::New(f);
3988          }
3989          
3990          MEDCouplingFieldTemplate(TypeOfField type) throw(INTERP_KERNEL::Exception)
3991          {
3992            return MEDCouplingFieldTemplate::New(type);
3993          }
3994          
3995          std::string __str__() const throw(INTERP_KERNEL::Exception)
3996          {
3997            return self->simpleRepr();
3998          }
3999          
4000          std::string __repr__() const throw(INTERP_KERNEL::Exception)
4001          {
4002            std::ostringstream oss;
4003            self->reprQuickOverview(oss);
4004            return oss.str();
4005          }
4006        }
4007   };
4008   
4009   class MEDCouplingFieldInt;
4010   
4011   class MEDCouplingFieldDouble : public MEDCoupling::MEDCouplingField
4012   {
4013   public:
4014     static MEDCouplingFieldDouble *New(TypeOfField type, TypeOfTimeDiscretization td=ONE_TIME);
4015     static MEDCouplingFieldDouble *New(const MEDCouplingFieldTemplate& ft, TypeOfTimeDiscretization td=ONE_TIME);
4016     void setTimeUnit(const std::string& unit);
4017     std::string getTimeUnit() const;
4018     void synchronizeTimeWithSupport() throw(INTERP_KERNEL::Exception);
4019     void copyTinyAttrFrom(const MEDCouplingFieldDouble *other) throw(INTERP_KERNEL::Exception);
4020     void copyAllTinyAttrFrom(const MEDCouplingFieldDouble *other) throw(INTERP_KERNEL::Exception);
4021     std::string simpleRepr() const throw(INTERP_KERNEL::Exception);
4022     std::string advancedRepr() const throw(INTERP_KERNEL::Exception);
4023     std::string  writeVTK(const std::string& fileName, bool isBinary=true) const throw(INTERP_KERNEL::Exception);
4024     MEDCouplingFieldInt *convertToIntField() const throw(INTERP_KERNEL::Exception);
4025     MEDCouplingFieldDouble *clone(bool recDeepCpy) const;
4026     MEDCouplingFieldDouble *cloneWithMesh(bool recDeepCpy) const;
4027     MEDCouplingFieldDouble *deepCopy() const;
4028     MEDCouplingFieldDouble *buildNewTimeReprFromThis(TypeOfTimeDiscretization td, bool deepCopy) const throw(INTERP_KERNEL::Exception);
4029     MEDCouplingFieldDouble *nodeToCellDiscretization() const throw(INTERP_KERNEL::Exception);
4030     MEDCouplingFieldDouble *cellToNodeDiscretization() const throw(INTERP_KERNEL::Exception);
4031     TypeOfTimeDiscretization getTimeDiscretization() const throw(INTERP_KERNEL::Exception);
4032     double getIJ(int tupleId, int compoId) const throw(INTERP_KERNEL::Exception);
4033     double getIJK(int cellId, int nodeIdInCell, int compoId) const throw(INTERP_KERNEL::Exception);
4034     void synchronizeTimeWithMesh() throw(INTERP_KERNEL::Exception);
4035     void setArray(DataArrayDouble *array) throw(INTERP_KERNEL::Exception);
4036     void setEndArray(DataArrayDouble *array) throw(INTERP_KERNEL::Exception);
4037     void setTime(double val, int iteration, int order) throw(INTERP_KERNEL::Exception);
4038     void setStartTime(double val, int iteration, int order) throw(INTERP_KERNEL::Exception);
4039     void setEndTime(double val, int iteration, int order) throw(INTERP_KERNEL::Exception);
4040     void applyLin(double a, double b, int compoId) throw(INTERP_KERNEL::Exception);
4041     void applyLin(double a, double b) throw(INTERP_KERNEL::Exception);
4042     int getNumberOfComponents() const throw(INTERP_KERNEL::Exception);
4043     int getNumberOfTuples() const throw(INTERP_KERNEL::Exception);
4044     int getNumberOfValues() const throw(INTERP_KERNEL::Exception);
4045     void setTimeTolerance(double val) throw(INTERP_KERNEL::Exception);
4046     double getTimeTolerance() const throw(INTERP_KERNEL::Exception);
4047     void setIteration(int it) throw(INTERP_KERNEL::Exception);
4048     void setEndIteration(int it) throw(INTERP_KERNEL::Exception);
4049     void setOrder(int order) throw(INTERP_KERNEL::Exception);
4050     void setEndOrder(int order) throw(INTERP_KERNEL::Exception);
4051     void setTimeValue(double val) throw(INTERP_KERNEL::Exception);
4052     void setEndTimeValue(double val) throw(INTERP_KERNEL::Exception);
4053     void changeUnderlyingMesh(const MEDCouplingMesh *other, int levOfCheck, double precOnMesh, double eps=1e-15) throw(INTERP_KERNEL::Exception);
4054     void substractInPlaceDM(const MEDCouplingFieldDouble *f, int levOfCheck, double precOnMesh, double eps=1e-15) throw(INTERP_KERNEL::Exception);
4055     bool mergeNodes(double eps, double epsOnVals=1e-15) throw(INTERP_KERNEL::Exception);
4056     bool mergeNodesCenter(double eps, double epsOnVals=1e-15) throw(INTERP_KERNEL::Exception);
4057     bool zipCoords(double epsOnVals=1e-15) throw(INTERP_KERNEL::Exception);
4058     bool zipConnectivity(int compType,double epsOnVals=1e-15) throw(INTERP_KERNEL::Exception);
4059     bool simplexize(int policy) throw(INTERP_KERNEL::Exception);
4060     MEDCouplingFieldDouble *doublyContractedProduct() const throw(INTERP_KERNEL::Exception);
4061     MEDCouplingFieldDouble *determinant() const throw(INTERP_KERNEL::Exception);
4062     MEDCouplingFieldDouble *eigenValues() const throw(INTERP_KERNEL::Exception);
4063     MEDCouplingFieldDouble *eigenVectors() const throw(INTERP_KERNEL::Exception);
4064     MEDCouplingFieldDouble *inverse() const throw(INTERP_KERNEL::Exception);
4065     MEDCouplingFieldDouble *trace() const throw(INTERP_KERNEL::Exception);
4066     MEDCouplingFieldDouble *deviator() const throw(INTERP_KERNEL::Exception);
4067     MEDCouplingFieldDouble *magnitude() const throw(INTERP_KERNEL::Exception);
4068     MEDCouplingFieldDouble *maxPerTuple() const throw(INTERP_KERNEL::Exception);
4069     void changeNbOfComponents(int newNbOfComp, double dftValue=0.) throw(INTERP_KERNEL::Exception);
4070     void sortPerTuple(bool asc) throw(INTERP_KERNEL::Exception);
4071     MEDCouplingFieldDouble &operator=(double value) throw(INTERP_KERNEL::Exception);
4072     void fillFromAnalytic(int nbOfComp, const std::string& func) throw(INTERP_KERNEL::Exception);
4073     void fillFromAnalyticCompo(int nbOfComp, const std::string& func) throw(INTERP_KERNEL::Exception);
4074     void fillFromAnalyticNamedCompo(int nbOfComp, const std::vector<std::string>& varsOrder, const std::string& func) throw(INTERP_KERNEL::Exception);
4075     void applyFunc(int nbOfComp, const std::string& func) throw(INTERP_KERNEL::Exception);
4076     void applyFuncCompo(int nbOfComp, const std::string& func) throw(INTERP_KERNEL::Exception);
4077     void applyFuncNamedCompo(int nbOfComp, const std::vector<std::string>& varsOrder, const std::string& func) throw(INTERP_KERNEL::Exception);
4078     void applyFunc(int nbOfComp, double val) throw(INTERP_KERNEL::Exception);
4079     void applyFunc(const std::string& func) throw(INTERP_KERNEL::Exception);
4080     void applyFuncFast32(const std::string& func) throw(INTERP_KERNEL::Exception);
4081     void applyFuncFast64(const std::string& func) throw(INTERP_KERNEL::Exception);
4082     double accumulate(int compId) const throw(INTERP_KERNEL::Exception);
4083     double getMaxValue() const throw(INTERP_KERNEL::Exception);
4084     double getMinValue() const throw(INTERP_KERNEL::Exception);
4085     double getAverageValue() const throw(INTERP_KERNEL::Exception);
4086     double norm2() const throw(INTERP_KERNEL::Exception);
4087     double normMax() const throw(INTERP_KERNEL::Exception);
4088     //do not put a default value to isWAbs because confusion in python with overloaded getWeightedAverageValue method
4089     double getWeightedAverageValue(int compId, bool isWAbs) const throw(INTERP_KERNEL::Exception);
4090     double integral(int compId, bool isWAbs) const throw(INTERP_KERNEL::Exception);
4091     double normL1(int compId) const throw(INTERP_KERNEL::Exception);
4092     double normL2(int compId) const throw(INTERP_KERNEL::Exception);
4093     DataArrayInt *findIdsInRange(double vmin, double vmax) const throw(INTERP_KERNEL::Exception);
4094     MEDCouplingFieldDouble *buildSubPartRange(int begin, int end, int step) const throw(INTERP_KERNEL::Exception);
4095     static MEDCouplingFieldDouble *MergeFields(const MEDCouplingFieldDouble *f1, const MEDCouplingFieldDouble *f2) throw(INTERP_KERNEL::Exception);
4096     static MEDCouplingFieldDouble *MeldFields(const MEDCouplingFieldDouble *f1, const MEDCouplingFieldDouble *f2) throw(INTERP_KERNEL::Exception);
4097     static MEDCouplingFieldDouble *DotFields(const MEDCouplingFieldDouble *f1, const MEDCouplingFieldDouble *f2) throw(INTERP_KERNEL::Exception);
4098     MEDCouplingFieldDouble *dot(const MEDCouplingFieldDouble& other) const throw(INTERP_KERNEL::Exception);
4099     static MEDCouplingFieldDouble *CrossProductFields(const MEDCouplingFieldDouble *f1, const MEDCouplingFieldDouble *f2) throw(INTERP_KERNEL::Exception);
4100     MEDCouplingFieldDouble *crossProduct(const MEDCouplingFieldDouble& other) const throw(INTERP_KERNEL::Exception);
4101     static MEDCouplingFieldDouble *MaxFields(const MEDCouplingFieldDouble *f1, const MEDCouplingFieldDouble *f2) throw(INTERP_KERNEL::Exception);
4102     MEDCouplingFieldDouble *max(const MEDCouplingFieldDouble& other) const throw(INTERP_KERNEL::Exception);
4103     static MEDCouplingFieldDouble *MinFields(const MEDCouplingFieldDouble *f1, const MEDCouplingFieldDouble *f2) throw(INTERP_KERNEL::Exception);
4104     static MEDCouplingFieldDouble *AddFields(const MEDCouplingFieldDouble *f1, const MEDCouplingFieldDouble *f2) throw(INTERP_KERNEL::Exception);
4105     static MEDCouplingFieldDouble *SubstractFields(const MEDCouplingFieldDouble *f1, const MEDCouplingFieldDouble *f2) throw(INTERP_KERNEL::Exception);
4106     static MEDCouplingFieldDouble *MultiplyFields(const MEDCouplingFieldDouble *f1, const MEDCouplingFieldDouble *f2) throw(INTERP_KERNEL::Exception);
4107     static MEDCouplingFieldDouble *DivideFields(const MEDCouplingFieldDouble *f1, const MEDCouplingFieldDouble *f2) throw(INTERP_KERNEL::Exception);
4108     MEDCouplingFieldDouble *min(const MEDCouplingFieldDouble& other) const throw(INTERP_KERNEL::Exception);
4109     MEDCouplingFieldDouble *negate() const throw(INTERP_KERNEL::Exception);
4110     %extend {
4111       MEDCouplingFieldDouble(TypeOfField type, TypeOfTimeDiscretization td=ONE_TIME)
4112       {
4113         return MEDCouplingFieldDouble::New(type,td);
4114       }
4115
4116       MEDCouplingFieldDouble(const MEDCouplingFieldTemplate& ft, TypeOfTimeDiscretization td=ONE_TIME)
4117       {
4118         return MEDCouplingFieldDouble::New(ft,td);
4119       }
4120
4121       std::string __str__() const throw(INTERP_KERNEL::Exception)
4122       {
4123         return self->simpleRepr();
4124       }
4125
4126       std::string __repr__() const throw(INTERP_KERNEL::Exception)
4127       {
4128         std::ostringstream oss;
4129         self->reprQuickOverview(oss);
4130         return oss.str();
4131       }
4132       
4133       MEDCouplingFieldDouble *voronoize(double eps) const throw(INTERP_KERNEL::Exception)
4134       {
4135         MCAuto<MEDCouplingFieldDouble> ret(self->voronoize(eps));
4136         return ret.retn();
4137       }
4138
4139       MEDCouplingFieldDouble *convertQuadraticCellsToLinear() const throw(INTERP_KERNEL::Exception)
4140       {
4141         MCAuto<MEDCouplingFieldDouble> ret(self->convertQuadraticCellsToLinear());
4142         return ret.retn();
4143       }
4144       
4145       MEDCouplingFieldDouble *computeVectorFieldCyl(PyObject *center, PyObject *vector) const
4146       {
4147         const char msg[]="Python wrap of MEDCouplingFieldDouble::computeVectorFieldCyl : ";
4148         double val,val2;
4149         DataArrayDouble *a,*a2;
4150         DataArrayDoubleTuple *aa,*aa2;
4151         std::vector<double> bb,bb2;
4152         int sw;
4153         const double *centerPtr=convertObjToPossibleCpp5_Safe(center,sw,val,a,aa,bb,msg,1,3,true);
4154         const double *vectorPtr=convertObjToPossibleCpp5_Safe(vector,sw,val2,a2,aa2,bb2,msg,1,3,true);
4155         return self->computeVectorFieldCyl(centerPtr,vectorPtr);
4156       }
4157
4158       DataArrayDouble *getArray() throw(INTERP_KERNEL::Exception)
4159       {
4160         DataArrayDouble *ret=self->getArray();
4161         if(ret)
4162           ret->incrRef();
4163         return ret;
4164       }
4165
4166       PyObject *getArrays() const throw(INTERP_KERNEL::Exception)
4167       {
4168         std::vector<DataArrayDouble *> arrs=self->getArrays();
4169         for(std::vector<DataArrayDouble *>::iterator it=arrs.begin();it!=arrs.end();it++)
4170           if(*it)
4171             (*it)->incrRef();
4172         int sz=arrs.size();
4173         PyObject *ret=PyTuple_New(sz);
4174         for(int i=0;i<sz;i++)
4175           {
4176             if(arrs[i])
4177               PyTuple_SetItem(ret,i,SWIG_NewPointerObj(SWIG_as_voidptr(arrs[i]),SWIGTYPE_p_MEDCoupling__DataArrayDouble, SWIG_POINTER_OWN | 0 ));
4178             else
4179               PyTuple_SetItem(ret,i,SWIG_NewPointerObj(SWIG_as_voidptr(0),SWIGTYPE_p_MEDCoupling__DataArrayDouble, 0 | 0 ));
4180           }
4181         return ret;
4182       }
4183
4184       void setArrays(PyObject *ls) throw(INTERP_KERNEL::Exception)
4185       {
4186         std::vector<const DataArrayDouble *> tmp;
4187         convertFromPyObjVectorOfObj<const DataArrayDouble *>(ls,SWIGTYPE_p_MEDCoupling__DataArrayDouble,"DataArrayDouble",tmp);
4188         int sz=tmp.size();
4189         std::vector<DataArrayDouble *> arrs(sz);
4190         for(int i=0;i<sz;i++)
4191           arrs[i]=const_cast<DataArrayDouble *>(tmp[i]);
4192         self->setArrays(arrs);
4193       }
4194
4195       DataArrayDouble *getEndArray() throw(INTERP_KERNEL::Exception)
4196       {
4197         DataArrayDouble *ret=self->getEndArray();
4198         if(ret)
4199           ret->incrRef();
4200         return ret;
4201       }
4202
4203       PyObject *getValueOn(PyObject *sl) const throw(INTERP_KERNEL::Exception)
4204       {
4205         double val;
4206         DataArrayDouble *a;
4207         DataArrayDoubleTuple *aa;
4208         std::vector<double> bb;
4209         int sw;
4210         const MEDCouplingMesh *mesh=self->getMesh();
4211         if(!mesh)
4212           throw INTERP_KERNEL::Exception("Python wrap of MEDCouplingFieldDouble::getValueOn : no underlying mesh !");
4213         int spaceDim=mesh->getSpaceDimension();
4214         const char msg[]="Python wrap of MEDCouplingFieldDouble::getValueOn : ";
4215         const double *spaceLoc=convertObjToPossibleCpp5_Safe(sl,sw,val,a,aa,bb,msg,1,spaceDim,true);
4216         //
4217         int sz=self->getNumberOfComponents();
4218         INTERP_KERNEL::AutoPtr<double> res=new double[sz];
4219         self->getValueOn(spaceLoc,res);
4220         return convertDblArrToPyList<double>(res,sz);
4221       }
4222
4223        PyObject *getValueOnPos(int i, int j, int k) const throw(INTERP_KERNEL::Exception)
4224        {
4225          int sz=self->getNumberOfComponents();
4226          INTERP_KERNEL::AutoPtr<double> res=new double[sz];
4227          self->getValueOnPos(i,j,k,res);
4228          return convertDblArrToPyList<double>(res,sz);
4229        }
4230
4231       DataArrayDouble *getValueOnMulti(PyObject *locs) const throw(INTERP_KERNEL::Exception)
4232       {
4233         const MEDCouplingMesh *mesh(self->getMesh());
4234         if(!mesh)
4235           throw INTERP_KERNEL::Exception("Python wrap MEDCouplingFieldDouble::getValueOnMulti : lying on a null mesh !");
4236         //
4237         int sw,nbPts;
4238         double v0; MEDCoupling::DataArrayDouble *v1(0); MEDCoupling::DataArrayDoubleTuple *v2(0); std::vector<double> v3;
4239         const double *inp=convertObjToPossibleCpp5_Safe2(locs,sw,v0,v1,v2,v3,"wrap of MEDCouplingFieldDouble::getValueOnMulti",
4240                                                          mesh->getSpaceDimension(),true,nbPts);
4241         return self->getValueOnMulti(inp,nbPts);
4242       }
4243
4244       PyObject *getValueOn(PyObject *sl, double time) const throw(INTERP_KERNEL::Exception)
4245       {
4246         double val;
4247         DataArrayDouble *a;
4248         DataArrayDoubleTuple *aa;
4249         std::vector<double> bb;
4250         int sw;
4251         const MEDCouplingMesh *mesh=self->getMesh();
4252         if(!mesh)
4253           throw INTERP_KERNEL::Exception("Python wrap of MEDCouplingFieldDouble::getValueOn : no underlying mesh !");
4254         int spaceDim=mesh->getSpaceDimension();
4255         const char msg[]="Python wrap of MEDCouplingFieldDouble::getValueOn : ";
4256         const double *spaceLoc=convertObjToPossibleCpp5_Safe(sl,sw,val,a,aa,bb,msg,1,spaceDim,true);
4257         //
4258         //
4259         int sz=self->getNumberOfComponents();
4260         INTERP_KERNEL::AutoPtr<double> res=new double[sz];
4261         self->getValueOn(spaceLoc,time,res);
4262         return convertDblArrToPyList<double>(res,sz);
4263       }
4264
4265       void setValues(PyObject *li, PyObject *nbOfTuples=0, PyObject *nbOfComp=0) throw(INTERP_KERNEL::Exception)
4266       {
4267         if(self->getArray()!=0)
4268           MEDCoupling_DataArrayDouble_setValues__SWIG_0(self->getArray(),li,nbOfTuples,nbOfComp);
4269         else
4270           {
4271             MCAuto<DataArrayDouble> arr=DataArrayDouble::New();
4272             MEDCoupling_DataArrayDouble_setValues__SWIG_0(arr,li,nbOfTuples,nbOfComp);
4273             self->setArray(arr);
4274           }
4275       }
4276       
4277       PyObject *getTime() throw(INTERP_KERNEL::Exception)
4278       {
4279         int tmp1,tmp2;
4280         double tmp0=self->getTime(tmp1,tmp2);
4281         PyObject *res = PyList_New(3);
4282         PyList_SetItem(res,0,SWIG_From_double(tmp0));
4283         PyList_SetItem(res,1,SWIG_From_int(tmp1));
4284         PyList_SetItem(res,2,SWIG_From_int(tmp2));
4285         return res;
4286       }
4287
4288       PyObject *getStartTime() throw(INTERP_KERNEL::Exception)
4289       {
4290         int tmp1,tmp2;
4291         double tmp0=self->getStartTime(tmp1,tmp2);
4292         PyObject *res = PyList_New(3);
4293         PyList_SetItem(res,0,SWIG_From_double(tmp0));
4294         PyList_SetItem(res,1,SWIG_From_int(tmp1));
4295         PyList_SetItem(res,2,SWIG_From_int(tmp2));
4296         return res;
4297       }
4298
4299       PyObject *getEndTime() throw(INTERP_KERNEL::Exception)
4300       {
4301         int tmp1,tmp2;
4302         double tmp0=self->getEndTime(tmp1,tmp2);
4303         PyObject *res = PyList_New(3);
4304         PyList_SetItem(res,0,SWIG_From_double(tmp0));
4305         PyList_SetItem(res,1,SWIG_From_int(tmp1));
4306         PyList_SetItem(res,2,SWIG_From_int(tmp2));
4307         return res;
4308       }
4309       PyObject *accumulate() const throw(INTERP_KERNEL::Exception)
4310       {
4311         int sz=self->getNumberOfComponents();
4312         INTERP_KERNEL::AutoPtr<double> tmp=new double[sz];
4313         self->accumulate(tmp);
4314         return convertDblArrToPyList<double>(tmp,sz);
4315       }
4316       PyObject *integral(bool isWAbs) const throw(INTERP_KERNEL::Exception)
4317       {
4318         int sz=self->getNumberOfComponents();
4319         INTERP_KERNEL::AutoPtr<double> tmp=new double[sz];
4320         self->integral(isWAbs,tmp);
4321         return convertDblArrToPyList<double>(tmp,sz);
4322       }
4323       PyObject *getWeightedAverageValue(bool isWAbs=true) const throw(INTERP_KERNEL::Exception)
4324       {
4325         int sz=self->getNumberOfComponents();
4326         INTERP_KERNEL::AutoPtr<double> tmp=new double[sz];
4327         self->getWeightedAverageValue(tmp,isWAbs);
4328         return convertDblArrToPyList<double>(tmp,sz);
4329       }
4330       PyObject *normL1() const throw(INTERP_KERNEL::Exception)
4331       {
4332         int sz=self->getNumberOfComponents();
4333         INTERP_KERNEL::AutoPtr<double> tmp=new double[sz];
4334         self->normL1(tmp);
4335         return convertDblArrToPyList<double>(tmp,sz);
4336       }
4337       PyObject *normL2() const throw(INTERP_KERNEL::Exception)
4338       {
4339         int sz=self->getNumberOfComponents();
4340         INTERP_KERNEL::AutoPtr<double> tmp=new double[sz];
4341         self->normL2(tmp);
4342         return convertDblArrToPyList<double>(tmp,sz);
4343       }
4344       void renumberCells(PyObject *li, bool check=true) throw(INTERP_KERNEL::Exception)
4345       {
4346         int szArr,sw,iTypppArr;
4347         std::vector<int> stdvecTyyppArr;
4348         const int *tmp=convertIntStarLikePyObjToCppIntStar(li,sw,szArr,iTypppArr,stdvecTyyppArr);
4349         self->renumberCells(tmp,check);
4350       }
4351       
4352       void renumberCellsWithoutMesh(PyObject *li, bool check=true) throw(INTERP_KERNEL::Exception)
4353       {
4354         int szArr,sw,iTypppArr;
4355         std::vector<int> stdvecTyyppArr;
4356         const int *tmp=convertIntStarLikePyObjToCppIntStar(li,sw,szArr,iTypppArr,stdvecTyyppArr);
4357         self->renumberCellsWithoutMesh(tmp,check);
4358       }
4359       
4360       void renumberNodes(PyObject *li, double eps=1e-15) throw(INTERP_KERNEL::Exception)
4361       {
4362         int szArr,sw,iTypppArr;
4363         std::vector<int> stdvecTyyppArr;
4364         const int *tmp=convertIntStarLikePyObjToCppIntStar(li,sw,szArr,iTypppArr,stdvecTyyppArr);
4365         self->renumberNodes(tmp,eps);
4366       }
4367
4368       void renumberNodesWithoutMesh(PyObject *li, int newNbOfNodes, double eps=1e-15) throw(INTERP_KERNEL::Exception)
4369       {
4370         int szArr,sw,iTypppArr;
4371         std::vector<int> stdvecTyyppArr;
4372         const int *tmp=convertIntStarLikePyObjToCppIntStar(li,sw,szArr,iTypppArr,stdvecTyyppArr);
4373         self->renumberNodesWithoutMesh(tmp,newNbOfNodes,eps);
4374       }
4375
4376       MEDCouplingFieldDouble *buildSubPart(PyObject *li) const throw(INTERP_KERNEL::Exception)
4377       {
4378         return fieldT_buildSubPart(self,li);
4379       }
4380
4381       MEDCouplingFieldDouble *__getitem__(PyObject *li) const throw(INTERP_KERNEL::Exception)
4382       {
4383         return fieldT__getitem__(self,li);
4384       }
4385
4386       PyObject *getMaxValue2() const throw(INTERP_KERNEL::Exception)
4387       {
4388         DataArrayInt *tmp;
4389         double r1=self->getMaxValue2(tmp);
4390         PyObject *ret=PyTuple_New(2);
4391         PyTuple_SetItem(ret,0,PyFloat_FromDouble(r1));
4392         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(tmp),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
4393         return ret;
4394       }
4395       
4396       PyObject *getMinValue2() const throw(INTERP_KERNEL::Exception)
4397       {
4398         DataArrayInt *tmp;
4399         double r1=self->getMinValue2(tmp);
4400         PyObject *ret=PyTuple_New(2);
4401         PyTuple_SetItem(ret,0,PyFloat_FromDouble(r1));
4402         PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(tmp),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
4403         return ret;
4404       }
4405       
4406       MEDCouplingFieldDouble *keepSelectedComponents(PyObject *li) const throw(INTERP_KERNEL::Exception)
4407       {
4408         std::vector<int> tmp;
4409         convertPyToNewIntArr3(li,tmp);
4410         return self->keepSelectedComponents(tmp);
4411       }
4412
4413       void setSelectedComponents(const MEDCouplingFieldDouble *f, PyObject *li) throw(INTERP_KERNEL::Exception)
4414       {
4415         std::vector<int> tmp;
4416         convertPyToNewIntArr3(li,tmp);
4417         self->setSelectedComponents(f,tmp);
4418       }
4419
4420       MEDCouplingFieldDouble *extractSlice3D(PyObject *origin, PyObject *vec, double eps) const throw(INTERP_KERNEL::Exception)
4421       {
4422         double val,val2;
4423         DataArrayDouble *a,*a2;
4424         DataArrayDoubleTuple *aa,*aa2;
4425         std::vector<double> bb,bb2;
4426         int sw;
4427         int spaceDim=3;
4428         const char msg[]="Python wrap of MEDCouplingFieldDouble::extractSlice3D : 1st paramater for origin.";
4429         const char msg2[]="Python wrap of MEDCouplingFieldDouble::extractSlice3D : 2nd paramater for vector.";
4430         const double *orig=convertObjToPossibleCpp5_Safe(origin,sw,val,a,aa,bb,msg,1,spaceDim,true);
4431         const double *vect=convertObjToPossibleCpp5_Safe(vec,sw,val2,a2,aa2,bb2,msg2,1,spaceDim,true);
4432         //
4433         return self->extractSlice3D(orig,vect,eps);
4434       }
4435
4436       MEDCouplingFieldDouble *__add__(PyObject *obj) throw(INTERP_KERNEL::Exception)
4437       {
4438         return MEDCoupling_MEDCouplingFieldDouble___add__Impl(self,obj);
4439       }
4440
4441       MEDCouplingFieldDouble *__radd__(PyObject *obj) throw(INTERP_KERNEL::Exception)
4442       {
4443         return MEDCoupling_MEDCouplingFieldDouble___radd__Impl(self,obj);
4444       }
4445
4446       MEDCouplingFieldDouble *__sub__(PyObject *obj) throw(INTERP_KERNEL::Exception)
4447       {
4448         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.";
4449         const char msg2[]="in MEDCouplingFieldDouble.__sub__ : self field has no Array of values set !";
4450         void *argp;
4451         //
4452         if(SWIG_IsOK(SWIG_ConvertPtr(obj,&argp,SWIGTYPE_p_MEDCoupling__MEDCouplingFieldDouble,0|0)))
4453           {
4454             MEDCouplingFieldDouble *other=reinterpret_cast< MEDCoupling::MEDCouplingFieldDouble * >(argp);
4455             if(other)
4456               return (*self)-(*other);
4457             else
4458               throw INTERP_KERNEL::Exception(msg);
4459           }
4460         //
4461         double val;
4462         DataArrayDouble *a;
4463         DataArrayDoubleTuple *aa;
4464         std::vector<double> bb;
4465         int sw;
4466         convertDoubleStarLikePyObjToCpp_2(obj,sw,val,a,aa,bb);
4467         switch(sw)
4468           {
4469           case 1:
4470             {
4471               if(!self->getArray())
4472                 throw INTERP_KERNEL::Exception(msg2);
4473               MCAuto<DataArrayDouble> ret=self->getArray()->deepCopy();
4474               ret->applyLin(1.,-val);
4475               MCAuto<MEDCouplingFieldDouble> ret2=self->clone(false);
4476               ret2->setArray(ret);
4477               return ret2.retn();
4478             }
4479           case 2:
4480             {
4481               if(!self->getArray())
4482                 throw INTERP_KERNEL::Exception(msg2);
4483               MCAuto<DataArrayDouble> ret=DataArrayDouble::Substract(self->getArray(),a);
4484               MCAuto<MEDCouplingFieldDouble> ret2=self->clone(false);
4485               ret2->setArray(ret);
4486               return ret2.retn();
4487             }
4488           case 3:
4489             {
4490               if(!self->getArray())
4491                 throw INTERP_KERNEL::Exception(msg2);
4492               MCAuto<DataArrayDouble> aaa=aa->buildDADouble(1,self->getNumberOfComponents());
4493               MCAuto<DataArrayDouble> ret=DataArrayDouble::Substract(self->getArray(),aaa);
4494               MCAuto<MEDCouplingFieldDouble> ret2=self->clone(false);
4495               ret2->setArray(ret);
4496               return ret2.retn();
4497             }
4498           case 4:
4499             {
4500               if(!self->getArray())
4501                 throw INTERP_KERNEL::Exception(msg2);
4502               MCAuto<DataArrayDouble> aaa=DataArrayDouble::New(); aaa->useArray(&bb[0],false,CPP_DEALLOC,1,(int)bb.size());
4503               MCAuto<DataArrayDouble> ret=DataArrayDouble::Substract(self->getArray(),aaa);
4504               MCAuto<MEDCouplingFieldDouble> ret2=self->clone(false);
4505               ret2->setArray(ret);
4506               return ret2.retn();
4507             }
4508           default:
4509             { throw INTERP_KERNEL::Exception(msg); }
4510           }
4511       }
4512
4513       MEDCouplingFieldDouble *__rsub__(PyObject *obj) throw(INTERP_KERNEL::Exception)
4514       {
4515         return MEDCoupling_MEDCouplingFieldDouble___rsub__Impl(self,obj);
4516       }
4517
4518       MEDCouplingFieldDouble *__mul__(PyObject *obj) throw(INTERP_KERNEL::Exception)
4519       {
4520         return MEDCoupling_MEDCouplingFieldDouble___mul__Impl(self,obj);
4521       }
4522
4523       MEDCouplingFieldDouble *__rmul__(PyObject *obj) throw(INTERP_KERNEL::Exception)
4524       {
4525         return MEDCoupling_MEDCouplingFieldDouble___rmul__Impl(self,obj);
4526       }
4527
4528       MEDCouplingFieldDouble *__div__(PyObject *obj) throw(INTERP_KERNEL::Exception)
4529       {
4530         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.";
4531         const char msg2[]="in MEDCouplingFieldDouble.__div__ : self field has no Array of values set !";
4532         void *argp;
4533         //
4534         if(SWIG_IsOK(SWIG_ConvertPtr(obj,&argp,SWIGTYPE_p_MEDCoupling__MEDCouplingFieldDouble,0|0)))
4535           {
4536             MEDCouplingFieldDouble *other=reinterpret_cast< MEDCoupling::MEDCouplingFieldDouble * >(argp);
4537             if(other)
4538               return (*self)/(*other);
4539             else
4540               throw INTERP_KERNEL::Exception(msg);
4541           }
4542         //
4543         double val;
4544         DataArrayDouble *a;
4545         DataArrayDoubleTuple *aa;
4546         std::vector<double> bb;
4547         int sw;
4548         convertDoubleStarLikePyObjToCpp_2(obj,sw,val,a,aa,bb);
4549         switch(sw)
4550           {
4551           case 1:
4552             {
4553               if(val==0.)
4554                 throw INTERP_KERNEL::Exception("MEDCouplingFieldDouble.__div__ : trying to divide by zero !");
4555               if(!self->getArray())
4556                 throw INTERP_KERNEL::Exception(msg2);
4557               MCAuto<DataArrayDouble> ret=self->getArray()->deepCopy();
4558               ret->applyLin(1./val,0);
4559               MCAuto<MEDCouplingFieldDouble> ret2=self->clone(false);
4560               ret2->setArray(ret);
4561               return ret2.retn();
4562             }
4563           case 2:
4564             {
4565               if(!self->getArray())
4566                 throw INTERP_KERNEL::Exception(msg2);
4567               MCAuto<DataArrayDouble> ret=DataArrayDouble::Divide(self->getArray(),a);
4568               MCAuto<MEDCouplingFieldDouble> ret2=self->clone(false);
4569               ret2->setArray(ret);
4570               return ret2.retn();
4571             }
4572           case 3:
4573             {
4574               if(!self->getArray())
4575                 throw INTERP_KERNEL::Exception(msg2);
4576               MCAuto<DataArrayDouble> aaa=aa->buildDADouble(1,self->getNumberOfComponents());
4577               MCAuto<DataArrayDouble> ret=DataArrayDouble::Divide(self->getArray(),aaa);
4578               MCAuto<MEDCouplingFieldDouble> ret2=self->clone(false);
4579               ret2->setArray(ret);
4580               return ret2.retn();
4581             }
4582           case 4:
4583             {
4584               if(!self->getArray())
4585                 throw INTERP_KERNEL::Exception(msg2);
4586               MCAuto<DataArrayDouble> aaa=DataArrayDouble::New(); aaa->useArray(&bb[0],false,CPP_DEALLOC,1,(int)bb.size());
4587               MCAuto<DataArrayDouble> ret=DataArrayDouble::Divide(self->getArray(),aaa);
4588               MCAuto<MEDCouplingFieldDouble> ret2=self->clone(false);
4589               ret2->setArray(ret);
4590               return ret2.retn();
4591             }
4592           default:
4593             { throw INTERP_KERNEL::Exception(msg); }
4594           }
4595       }
4596
4597       MEDCouplingFieldDouble *__rdiv__(PyObject *obj) throw(INTERP_KERNEL::Exception)
4598       {
4599         return MEDCoupling_MEDCouplingFieldDouble___rdiv__Impl(self,obj);
4600       }
4601
4602       MEDCouplingFieldDouble *__pow__(PyObject *obj) throw(INTERP_KERNEL::Exception)
4603       {
4604         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.";
4605         const char msg2[]="in MEDCouplingFieldDouble.__pow__ : self field has no Array of values set !";
4606         void *argp;
4607         //
4608         if(SWIG_IsOK(SWIG_ConvertPtr(obj,&argp,SWIGTYPE_p_MEDCoupling__MEDCouplingFieldDouble,0|0)))
4609           {
4610             MEDCouplingFieldDouble *other=reinterpret_cast< MEDCoupling::MEDCouplingFieldDouble * >(argp);
4611             if(other)
4612               return (*self)^(*other);
4613             else
4614               throw INTERP_KERNEL::Exception(msg);
4615           }
4616         //
4617         double val;
4618         DataArrayDouble *a;
4619         DataArrayDoubleTuple *aa;
4620         std::vector<double> bb;
4621         int sw;
4622         convertDoubleStarLikePyObjToCpp_2(obj,sw,val,a,aa,bb);
4623         switch(sw)
4624           {
4625           case 1:
4626             {
4627               if(!self->getArray())
4628                 throw INTERP_KERNEL::Exception(msg2);
4629               MCAuto<DataArrayDouble> ret=self->getArray()->deepCopy();
4630               ret->applyPow(val);
4631               MCAuto<MEDCouplingFieldDouble> ret2=self->clone(false);
4632               ret2->setArray(ret);
4633               return ret2.retn();
4634             }
4635           case 2:
4636             {
4637               if(!self->getArray())
4638                 throw INTERP_KERNEL::Exception(msg2);
4639               MCAuto<DataArrayDouble> ret=DataArrayDouble::Pow(self->getArray(),a);
4640               MCAuto<MEDCouplingFieldDouble> ret2=self->clone(false);
4641               ret2->setArray(ret);
4642               return ret2.retn();
4643             }
4644           case 3:
4645             {
4646               if(!self->getArray())
4647                 throw INTERP_KERNEL::Exception(msg2);
4648               MCAuto<DataArrayDouble> aaa=aa->buildDADouble(1,self->getNumberOfComponents());
4649               MCAuto<DataArrayDouble> ret=DataArrayDouble::Pow(self->getArray(),aaa);
4650               MCAuto<MEDCouplingFieldDouble> ret2=self->clone(false);
4651               ret2->setArray(ret);
4652               return ret2.retn();
4653             }
4654           case 4:
4655             {
4656               if(!self->getArray())
4657                 throw INTERP_KERNEL::Exception(msg2);
4658               MCAuto<DataArrayDouble> aaa=DataArrayDouble::New(); aaa->useArray(&bb[0],false,CPP_DEALLOC,1,(int)bb.size());
4659               MCAuto<DataArrayDouble> ret=DataArrayDouble::Pow(self->getArray(),aaa);
4660               MCAuto<MEDCouplingFieldDouble> ret2=self->clone(false);
4661               ret2->setArray(ret);
4662               return ret2.retn();
4663             }
4664           default:
4665             { throw INTERP_KERNEL::Exception(msg); }
4666           }
4667       }
4668
4669       MEDCouplingFieldDouble *__neg__() const throw(INTERP_KERNEL::Exception)
4670       {
4671         return self->negate();
4672       }
4673
4674       PyObject *___iadd___(PyObject *trueSelf, PyObject *obj) throw(INTERP_KERNEL::Exception)
4675       {
4676         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.";
4677         const char msg2[]="in MEDCouplingFieldDouble.__iadd__ : self field has no Array of values set !";
4678         void *argp;
4679         //
4680         if(SWIG_IsOK(SWIG_ConvertPtr(obj,&argp,SWIGTYPE_p_MEDCoupling__MEDCouplingFieldDouble,0|0)))
4681           {
4682             MEDCouplingFieldDouble *other=reinterpret_cast< MEDCoupling::MEDCouplingFieldDouble * >(argp);
4683             if(other)
4684               {
4685                 *self+=*other;
4686                 Py_XINCREF(trueSelf);
4687                 return trueSelf;
4688               }
4689             else
4690               throw INTERP_KERNEL::Exception(msg);
4691           }
4692         //
4693         double val;
4694         DataArrayDouble *a;
4695         DataArrayDoubleTuple *aa;
4696         std::vector<double> bb;
4697         int sw;
4698         convertDoubleStarLikePyObjToCpp_2(obj,sw,val,a,aa,bb);
4699         switch(sw)
4700           {
4701           case 1:
4702             {
4703               if(!self->getArray())
4704                 throw INTERP_KERNEL::Exception(msg2);
4705               self->getArray()->applyLin(1.,val);
4706               Py_XINCREF(trueSelf);
4707               return trueSelf;
4708             }
4709           case 2:
4710             {
4711               MCAuto<MEDCouplingFieldDouble> ret2=self->clone(false);
4712               ret2->setArray(a);
4713               *self+=*ret2;
4714               Py_XINCREF(trueSelf);
4715               return trueSelf;
4716             }
4717           case 3:
4718             {
4719               MCAuto<DataArrayDouble> aaa=aa->buildDADouble(1,self->getNumberOfComponents());
4720               MCAuto<MEDCouplingFieldDouble> ret2=self->clone(false);
4721               ret2->setArray(aaa);
4722               *self+=*ret2;
4723               Py_XINCREF(trueSelf);
4724               return trueSelf;
4725             }
4726           case 4:
4727             {
4728               if(!self->getArray())
4729                 throw INTERP_KERNEL::Exception(msg2);
4730               MCAuto<DataArrayDouble> aaa=DataArrayDouble::New(); aaa->useArray(&bb[0],false,CPP_DEALLOC,1,(int)bb.size());
4731               self->getArray()->addEqual(aaa);
4732               Py_XINCREF(trueSelf);
4733               return trueSelf;
4734             }
4735           default:
4736             { throw INTERP_KERNEL::Exception(msg); }
4737           }
4738       }
4739
4740       PyObject *___isub___(PyObject *trueSelf, PyObject *obj) throw(INTERP_KERNEL::Exception)
4741       {
4742         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.";
4743         const char msg2[]="in MEDCouplingFieldDouble.__isub__ : self field has no Array of values set !";
4744         void *argp;
4745         //
4746         if(SWIG_IsOK(SWIG_ConvertPtr(obj,&argp,SWIGTYPE_p_MEDCoupling__MEDCouplingFieldDouble,0|0)))
4747           {
4748             MEDCouplingFieldDouble *other=reinterpret_cast< MEDCoupling::MEDCouplingFieldDouble * >(argp);
4749             if(other)
4750               {
4751                 *self-=*other;
4752                 Py_XINCREF(trueSelf);
4753                 return trueSelf;
4754               }
4755             else
4756               throw INTERP_KERNEL::Exception(msg);
4757           }
4758         //
4759         double val;
4760         DataArrayDouble *a;
4761         DataArrayDoubleTuple *aa;
4762         std::vector<double> bb;
4763         int sw;
4764         convertDoubleStarLikePyObjToCpp_2(obj,sw,val,a,aa,bb);
4765         switch(sw)
4766           {
4767           case 1:
4768             {
4769               if(!self->getArray())
4770                 throw INTERP_KERNEL::Exception(msg2);
4771               self->getArray()->applyLin(1.,-val);
4772               Py_XINCREF(trueSelf);
4773               return trueSelf;
4774             }
4775           case 2:
4776             {
4777               MCAuto<MEDCouplingFieldDouble> ret2=self->clone(false);
4778               ret2->setArray(a);
4779               *self-=*ret2;
4780               Py_XINCREF(trueSelf);
4781               return trueSelf;
4782             }
4783           case 3:
4784             {
4785               MCAuto<DataArrayDouble> aaa=aa->buildDADouble(1,self->getNumberOfComponents());
4786               MCAuto<MEDCouplingFieldDouble> ret2=self->clone(false);
4787               ret2->setArray(aaa);
4788               *self-=*ret2;
4789               Py_XINCREF(trueSelf);
4790               return trueSelf;
4791             }
4792           case 4:
4793             {
4794               if(!self->getArray())
4795                 throw INTERP_KERNEL::Exception(msg2);
4796               MCAuto<DataArrayDouble> aaa=DataArrayDouble::New(); aaa->useArray(&bb[0],false,CPP_DEALLOC,1,(int)bb.size());
4797               self->getArray()->substractEqual(aaa);
4798               Py_XINCREF(trueSelf);
4799               return trueSelf;
4800             }
4801           default:
4802             { throw INTERP_KERNEL::Exception(msg); }
4803           }
4804       }
4805
4806       PyObject *___imul___(PyObject *trueSelf, PyObject *obj) throw(INTERP_KERNEL::Exception)
4807       {
4808         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.";
4809         const char msg2[]="in MEDCouplingFieldDouble.__imul__ : self field has no Array of values set !";
4810         void *argp;
4811         //
4812         if(SWIG_IsOK(SWIG_ConvertPtr(obj,&argp,SWIGTYPE_p_MEDCoupling__MEDCouplingFieldDouble,0|0)))
4813           {
4814             MEDCouplingFieldDouble *other=reinterpret_cast< MEDCoupling::MEDCouplingFieldDouble * >(argp);
4815             if(other)
4816               {
4817                 *self*=*other;
4818                 Py_XINCREF(trueSelf);
4819                 return trueSelf;
4820               }
4821             else
4822               throw INTERP_KERNEL::Exception(msg);
4823           }
4824         //
4825         double val;
4826         DataArrayDouble *a;
4827         DataArrayDoubleTuple *aa;
4828         std::vector<double> bb;
4829         int sw;
4830         convertDoubleStarLikePyObjToCpp_2(obj,sw,val,a,aa,bb);
4831         switch(sw)
4832           {
4833           case 1:
4834             {
4835               if(!self->getArray())
4836                 throw INTERP_KERNEL::Exception(msg2);
4837               self->getArray()->applyLin(val,0);
4838               Py_XINCREF(trueSelf);
4839               return trueSelf;
4840             }
4841           case 2:
4842             {
4843               MCAuto<MEDCouplingFieldDouble> ret2=self->clone(false);
4844               ret2->setArray(a);
4845               *self*=*ret2;
4846               Py_XINCREF(trueSelf);
4847               return trueSelf;
4848             }
4849           case 3:
4850             {
4851               MCAuto<DataArrayDouble> aaa=aa->buildDADouble(1,self->getNumberOfComponents());
4852               MCAuto<MEDCouplingFieldDouble> ret2=self->clone(false);
4853               ret2->setArray(aaa);
4854               *self*=*ret2;
4855               Py_XINCREF(trueSelf);
4856               return trueSelf;
4857             }
4858           case 4:
4859             {
4860               if(!self->getArray())
4861                 throw INTERP_KERNEL::Exception(msg2);
4862               MCAuto<DataArrayDouble> aaa=DataArrayDouble::New(); aaa->useArray(&bb[0],false,CPP_DEALLOC,1,(int)bb.size());
4863               self->getArray()->multiplyEqual(aaa);
4864               Py_XINCREF(trueSelf);
4865               return trueSelf;
4866             }
4867           default:
4868             { throw INTERP_KERNEL::Exception(msg); }
4869           }
4870       }
4871
4872       PyObject *___idiv___(PyObject *trueSelf, PyObject *obj) throw(INTERP_KERNEL::Exception)
4873       {
4874         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.";
4875         const char msg2[]="in MEDCouplingFieldDouble.__idiv__ : self field has no Array of values set !";
4876         void *argp;
4877         //
4878         if(SWIG_IsOK(SWIG_ConvertPtr(obj,&argp,SWIGTYPE_p_MEDCoupling__MEDCouplingFieldDouble,0|0)))
4879           {
4880             MEDCouplingFieldDouble *other=reinterpret_cast< MEDCoupling::MEDCouplingFieldDouble * >(argp);
4881             if(other)
4882               {
4883                 *self/=*other;
4884                 Py_XINCREF(trueSelf);
4885                 return trueSelf;
4886               }
4887             else
4888               throw INTERP_KERNEL::Exception(msg);
4889           }
4890         //
4891         double val;
4892         DataArrayDouble *a;
4893         DataArrayDoubleTuple *aa;
4894         std::vector<double> bb;
4895         int sw;
4896         convertDoubleStarLikePyObjToCpp_2(obj,sw,val,a,aa,bb);
4897         switch(sw)
4898           {
4899           case 1:
4900             {
4901               if(val==0.)
4902                 throw INTERP_KERNEL::Exception("MEDCouplingFieldDouble.__idiv__ : trying to divide by zero !");
4903               if(!self->getArray())
4904                 throw INTERP_KERNEL::Exception(msg2);
4905               self->getArray()->applyLin(1./val,0);
4906               Py_XINCREF(trueSelf);
4907               return trueSelf;
4908             }
4909           case 2:
4910             {
4911               MCAuto<MEDCouplingFieldDouble> ret2=self->clone(false);
4912               ret2->setArray(a);
4913               *self/=*ret2;
4914               Py_XINCREF(trueSelf);
4915               return trueSelf;
4916             }
4917           case 3:
4918             {
4919               MCAuto<DataArrayDouble> aaa=aa->buildDADouble(1,self->getNumberOfComponents());
4920               MCAuto<MEDCouplingFieldDouble> ret2=self->clone(false);
4921               ret2->setArray(aaa);
4922               *self/=*ret2;
4923               Py_XINCREF(trueSelf);
4924               return trueSelf;
4925             }
4926           case 4:
4927             {
4928               if(!self->getArray())
4929                 throw INTERP_KERNEL::Exception(msg2);
4930               MCAuto<DataArrayDouble> aaa=DataArrayDouble::New(); aaa->useArray(&bb[0],false,CPP_DEALLOC,1,(int)bb.size());
4931               self->getArray()->divideEqual(aaa);
4932               Py_XINCREF(trueSelf);
4933               return trueSelf;
4934             }
4935           default:
4936             { throw INTERP_KERNEL::Exception(msg); }
4937           }
4938       }
4939
4940       PyObject *___ipow___(PyObject *trueSelf, PyObject *obj) throw(INTERP_KERNEL::Exception)
4941       {
4942         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.";
4943         const char msg2[]="in MEDCouplingFieldDouble.__ipow__ : self field has no Array of values set !";
4944         void *argp;
4945         //
4946         if(SWIG_IsOK(SWIG_ConvertPtr(obj,&argp,SWIGTYPE_p_MEDCoupling__MEDCouplingFieldDouble,0|0)))
4947           {
4948             MEDCouplingFieldDouble *other=reinterpret_cast< MEDCoupling::MEDCouplingFieldDouble * >(argp);
4949             if(other)
4950               {
4951                 *self^=*other;
4952                 Py_XINCREF(trueSelf);
4953                 return trueSelf;
4954               }
4955             else
4956               throw INTERP_KERNEL::Exception(msg);
4957           }
4958         //
4959         double val;
4960         DataArrayDouble *a;
4961         DataArrayDoubleTuple *aa;
4962         std::vector<double> bb;
4963         int sw;
4964         convertDoubleStarLikePyObjToCpp_2(obj,sw,val,a,aa,bb);
4965         switch(sw)
4966           {
4967           case 1:
4968             {
4969               if(!self->getArray())
4970                 throw INTERP_KERNEL::Exception(msg2);
4971               self->getArray()->applyPow(val);
4972               Py_XINCREF(trueSelf);
4973               return trueSelf;
4974             }
4975           case 2:
4976             {
4977               MCAuto<MEDCouplingFieldDouble> ret2=self->clone(false);
4978               ret2->setArray(a);
4979               *self^=*ret2;
4980               Py_XINCREF(trueSelf);
4981               return trueSelf;
4982             }
4983           case 3:
4984             {
4985               MCAuto<DataArrayDouble> aaa=aa->buildDADouble(1,self->getNumberOfComponents());
4986               MCAuto<MEDCouplingFieldDouble> ret2=self->clone(false);
4987               ret2->setArray(aaa);
4988               *self^=*ret2;
4989               Py_XINCREF(trueSelf);
4990               return trueSelf;
4991             }
4992           case 4:
4993             {
4994               if(!self->getArray())
4995                 throw INTERP_KERNEL::Exception(msg2);
4996               MCAuto<DataArrayDouble> aaa=DataArrayDouble::New(); aaa->useArray(&bb[0],false,CPP_DEALLOC,1,(int)bb.size());
4997               self->getArray()->powEqual(aaa);
4998               Py_XINCREF(trueSelf);
4999               return trueSelf;
5000             }
5001           default:
5002             { throw INTERP_KERNEL::Exception(msg); }
5003           }
5004       }
5005
5006       static MEDCouplingFieldDouble *MergeFields(PyObject *li) throw(INTERP_KERNEL::Exception)
5007       {
5008         std::vector<const MEDCouplingFieldDouble *> tmp;
5009         convertFromPyObjVectorOfObj<const MEDCoupling::MEDCouplingFieldDouble *>(li,SWIGTYPE_p_MEDCoupling__MEDCouplingFieldDouble,"MEDCouplingFieldDouble",tmp);
5010         return MEDCouplingFieldDouble::MergeFields(tmp);
5011       }
5012
5013       static std::string WriteVTK(const char *fileName, PyObject *li, bool isBinary=true) throw(INTERP_KERNEL::Exception)
5014       {
5015         std::vector<const MEDCouplingFieldDouble *> tmp;
5016         convertFromPyObjVectorOfObj<const MEDCoupling::MEDCouplingFieldDouble *>(li,SWIGTYPE_p_MEDCoupling__MEDCouplingFieldDouble,"MEDCouplingFieldDouble",tmp);
5017         return MEDCouplingFieldDouble::WriteVTK(fileName,tmp,isBinary);
5018       }
5019
5020       PyObject *getTinySerializationInformation() const throw(INTERP_KERNEL::Exception)
5021       {
5022         return field_getTinySerializationInformation<MEDCouplingFieldDouble>(self);
5023       }
5024       
5025       PyObject *serialize() const throw(INTERP_KERNEL::Exception)
5026       {
5027         return field_serialize<double>(self);
5028       }
5029
5030       static PyObject *___new___(PyObject *cls, PyObject *args) throw(INTERP_KERNEL::Exception)
5031       {
5032         return NewMethWrapCallInitOnlyIfDictWithSingleEltInInputGeneral<SinglePyObjExpectToBeAListOfSz2>(cls,args,"MEDCouplingFieldDouble");
5033       }
5034
5035       PyObject *__getnewargs__() throw(INTERP_KERNEL::Exception)
5036       {// put an empty dict in input to say to __new__ to call __init__...
5037         return field__getnewargs__<MEDCouplingFieldDouble>(self);
5038       }
5039
5040       PyObject *__getstate__() const throw(INTERP_KERNEL::Exception)
5041       {
5042         return field__getstate__<MEDCouplingFieldDouble>(self,MEDCoupling_MEDCouplingFieldDouble_getTinySerializationInformation,MEDCoupling_MEDCouplingFieldDouble_serialize);
5043       }
5044       
5045       void __setstate__(PyObject *inp) throw(INTERP_KERNEL::Exception)
5046       {
5047         field__setstate__<double>(self,inp);
5048       }
5049     }
5050   };
5051
5052   class MEDCouplingMultiFields : public RefCountObject, public TimeLabel
5053   {
5054   public:
5055     int getNumberOfFields() const;
5056     MEDCouplingMultiFields *deepCopy() const;
5057     virtual std::string simpleRepr() const throw(INTERP_KERNEL::Exception);
5058     virtual std::string advancedRepr() const throw(INTERP_KERNEL::Exception);
5059     virtual bool isEqual(const MEDCouplingMultiFields *other, double meshPrec, double valsPrec) const;
5060     virtual bool isEqualWithoutConsideringStr(const MEDCouplingMultiFields *other, double meshPrec, double valsPrec) const;
5061     virtual void checkConsistencyLight() const throw(INTERP_KERNEL::Exception);
5062     %extend
5063        {
5064          std::string __str__() const throw(INTERP_KERNEL::Exception)
5065          {
5066            return self->simpleRepr();
5067          }
5068          static MEDCouplingMultiFields *New(PyObject *li) throw(INTERP_KERNEL::Exception)
5069          {
5070            std::vector<const MEDCoupling::MEDCouplingFieldDouble *> tmp;
5071            convertFromPyObjVectorOfObj<const MEDCoupling::MEDCouplingFieldDouble *>(li,SWIGTYPE_p_MEDCoupling__MEDCouplingFieldDouble,"MEDCouplingFieldDouble",tmp);
5072            int sz=tmp.size();
5073            std::vector<MEDCouplingFieldDouble *> fs(sz);
5074            for(int i=0;i<sz;i++)
5075              fs[i]=const_cast<MEDCouplingFieldDouble *>(tmp[i]);
5076            return MEDCouplingMultiFields::New(fs);
5077          }
5078          MEDCouplingMultiFields(PyObject *li) throw(INTERP_KERNEL::Exception)
5079          {
5080            std::vector<const MEDCoupling::MEDCouplingFieldDouble *> tmp;
5081            convertFromPyObjVectorOfObj<const MEDCoupling::MEDCouplingFieldDouble *>(li,SWIGTYPE_p_MEDCoupling__MEDCouplingFieldDouble,"MEDCouplingFieldDouble",tmp);
5082            int sz=tmp.size();
5083            std::vector<MEDCouplingFieldDouble *> fs(sz);
5084            for(int i=0;i<sz;i++)
5085              fs[i]=const_cast<MEDCouplingFieldDouble *>(tmp[i]);
5086            return MEDCouplingMultiFields::New(fs);
5087          }
5088          PyObject *getFields() const
5089          {
5090            std::vector<const MEDCouplingFieldDouble *> fields=self->getFields();
5091            int sz=fields.size();
5092            PyObject *res = PyList_New(sz);
5093            for(int i=0;i<sz;i++)
5094              {
5095                if(fields[i])
5096                  {
5097                    fields[i]->incrRef();
5098                    PyList_SetItem(res,i,SWIG_NewPointerObj(SWIG_as_voidptr(fields[i]),SWIGTYPE_p_MEDCoupling__MEDCouplingFieldDouble, SWIG_POINTER_OWN | 0 ));
5099                  }
5100                else
5101                  {
5102                    PyList_SetItem(res,i,SWIG_NewPointerObj(SWIG_as_voidptr(0),SWIGTYPE_p_MEDCoupling__MEDCouplingFieldDouble, 0 ));
5103                  }
5104              }
5105            return res;
5106          }
5107          PyObject *getFieldAtPos(int id) const throw(INTERP_KERNEL::Exception)
5108          {
5109            const MEDCouplingFieldDouble *ret=self->getFieldAtPos(id);
5110            if(ret)
5111              {
5112                ret->incrRef();
5113                return SWIG_NewPointerObj(SWIG_as_voidptr(ret),SWIGTYPE_p_MEDCoupling__MEDCouplingFieldDouble, SWIG_POINTER_OWN | 0 );
5114              }
5115            else
5116              return SWIG_NewPointerObj(SWIG_as_voidptr(0),SWIGTYPE_p_MEDCoupling__MEDCouplingFieldDouble, 0 );
5117          }
5118          PyObject *getMeshes() const throw(INTERP_KERNEL::Exception)
5119          {
5120            std::vector<MEDCouplingMesh *> ms=self->getMeshes();
5121            int sz=ms.size();
5122            PyObject *res = PyList_New(sz);
5123            for(int i=0;i<sz;i++)
5124              {
5125                if(ms[i])
5126                  {
5127                    ms[i]->incrRef();
5128                    PyList_SetItem(res,i,convertMesh(ms[i], SWIG_POINTER_OWN | 0 ));
5129                  }
5130                else
5131                  {
5132                    PyList_SetItem(res,i,SWIG_NewPointerObj(SWIG_as_voidptr(0),SWIGTYPE_p_MEDCoupling__MEDCouplingUMesh, 0 ));
5133                  }
5134              }
5135            return res;
5136          }
5137          PyObject *getDifferentMeshes() const throw(INTERP_KERNEL::Exception)
5138          {
5139            std::vector<int> refs;
5140            std::vector<MEDCouplingMesh *> ms=self->getDifferentMeshes(refs);
5141            int sz=ms.size();
5142            PyObject *res = PyList_New(sz);
5143            for(int i=0;i<sz;i++)
5144              {
5145                if(ms[i])
5146                  {
5147                    ms[i]->incrRef();
5148                    PyList_SetItem(res,i,convertMesh(ms[i], SWIG_POINTER_OWN | 0 ));
5149                  }
5150                else
5151                  {
5152                    PyList_SetItem(res,i,SWIG_NewPointerObj(SWIG_as_voidptr(0),SWIGTYPE_p_MEDCoupling__MEDCouplingUMesh, 0 ));
5153                  }
5154              }
5155            //
5156            PyObject *ret=PyTuple_New(2);
5157            PyTuple_SetItem(ret,0,res);
5158            PyTuple_SetItem(ret,1,convertIntArrToPyList2(refs));
5159            return ret;
5160          }
5161          PyObject *getArrays() const throw(INTERP_KERNEL::Exception)
5162          {
5163            std::vector<DataArrayDouble *> ms=self->getArrays();
5164            int sz=ms.size();
5165            PyObject *res = PyList_New(sz);
5166            for(int i=0;i<sz;i++)
5167              {
5168                if(ms[i])
5169                  {
5170                    ms[i]->incrRef();
5171                    PyList_SetItem(res,i,SWIG_NewPointerObj(SWIG_as_voidptr(ms[i]),SWIGTYPE_p_MEDCoupling__DataArrayDouble, SWIG_POINTER_OWN | 0 ));
5172                  }
5173                else
5174                  {
5175                    PyList_SetItem(res,i,SWIG_NewPointerObj(SWIG_as_voidptr(0),SWIGTYPE_p_MEDCoupling__DataArrayDouble, 0 ));
5176                  }
5177              }
5178            return res;
5179          }
5180          PyObject *getDifferentArrays() const throw(INTERP_KERNEL::Exception)
5181          {
5182            std::vector< std::vector<int> > refs;
5183            std::vector<DataArrayDouble *> ms=self->getDifferentArrays(refs);
5184            int sz=ms.size();
5185            PyObject *res = PyList_New(sz);
5186            PyObject *res2 = PyList_New(sz);
5187            for(int i=0;i<sz;i++)
5188              {
5189                if(ms[i])
5190                  {
5191                    ms[i]->incrRef();
5192                    PyList_SetItem(res,i,SWIG_NewPointerObj(SWIG_as_voidptr(ms[i]),SWIGTYPE_p_MEDCoupling__DataArrayDouble, SWIG_POINTER_OWN | 0 ));
5193                  }
5194                else
5195                  {
5196                    PyList_SetItem(res,i,SWIG_NewPointerObj(SWIG_as_voidptr(0),SWIGTYPE_p_MEDCoupling__DataArrayDouble, 0 ));
5197                  }
5198                PyList_SetItem(res2,i,convertIntArrToPyList2(refs[i]));
5199              }
5200            //
5201            PyObject *ret=PyTuple_New(2);
5202            PyTuple_SetItem(ret,0,res);
5203            PyTuple_SetItem(ret,1,res2);
5204            return ret;
5205          }
5206        }
5207   };
5208
5209   class MEDCouplingFieldInt : public MEDCouplingField
5210   {
5211   public:
5212     static MEDCouplingFieldInt *New(TypeOfField type, TypeOfTimeDiscretization td=ONE_TIME);
5213     static MEDCouplingFieldInt *New(const MEDCouplingFieldTemplate& ft, TypeOfTimeDiscretization td=ONE_TIME);
5214     void setTimeUnit(const std::string& unit) throw(INTERP_KERNEL::Exception);
5215     std::string getTimeUnit() const throw(INTERP_KERNEL::Exception);
5216     void setTime(double val, int iteration, int order) throw(INTERP_KERNEL::Exception);
5217     void setArray(DataArrayInt *array) throw(INTERP_KERNEL::Exception);
5218     MEDCouplingFieldInt *deepCopy() const throw(INTERP_KERNEL::Exception);
5219     MEDCouplingFieldInt *clone(bool recDeepCpy) const throw(INTERP_KERNEL::Exception);
5220     MEDCouplingFieldInt *cloneWithMesh(bool recDeepCpy) const throw(INTERP_KERNEL::Exception);
5221     MEDCouplingFieldDouble *convertToDblField() const throw(INTERP_KERNEL::Exception);
5222     MEDCouplingFieldInt *buildSubPartRange(int begin, int end, int step) const throw(INTERP_KERNEL::Exception);
5223     %extend {
5224       MEDCouplingFieldInt(TypeOfField type, TypeOfTimeDiscretization td=ONE_TIME)
5225       {
5226         return MEDCouplingFieldInt::New(type,td);
5227       }
5228
5229       MEDCouplingFieldInt(const MEDCouplingFieldTemplate& ft, TypeOfTimeDiscretization td=ONE_TIME)
5230       {
5231         return MEDCouplingFieldInt::New(ft,td);
5232       }
5233
5234       std::string __str__() const throw(INTERP_KERNEL::Exception)
5235       {
5236         return self->simpleRepr();
5237       }
5238
5239       std::string __repr__() const throw(INTERP_KERNEL::Exception)
5240       {
5241         std::ostringstream oss;
5242         self->reprQuickOverview(oss);
5243         return oss.str();
5244       }
5245
5246       MEDCouplingFieldInt *buildSubPart(PyObject *li) const throw(INTERP_KERNEL::Exception)
5247       {
5248         return fieldT_buildSubPart(self,li);
5249       }
5250
5251       MEDCouplingFieldInt *__getitem__(PyObject *li) const throw(INTERP_KERNEL::Exception)
5252       {
5253         return fieldT__getitem__(self,li);
5254       }
5255
5256       DataArrayInt *getArray() throw(INTERP_KERNEL::Exception)
5257       {
5258         DataArrayInt *ret=self->getArray();
5259         if(ret)
5260           ret->incrRef();
5261         return ret;
5262       }
5263       
5264       PyObject *getTime() throw(INTERP_KERNEL::Exception)
5265         {
5266         int tmp1,tmp2;
5267         double tmp0=self->getTime(tmp1,tmp2);
5268         PyObject *res = PyList_New(3);
5269         PyList_SetItem(res,0,SWIG_From_double(tmp0));
5270         PyList_SetItem(res,1,SWIG_From_int(tmp1));
5271         PyList_SetItem(res,2,SWIG_From_int(tmp2));
5272         return res;
5273         }
5274
5275       PyObject *getTinySerializationInformation() const throw(INTERP_KERNEL::Exception)
5276       {
5277         return field_getTinySerializationInformation<MEDCouplingFieldInt>(self);
5278       }
5279       
5280       PyObject *serialize() const throw(INTERP_KERNEL::Exception)
5281       {
5282         return field_serialize<int>(self);
5283       }
5284
5285       static PyObject *___new___(PyObject *cls, PyObject *args) throw(INTERP_KERNEL::Exception)
5286       {
5287         return NewMethWrapCallInitOnlyIfDictWithSingleEltInInputGeneral<SinglePyObjExpectToBeAListOfSz2>(cls,args,"MEDCouplingFieldInt");
5288       }
5289
5290       PyObject *__getnewargs__() throw(INTERP_KERNEL::Exception)
5291       {// put an empty dict in input to say to __new__ to call __init__...
5292         return field__getnewargs__<MEDCouplingFieldInt>(self);
5293       }
5294
5295       PyObject *__getstate__() const throw(INTERP_KERNEL::Exception)
5296       {
5297         return field__getstate__<MEDCouplingFieldInt>(self,MEDCoupling_MEDCouplingFieldInt_getTinySerializationInformation,MEDCoupling_MEDCouplingFieldInt_serialize);
5298       }
5299       
5300       void __setstate__(PyObject *inp) throw(INTERP_KERNEL::Exception)
5301       {
5302         field__setstate__<int>(self,inp);
5303       }
5304     }
5305   };
5306
5307   class MEDCouplingFieldFloat : public MEDCouplingField
5308   {
5309   public:
5310     static MEDCouplingFieldFloat *New(TypeOfField type, TypeOfTimeDiscretization td=ONE_TIME);
5311     static MEDCouplingFieldFloat *New(const MEDCouplingFieldTemplate& ft, TypeOfTimeDiscretization td=ONE_TIME);
5312     void setTimeUnit(const std::string& unit) throw(INTERP_KERNEL::Exception);
5313     std::string getTimeUnit() const throw(INTERP_KERNEL::Exception);
5314     void setTime(double val, int iteration, int order) throw(INTERP_KERNEL::Exception);
5315     void setArray(DataArrayFloat *array) throw(INTERP_KERNEL::Exception);
5316     MEDCouplingFieldFloat *deepCopy() const throw(INTERP_KERNEL::Exception);
5317     MEDCouplingFieldFloat *clone(bool recDeepCpy) const throw(INTERP_KERNEL::Exception);
5318     MEDCouplingFieldFloat *cloneWithMesh(bool recDeepCpy) const throw(INTERP_KERNEL::Exception);
5319     MEDCouplingFieldDouble *convertToDblField() const throw(INTERP_KERNEL::Exception);
5320     MEDCouplingFieldFloat *buildSubPartRange(int begin, int end, int step) const throw(INTERP_KERNEL::Exception);
5321     %extend {
5322       MEDCouplingFieldFloat(TypeOfField type, TypeOfTimeDiscretization td=ONE_TIME)
5323       {
5324         return MEDCouplingFieldFloat::New(type,td);
5325       }
5326
5327       MEDCouplingFieldFloat(const MEDCouplingFieldTemplate& ft, TypeOfTimeDiscretization td=ONE_TIME)
5328       {
5329         return MEDCouplingFieldFloat::New(ft,td);
5330       }
5331
5332       std::string __str__() const throw(INTERP_KERNEL::Exception)
5333       {
5334         return self->simpleRepr();
5335       }
5336
5337       std::string __repr__() const throw(INTERP_KERNEL::Exception)
5338       {
5339         std::ostringstream oss;
5340         self->reprQuickOverview(oss);
5341         return oss.str();
5342       }
5343
5344       MEDCouplingFieldFloat *buildSubPart(PyObject *li) const throw(INTERP_KERNEL::Exception)
5345       {
5346         return fieldT_buildSubPart(self,li);
5347       }
5348
5349       MEDCouplingFieldFloat *__getitem__(PyObject *li) const throw(INTERP_KERNEL::Exception)
5350       {
5351         return fieldT__getitem__(self,li);
5352       }
5353
5354       DataArrayFloat *getArray() throw(INTERP_KERNEL::Exception)
5355       {
5356         DataArrayFloat *ret=self->getArray();
5357         if(ret)
5358           ret->incrRef();
5359         return ret;
5360       }
5361       
5362       PyObject *getTime() throw(INTERP_KERNEL::Exception)
5363       {
5364         int tmp1,tmp2;
5365         double tmp0=self->getTime(tmp1,tmp2);
5366         PyObject *res = PyList_New(3);
5367         PyList_SetItem(res,0,SWIG_From_double(tmp0));
5368         PyList_SetItem(res,1,SWIG_From_int(tmp1));
5369         PyList_SetItem(res,2,SWIG_From_int(tmp2));
5370         return res;
5371       }
5372
5373       PyObject *getTinySerializationInformation() const throw(INTERP_KERNEL::Exception)
5374       {
5375         return field_getTinySerializationInformation<MEDCouplingFieldFloat>(self);
5376       }
5377       
5378       PyObject *serialize() const throw(INTERP_KERNEL::Exception)
5379       {
5380         return field_serialize<float>(self);
5381       }
5382         
5383       static PyObject *___new___(PyObject *cls, PyObject *args) throw(INTERP_KERNEL::Exception)
5384       {
5385         return NewMethWrapCallInitOnlyIfDictWithSingleEltInInputGeneral<SinglePyObjExpectToBeAListOfSz2>(cls,args,"MEDCouplingFieldFloat");
5386       }
5387       
5388       PyObject *__getnewargs__() throw(INTERP_KERNEL::Exception)
5389       {// put an empty dict in input to say to __new__ to call __init__...
5390         return field__getnewargs__<MEDCouplingFieldFloat>(self);
5391       }
5392       
5393       PyObject *__getstate__() const throw(INTERP_KERNEL::Exception)
5394       {
5395         return field__getstate__<MEDCouplingFieldFloat>(self,MEDCoupling_MEDCouplingFieldFloat_getTinySerializationInformation,MEDCoupling_MEDCouplingFieldFloat_serialize);
5396       }
5397         
5398       void __setstate__(PyObject *inp) throw(INTERP_KERNEL::Exception)
5399       {
5400         field__setstate__<float>(self,inp);
5401       }
5402     }
5403   };
5404   
5405   class MEDCouplingDefinitionTime
5406   {
5407   public:
5408     MEDCouplingDefinitionTime();
5409     void assign(const MEDCouplingDefinitionTime& other);
5410     bool isEqual(const MEDCouplingDefinitionTime& other) const;
5411     double getTimeResolution() const;
5412     std::vector<double> getHotSpotsTime() const;
5413     %extend
5414       {
5415         std::string __str__() const throw(INTERP_KERNEL::Exception)
5416           {
5417             std::ostringstream oss;
5418             self->appendRepr(oss);
5419             return oss.str();
5420           }
5421
5422         PyObject *getIdsOnTimeRight(double tm) const throw(INTERP_KERNEL::Exception)
5423         {
5424           int meshId,arrId,arrIdInField,fieldId;
5425           self->getIdsOnTimeRight(tm,meshId,arrId,arrIdInField,fieldId);
5426           PyObject *res=PyList_New(4);
5427           PyList_SetItem(res,0,PyInt_FromLong(meshId));
5428           PyList_SetItem(res,1,PyInt_FromLong(arrId));
5429           PyList_SetItem(res,2,PyInt_FromLong(arrIdInField));
5430           PyList_SetItem(res,3,PyInt_FromLong(fieldId));
5431           return res;
5432         }
5433
5434         PyObject *getIdsOnTimeLeft(double tm) const throw(INTERP_KERNEL::Exception)
5435         {
5436           int meshId,arrId,arrIdInField,fieldId;
5437           self->getIdsOnTimeLeft(tm,meshId,arrId,arrIdInField,fieldId);
5438           PyObject *res=PyList_New(4);
5439           PyList_SetItem(res,0,PyInt_FromLong(meshId));
5440           PyList_SetItem(res,1,PyInt_FromLong(arrId));
5441           PyList_SetItem(res,2,PyInt_FromLong(arrIdInField));
5442           PyList_SetItem(res,3,PyInt_FromLong(fieldId));
5443           return res;
5444         }
5445       }
5446   };
5447
5448   class MEDCouplingFieldOverTime : public MEDCouplingMultiFields
5449   {
5450   public:
5451     double getTimeTolerance() const throw(INTERP_KERNEL::Exception);
5452     MEDCouplingDefinitionTime getDefinitionTimeZone() const;
5453     
5454     %extend
5455       {
5456         MEDCouplingFieldOverTime(PyObject *li) throw(INTERP_KERNEL::Exception)
5457           {
5458             std::vector<const MEDCoupling::MEDCouplingFieldDouble *> tmp;
5459             convertFromPyObjVectorOfObj<const MEDCoupling::MEDCouplingFieldDouble *>(li,SWIGTYPE_p_MEDCoupling__MEDCouplingFieldDouble,"MEDCouplingFieldDouble",tmp);
5460             int sz=tmp.size();
5461             std::vector<MEDCouplingFieldDouble *> fs(sz);
5462             for(int i=0;i<sz;i++)
5463               fs[i]=const_cast<MEDCouplingFieldDouble *>(tmp[i]);
5464             return MEDCouplingFieldOverTime::New(fs);
5465           }
5466         std::string __str__() const throw(INTERP_KERNEL::Exception)
5467           {
5468             return self->simpleRepr();
5469           }
5470         static MEDCouplingFieldOverTime *New(PyObject *li) throw(INTERP_KERNEL::Exception)
5471         {
5472           std::vector<const MEDCoupling::MEDCouplingFieldDouble *> tmp;
5473           convertFromPyObjVectorOfObj<const MEDCoupling::MEDCouplingFieldDouble *>(li,SWIGTYPE_p_MEDCoupling__MEDCouplingFieldDouble,"MEDCouplingFieldDouble",tmp);
5474            int sz=tmp.size();
5475            std::vector<MEDCouplingFieldDouble *> fs(sz);
5476            for(int i=0;i<sz;i++)
5477              fs[i]=const_cast<MEDCouplingFieldDouble *>(tmp[i]);
5478            return MEDCouplingFieldOverTime::New(fs);
5479          }
5480       }
5481   };
5482
5483   class MEDCouplingCartesianAMRMesh;
5484   
5485   class MEDCouplingCartesianAMRPatchGen : public RefCountObject
5486   {
5487   public:
5488     int getNumberOfCellsRecursiveWithOverlap() const throw(INTERP_KERNEL::Exception);
5489     int getNumberOfCellsRecursiveWithoutOverlap() const throw(INTERP_KERNEL::Exception);
5490     int getMaxNumberOfLevelsRelativeToThis() const throw(INTERP_KERNEL::Exception);
5491     %extend
5492     {
5493       MEDCouplingCartesianAMRMeshGen *getMesh() const throw(INTERP_KERNEL::Exception)
5494       {
5495         MEDCouplingCartesianAMRMeshGen *ret(const_cast<MEDCouplingCartesianAMRMeshGen *>(self->getMesh()));
5496         if(ret)
5497           ret->incrRef();
5498         return ret;
5499       }
5500     }
5501   };
5502
5503   class MEDCouplingCartesianAMRPatch : public MEDCouplingCartesianAMRPatchGen
5504   {
5505   public:
5506     int getNumberOfOverlapedCellsForFather() const throw(INTERP_KERNEL::Exception);
5507     bool isInMyNeighborhood(const MEDCouplingCartesianAMRPatch *other, int ghostLev) const throw(INTERP_KERNEL::Exception);
5508     std::vector<int> computeCellGridSt() const throw(INTERP_KERNEL::Exception);
5509     %extend
5510     {
5511       PyObject *getBLTRRange() const throw(INTERP_KERNEL::Exception)
5512       {
5513         const std::vector< std::pair<int,int> >& ret(self->getBLTRRange());
5514         return convertFromVectorPairInt(ret);
5515       }
5516
5517       PyObject *getBLTRRangeRelativeToGF() const throw(INTERP_KERNEL::Exception)
5518       {
5519         std::vector< std::pair<int,int> > ret(self->getBLTRRangeRelativeToGF());
5520         return convertFromVectorPairInt(ret);
5521       }
5522
5523       void addPatch(PyObject *bottomLeftTopRight, const std::vector<int>& factors) throw(INTERP_KERNEL::Exception)
5524       {
5525         std::vector< std::pair<int,int> > inp;
5526         convertPyToVectorPairInt(bottomLeftTopRight,inp);
5527         self->addPatch(inp,factors);
5528       }
5529
5530       MEDCouplingCartesianAMRPatch *__getitem__(int patchId) const throw(INTERP_KERNEL::Exception)
5531       {
5532         const MEDCouplingCartesianAMRMeshGen *mesh(self->getMesh());
5533         if(!mesh)
5534           throw INTERP_KERNEL::Exception("wrap MEDCouplingCartesianAMRPatchGen.__getitem__ : no underlying mesh !");
5535         if(patchId==mesh->getNumberOfPatches())
5536           {
5537             std::ostringstream oss;
5538             oss << "Requesting for patchId " << patchId << " having only " << mesh->getNumberOfPatches() << " patches !";
5539             PyErr_SetString(PyExc_StopIteration,oss.str().c_str());
5540             return 0;
5541           }
5542         MEDCouplingCartesianAMRPatch *ret(const_cast<MEDCouplingCartesianAMRPatch *>(mesh->getPatch(patchId)));
5543         if(ret)
5544           ret->incrRef();
5545         return ret;
5546       }
5547
5548       void __delitem__(int patchId) throw(INTERP_KERNEL::Exception)
5549       {
5550         MEDCouplingCartesianAMRMeshGen *mesh(const_cast<MEDCouplingCartesianAMRMeshGen *>(self->getMesh()));
5551         if(!mesh)
5552           throw INTERP_KERNEL::Exception("wrap MEDCouplingCartesianAMRPatch.__delitem__ : no underlying mesh !");
5553         mesh->removePatch(patchId);
5554       }
5555
5556       int __len__() const throw(INTERP_KERNEL::Exception)
5557       {
5558         const MEDCouplingCartesianAMRMeshGen *mesh(self->getMesh());
5559         if(!mesh)
5560           throw INTERP_KERNEL::Exception("wrap MEDCouplingCartesianAMRPatch.__len__ : no underlying mesh !");
5561         return mesh->getNumberOfPatches();
5562       }
5563     }
5564   };
5565
5566   class MEDCouplingCartesianAMRPatchGF : public MEDCouplingCartesianAMRPatchGen
5567   {
5568   };
5569   
5570   class MEDCouplingCartesianAMRMeshGen : public RefCountObject, public TimeLabel
5571   {
5572   public:
5573     int getAbsoluteLevel() const throw(INTERP_KERNEL::Exception);
5574     int getAbsoluteLevelRelativeTo(const MEDCouplingCartesianAMRMeshGen *ref) const throw(INTERP_KERNEL::Exception);
5575     std::vector<int> getPositionRelativeTo(const MEDCouplingCartesianAMRMeshGen *ref) const throw(INTERP_KERNEL::Exception);
5576     int getSpaceDimension() const throw(INTERP_KERNEL::Exception);
5577     const std::vector<int>& getFactors() const throw(INTERP_KERNEL::Exception);
5578     void setFactors(const std::vector<int>& newFactors) throw(INTERP_KERNEL::Exception);
5579     int getMaxNumberOfLevelsRelativeToThis() const throw(INTERP_KERNEL::Exception);
5580     int getNumberOfCellsAtCurrentLevel() const throw(INTERP_KERNEL::Exception);
5581     int getNumberOfCellsAtCurrentLevelGhost(int ghostLev) const throw(INTERP_KERNEL::Exception);
5582     int getNumberOfCellsRecursiveWithOverlap() const throw(INTERP_KERNEL::Exception);
5583     int getNumberOfCellsRecursiveWithoutOverlap() const throw(INTERP_KERNEL::Exception);
5584     bool isPatchInNeighborhoodOf(int patchId1, int patchId2, int ghostLev) const throw(INTERP_KERNEL::Exception);
5585    virtual void detachFromFather() throw(INTERP_KERNEL::Exception);
5586     //
5587     int getNumberOfPatches() const throw(INTERP_KERNEL::Exception);
5588     int getPatchIdFromChildMesh(const MEDCouplingCartesianAMRMeshGen *mesh) const throw(INTERP_KERNEL::Exception);
5589     MEDCouplingUMesh *buildUnstructured() const throw(INTERP_KERNEL::Exception);
5590     DataArrayDouble *extractGhostFrom(int ghostSz, const DataArrayDouble *arr) const throw(INTERP_KERNEL::Exception);
5591     std::vector<int> getPatchIdsInTheNeighborhoodOf(int patchId, int ghostLev) const throw(INTERP_KERNEL::Exception);
5592     MEDCoupling1SGTUMesh *buildMeshFromPatchEnvelop() const throw(INTERP_KERNEL::Exception);
5593     MEDCoupling1SGTUMesh *buildMeshOfDirectChildrenOnly() const throw(INTERP_KERNEL::Exception);
5594     void removeAllPatches() throw(INTERP_KERNEL::Exception);
5595     void removePatch(int patchId) throw(INTERP_KERNEL::Exception);
5596     void createPatchesFromCriterion(const INTERP_KERNEL::BoxSplittingOptions& bso, const DataArrayByte *criterion, const std::vector<int>& factors) throw(INTERP_KERNEL::Exception);
5597     void createPatchesFromCriterion(const INTERP_KERNEL::BoxSplittingOptions& bso, const DataArrayDouble *criterion, const std::vector<int>& factors, double eps) throw(INTERP_KERNEL::Exception);
5598     DataArrayDouble *createCellFieldOnPatch(int patchId, const DataArrayDouble *cellFieldOnThis) const throw(INTERP_KERNEL::Exception);
5599     void fillCellFieldOnPatch(int patchId, const DataArrayDouble *cellFieldOnThis, DataArrayDouble *cellFieldOnPatch, bool isConservative=true) const throw(INTERP_KERNEL::Exception);
5600     void fillCellFieldOnPatchGhost(int patchId, const DataArrayDouble *cellFieldOnThis, DataArrayDouble *cellFieldOnPatch, int ghostLev, bool isConservative=true) const throw(INTERP_KERNEL::Exception);
5601     void fillCellFieldOnPatchOnlyOnGhostZone(int patchId, const DataArrayDouble *cellFieldOnThis, DataArrayDouble *cellFieldOnPatch, int ghostLev) const throw(INTERP_KERNEL::Exception);
5602     void fillCellFieldOnPatchOnlyOnGhostZoneWith(int ghostLev, const MEDCouplingCartesianAMRPatch *patchToBeModified, const MEDCouplingCartesianAMRPatch *neighborPatch, DataArrayDouble *cellFieldOnPatch, const DataArrayDouble *cellFieldNeighbor) const;
5603     void fillCellFieldComingFromPatch(int patchId, const DataArrayDouble *cellFieldOnPatch, DataArrayDouble *cellFieldOnThis, bool isConservative=true) const throw(INTERP_KERNEL::Exception);
5604     void fillCellFieldComingFromPatchGhost(int patchId, const DataArrayDouble *cellFieldOnPatch, DataArrayDouble *cellFieldOnThis, int ghostLev, bool isConservative=true) const throw(INTERP_KERNEL::Exception);
5605     DataArrayInt *findPatchesInTheNeighborhoodOf(int patchId, int ghostLev) const throw(INTERP_KERNEL::Exception);
5606     std::string buildPythonDumpOfThis() const throw(INTERP_KERNEL::Exception);
5607     %extend
5608     {
5609       void addPatch(PyObject *bottomLeftTopRight, const std::vector<int>& factors) throw(INTERP_KERNEL::Exception)
5610       {
5611         std::vector< std::pair<int,int> > inp;
5612         convertPyToVectorPairInt(bottomLeftTopRight,inp);
5613         self->addPatch(inp,factors);
5614       }
5615
5616       PyObject *getPatches() const throw(INTERP_KERNEL::Exception)
5617       {
5618         std::vector< const MEDCouplingCartesianAMRPatch *> ps(self->getPatches());
5619         int sz(ps.size());
5620         PyObject *ret = PyList_New(sz);
5621         for(int i=0;i<sz;i++)
5622           {
5623             MEDCouplingCartesianAMRPatch *elt(const_cast<MEDCouplingCartesianAMRPatch *>(ps[i]));
5624             if(elt)
5625               elt->incrRef();
5626             PyList_SetItem(ret,i,convertCartesianAMRPatch(elt, SWIG_POINTER_OWN | 0 ));
5627           }
5628         return ret;
5629       }
5630
5631       // agy : don't know why typemap fails here ??? let it in the extend section
5632       PyObject *deepCopy(MEDCouplingCartesianAMRMeshGen *father) const throw(INTERP_KERNEL::Exception)
5633       {
5634         return convertCartesianAMRMesh(self->deepCopy(father), SWIG_POINTER_OWN | 0 );
5635       }
5636
5637       MEDCouplingCartesianAMRPatch *getPatchAtPosition(const std::vector<int>& pos) const throw(INTERP_KERNEL::Exception)
5638       {
5639         const MEDCouplingCartesianAMRPatch *ret(self->getPatchAtPosition(pos));
5640         MEDCouplingCartesianAMRPatch *ret2(const_cast<MEDCouplingCartesianAMRPatch *>(ret));
5641         if(ret2)
5642           ret2->incrRef();
5643         return ret2;
5644       }
5645
5646       MEDCouplingCartesianAMRMeshGen *getMeshAtPosition(const std::vector<int>& pos) const throw(INTERP_KERNEL::Exception)
5647       {
5648         const MEDCouplingCartesianAMRMeshGen *ret(self->getMeshAtPosition(pos));
5649         MEDCouplingCartesianAMRMeshGen *ret2(const_cast<MEDCouplingCartesianAMRMeshGen *>(ret));
5650         if(ret2)
5651           ret2->incrRef();
5652         return ret2;
5653       }
5654
5655       virtual PyObject *positionRelativeToGodFather() const throw(INTERP_KERNEL::Exception)
5656       {
5657         std::vector<int> out1;
5658         std::vector< std::pair<int,int> > out0(self->positionRelativeToGodFather(out1));
5659         PyObject *ret(PyTuple_New(2));
5660         PyTuple_SetItem(ret,0,convertFromVectorPairInt(out0));
5661         PyTuple_SetItem(ret,1,convertIntArrToPyList2(out1));
5662         return ret;
5663       }
5664
5665       virtual PyObject *retrieveGridsAt(int absoluteLev) const throw(INTERP_KERNEL::Exception)
5666       {
5667         std::vector<MEDCouplingCartesianAMRPatchGen *> ps(self->retrieveGridsAt(absoluteLev));
5668         int sz(ps.size());
5669         PyObject *ret = PyList_New(sz);
5670         for(int i=0;i<sz;i++)
5671           PyList_SetItem(ret,i,convertCartesianAMRPatch(ps[i], SWIG_POINTER_OWN | 0 ));
5672         return ret;
5673       }
5674
5675       MEDCouplingFieldDouble *buildCellFieldOnRecurseWithoutOverlapWithoutGhost(int ghostSz, PyObject *recurseArrs) const
5676       {
5677         std::vector<const DataArrayDouble *> inp;
5678         convertFromPyObjVectorOfObj<const MEDCoupling::DataArrayDouble *>(recurseArrs,SWIGTYPE_p_MEDCoupling__DataArrayDouble,"DataArrayDouble",inp);
5679         return self->buildCellFieldOnRecurseWithoutOverlapWithoutGhost(ghostSz,inp);
5680       }
5681
5682       virtual MEDCouplingCartesianAMRMeshGen *getFather() const throw(INTERP_KERNEL::Exception)
5683       {
5684         MEDCouplingCartesianAMRMeshGen *ret(const_cast<MEDCouplingCartesianAMRMeshGen *>(self->getFather()));
5685         if(ret)
5686           ret->incrRef();
5687         return ret;
5688       }
5689       
5690       virtual MEDCouplingCartesianAMRMeshGen *getGodFather() const throw(INTERP_KERNEL::Exception)
5691       {
5692         MEDCouplingCartesianAMRMeshGen *ret(const_cast<MEDCouplingCartesianAMRMeshGen *>(self->getGodFather()));
5693         if(ret)
5694           ret->incrRef();
5695         return ret;
5696       }
5697
5698       MEDCouplingCartesianAMRPatch *getPatch(int patchId) const throw(INTERP_KERNEL::Exception)
5699       {
5700         MEDCouplingCartesianAMRPatch *ret(const_cast<MEDCouplingCartesianAMRPatch *>(self->getPatch(patchId)));
5701         if(ret)
5702           ret->incrRef();
5703         return ret;
5704       }
5705
5706       MEDCouplingIMesh *getImageMesh() const throw(INTERP_KERNEL::Exception)
5707       {
5708         const MEDCouplingIMesh *ret(self->getImageMesh());
5709         if(ret)
5710           ret->incrRef();
5711         return const_cast<MEDCouplingIMesh *>(ret);
5712       }
5713
5714       MEDCouplingCartesianAMRPatch *__getitem__(int patchId) const throw(INTERP_KERNEL::Exception)
5715       {
5716         if(patchId==self->getNumberOfPatches())
5717           {
5718             std::ostringstream oss;
5719             oss << "Requesting for patchId " << patchId << " having only " << self->getNumberOfPatches() << " patches !";
5720             PyErr_SetString(PyExc_StopIteration,oss.str().c_str());
5721             return 0;
5722           }
5723         MEDCouplingCartesianAMRPatch *ret(const_cast<MEDCouplingCartesianAMRPatch *>(self->getPatch(patchId)));
5724         if(ret)
5725           ret->incrRef();
5726         return ret;
5727       }
5728
5729       void fillCellFieldOnPatchGhostAdv(int patchId, const DataArrayDouble *cellFieldOnThis, int ghostLev, PyObject *arrsOnPatches, bool isConservative=true) const throw(INTERP_KERNEL::Exception)
5730       {
5731         std::vector<const MEDCoupling::DataArrayDouble *> arrsOnPatches2;
5732         convertFromPyObjVectorOfObj<const MEDCoupling::DataArrayDouble *>(arrsOnPatches,SWIGTYPE_p_MEDCoupling__DataArrayDouble,"DataArrayDouble",arrsOnPatches2);
5733         self->fillCellFieldOnPatchGhostAdv(patchId,cellFieldOnThis,ghostLev,arrsOnPatches2,isConservative);
5734       }
5735
5736       void fillCellFieldOnPatchOnlyGhostAdv(int patchId, int ghostLev, PyObject *arrsOnPatches) const
5737       {
5738         std::vector<const MEDCoupling::DataArrayDouble *> arrsOnPatches2;
5739         convertFromPyObjVectorOfObj<const MEDCoupling::DataArrayDouble *>(arrsOnPatches,SWIGTYPE_p_MEDCoupling__DataArrayDouble,"DataArrayDouble",arrsOnPatches2);
5740         self->fillCellFieldOnPatchOnlyGhostAdv(patchId,ghostLev,arrsOnPatches2);
5741       }
5742
5743       void __delitem__(int patchId) throw(INTERP_KERNEL::Exception)
5744       {
5745         self->removePatch(patchId);
5746       }
5747
5748       int __len__() const throw(INTERP_KERNEL::Exception)
5749       {
5750         return self->getNumberOfPatches();
5751       }
5752     }
5753   };
5754
5755   class MEDCouplingCartesianAMRMeshSub : public MEDCouplingCartesianAMRMeshGen
5756   {
5757   };
5758
5759   class MEDCouplingCartesianAMRMesh : public MEDCouplingCartesianAMRMeshGen
5760   {
5761   public:
5762     static MEDCouplingCartesianAMRMesh *New(MEDCouplingIMesh *mesh) throw(INTERP_KERNEL::Exception);
5763     %extend
5764     {
5765       static MEDCouplingCartesianAMRMesh *New(const std::string& meshName, int spaceDim, PyObject *nodeStrct, PyObject *origin, PyObject *dxyz) throw(INTERP_KERNEL::Exception)
5766       {
5767         static const char msg0[]="MEDCouplingCartesianAMRMesh::New : error on 'origin' parameter !";
5768         static const char msg1[]="MEDCouplingCartesianAMRMesh::New : error on 'dxyz' parameter !";
5769         const int *nodeStrctPtr(0);
5770         const double *originPtr(0),*dxyzPtr(0);
5771         int sw,sz,val0;
5772         std::vector<int> bb0;
5773         nodeStrctPtr=convertIntStarLikePyObjToCppIntStar(nodeStrct,sw,sz,val0,bb0);
5774         //
5775         double val,val2;
5776         std::vector<double> bb,bb2;
5777         int sz1,sz2;
5778         originPtr=convertObjToPossibleCpp5_SingleCompo(origin,sw,val,bb,msg0,false,sz1);
5779         dxyzPtr=convertObjToPossibleCpp5_SingleCompo(dxyz,sw,val2,bb2,msg1,false,sz2);
5780         //
5781         return MEDCouplingCartesianAMRMesh::New(meshName,spaceDim,nodeStrctPtr,nodeStrctPtr+sz,originPtr,originPtr+sz1,dxyzPtr,dxyzPtr+sz2);
5782       }
5783
5784       void createPatchesFromCriterionML(PyObject *bso, const DataArrayDouble *criterion, PyObject *factors, double eps) throw(INTERP_KERNEL::Exception)
5785       {
5786         std::vector<const INTERP_KERNEL::BoxSplittingOptions *> inp0;
5787         convertFromPyObjVectorOfObj<const INTERP_KERNEL::BoxSplittingOptions *>(bso,SWIGTYPE_p_INTERP_KERNEL__BoxSplittingOptions,"BoxSplittingOptions",inp0);
5788         std::vector< std::vector<int> > inp2;
5789         convertPyToVectorOfVectorOfInt(factors,inp2);
5790         self->createPatchesFromCriterionML(inp0,criterion,inp2,eps);
5791       }
5792
5793       MEDCouplingCartesianAMRMesh(const std::string& meshName, int spaceDim, PyObject *nodeStrct, PyObject *origin, PyObject *dxyz) throw(INTERP_KERNEL::Exception)
5794       {
5795         return MEDCoupling_MEDCouplingCartesianAMRMesh_New__SWIG_1(meshName,spaceDim,nodeStrct,origin,dxyz);
5796       }
5797
5798       MEDCouplingCartesianAMRMesh(MEDCouplingIMesh *mesh) throw(INTERP_KERNEL::Exception)
5799       {
5800         return MEDCouplingCartesianAMRMesh::New(mesh);
5801       }
5802     }
5803   };
5804
5805   class MEDCouplingDataForGodFather : public RefCountObject
5806   {
5807   public:
5808     virtual void synchronizeFineToCoarse() throw(INTERP_KERNEL::Exception);
5809     virtual void synchronizeFineToCoarseBetween(int fromLev, int toLev) throw(INTERP_KERNEL::Exception);
5810     virtual void synchronizeCoarseToFine() throw(INTERP_KERNEL::Exception);
5811     virtual void synchronizeCoarseToFineBetween(int fromLev, int toLev) throw(INTERP_KERNEL::Exception);
5812     virtual void synchronizeAllGhostZones() throw(INTERP_KERNEL::Exception);
5813     virtual void synchronizeAllGhostZonesOfDirectChidrenOf(const MEDCouplingCartesianAMRMeshGen *mesh) throw(INTERP_KERNEL::Exception);
5814     virtual void synchronizeAllGhostZonesAtASpecifiedLevel(int level) throw(INTERP_KERNEL::Exception);
5815     virtual void synchronizeAllGhostZonesAtASpecifiedLevelUsingOnlyFather(int level) throw(INTERP_KERNEL::Exception);
5816     virtual void alloc() throw(INTERP_KERNEL::Exception);
5817     virtual void dealloc() throw(INTERP_KERNEL::Exception);
5818     %extend
5819     {
5820       MEDCouplingCartesianAMRMesh *getMyGodFather() throw(INTERP_KERNEL::Exception)
5821       {
5822         MEDCouplingCartesianAMRMesh *ret(self->getMyGodFather());
5823         if(ret)
5824           ret->incrRef();
5825         return ret;
5826       }
5827     }
5828   };
5829   
5830   class MEDCouplingAMRAttribute : public MEDCouplingDataForGodFather, public TimeLabel
5831   {
5832   public:
5833     int getNumberOfLevels() const throw(INTERP_KERNEL::Exception);
5834     MEDCouplingAMRAttribute *deepCopy() const throw(INTERP_KERNEL::Exception);
5835     MEDCouplingAMRAttribute *deepCpyWithoutGodFather() const throw(INTERP_KERNEL::Exception);
5836     MEDCouplingFieldDouble *buildCellFieldOnRecurseWithoutOverlapWithoutGhost(MEDCouplingCartesianAMRMeshGen *mesh, const std::string& fieldName) const throw(INTERP_KERNEL::Exception);
5837     MEDCouplingFieldDouble *buildCellFieldOnWithGhost(MEDCouplingCartesianAMRMeshGen *mesh, const std::string& fieldName) const throw(INTERP_KERNEL::Exception);
5838     MEDCouplingFieldDouble *buildCellFieldOnWithoutGhost(MEDCouplingCartesianAMRMeshGen *mesh, const std::string& fieldName) const throw(INTERP_KERNEL::Exception);
5839     bool changeGodFather(MEDCouplingCartesianAMRMesh *gf) throw(INTERP_KERNEL::Exception);
5840     MEDCouplingAMRAttribute *projectTo(MEDCouplingCartesianAMRMesh *targetGF) const throw(INTERP_KERNEL::Exception);
5841     std::string writeVTHB(const std::string& fileName) const throw(INTERP_KERNEL::Exception);
5842     %extend
5843     {
5844       static MEDCouplingAMRAttribute *New(MEDCouplingCartesianAMRMesh *gf, PyObject *fieldNames, int ghostLev) throw(INTERP_KERNEL::Exception)
5845       {
5846         std::vector< std::pair<std::string,int> > fieldNamesCpp0;
5847         std::vector< std::pair<std::string, std::vector<std::string> > > fieldNamesCpp1;
5848         MEDCouplingAMRAttribute *ret(0);
5849         try
5850           {
5851             convertPyToVectorPairStringInt(fieldNames,fieldNamesCpp0);
5852             ret=MEDCouplingAMRAttribute::New(gf,fieldNamesCpp0,ghostLev);
5853           }
5854         catch(INTERP_KERNEL::Exception&)
5855           {
5856             convertPyToVectorPairStringVecString(fieldNames,fieldNamesCpp1);
5857             ret=MEDCouplingAMRAttribute::New(gf,fieldNamesCpp1,ghostLev);
5858           }
5859         return ret;
5860       }
5861
5862       MEDCouplingAMRAttribute(MEDCouplingCartesianAMRMesh *gf, PyObject *fieldNames, int ghostLev) throw(INTERP_KERNEL::Exception)
5863       {
5864         return MEDCoupling_MEDCouplingAMRAttribute_New(gf,fieldNames,ghostLev);
5865       }
5866
5867       DataArrayDouble *getFieldOn(MEDCouplingCartesianAMRMeshGen *mesh, const std::string& fieldName) const throw(INTERP_KERNEL::Exception)
5868       {
5869         const DataArrayDouble *ret(self->getFieldOn(mesh,fieldName));
5870         DataArrayDouble *ret2(const_cast<DataArrayDouble *>(ret));
5871         if(ret2)
5872           ret2->incrRef();
5873         return ret2;
5874       }
5875
5876       void spillInfoOnComponents(PyObject *compNames) throw(INTERP_KERNEL::Exception)
5877       {
5878         std::vector< std::vector<std::string> > compNamesCpp;
5879         convertPyToVectorOfVectorOfString(compNames,compNamesCpp);
5880         self->spillInfoOnComponents(compNamesCpp);
5881       }
5882
5883       void spillNatures(PyObject *nfs) throw(INTERP_KERNEL::Exception)
5884       {
5885         std::vector<int> inp0;
5886         if(!fillIntVector(nfs,inp0))
5887           throw INTERP_KERNEL::Exception("wrap of MEDCouplingAMRAttribute::spillNatures : vector of NatureOfField enum expected !");
5888         std::size_t sz(inp0.size());
5889         std::vector<NatureOfField> inp00(sz);
5890         for(std::size_t i=0;i<sz;i++)
5891           inp00[i]=(NatureOfField)inp0[i];
5892         self->spillNatures(inp00);
5893       }
5894       
5895       PyObject *retrieveFieldsOn(MEDCouplingCartesianAMRMeshGen *mesh) const throw(INTERP_KERNEL::Exception)
5896       {
5897         std::vector<DataArrayDouble *> ret(self->retrieveFieldsOn(mesh));
5898         int sz((int)ret.size());
5899         PyObject *retPy(PyList_New(sz));
5900         for(int i=0;i<sz;i++)
5901           PyList_SetItem(retPy,i,SWIG_NewPointerObj(SWIG_as_voidptr(ret[i]),SWIGTYPE_p_MEDCoupling__DataArrayDouble, SWIG_POINTER_OWN | 0 ));
5902         return retPy;
5903       }
5904     }
5905   };
5906
5907   class DenseMatrix : public RefCountObject, public TimeLabel
5908   {
5909   public:
5910     static DenseMatrix *New(int nbRows, int nbCols) throw(INTERP_KERNEL::Exception);
5911     static DenseMatrix *New(DataArrayDouble *array, int nbRows, int nbCols) throw(INTERP_KERNEL::Exception);
5912     DenseMatrix *deepCopy() const throw(INTERP_KERNEL::Exception);
5913     DenseMatrix *shallowCpy() const throw(INTERP_KERNEL::Exception);
5914     //
5915     int getNumberOfRows() const throw(INTERP_KERNEL::Exception);
5916     int getNumberOfCols() const throw(INTERP_KERNEL::Exception);
5917     int getNbOfElems() const throw(INTERP_KERNEL::Exception);
5918     void reBuild(DataArrayDouble *array, int nbRows=-1, int nbCols=-1) throw(INTERP_KERNEL::Exception);
5919     void reShape(int nbRows, int nbCols) throw(INTERP_KERNEL::Exception);
5920     void transpose() throw(INTERP_KERNEL::Exception);
5921     //
5922     bool isEqual(const DenseMatrix& other, double eps) const throw(INTERP_KERNEL::Exception);
5923     DataArrayDouble *matVecMult(const DataArrayDouble *vec) const throw(INTERP_KERNEL::Exception);
5924     static DataArrayDouble *MatVecMult(const DenseMatrix *mat, const DataArrayDouble *vec) throw(INTERP_KERNEL::Exception);
5925     %extend
5926     {
5927       DenseMatrix(int nbRows, int nbCols) throw(INTERP_KERNEL::Exception)
5928       {
5929         return DenseMatrix::New(nbRows,nbCols);
5930       }
5931
5932       DenseMatrix(DataArrayDouble *array, int nbRows, int nbCols) throw(INTERP_KERNEL::Exception)
5933       {
5934         return DenseMatrix::New(array,nbRows,nbCols);
5935       }
5936
5937       PyObject *isEqualIfNotWhy(const DenseMatrix& other, double eps) const throw(INTERP_KERNEL::Exception)
5938       {
5939         std::string ret1;
5940         bool ret0=self->isEqualIfNotWhy(other,eps,ret1);
5941         PyObject *ret=PyTuple_New(2);
5942         PyObject *ret0Py=ret0?Py_True:Py_False;
5943         Py_XINCREF(ret0Py);
5944         PyTuple_SetItem(ret,0,ret0Py);
5945         PyTuple_SetItem(ret,1,PyString_FromString(ret1.c_str()));
5946         return ret;
5947       }
5948
5949       DataArrayDouble *getData() throw(INTERP_KERNEL::Exception)
5950       {
5951         DataArrayDouble *ret(self->getData());
5952         if(ret)
5953           ret->incrRef();
5954         return ret;
5955       }
5956
5957       DenseMatrix *__add__(const DenseMatrix *other) throw(INTERP_KERNEL::Exception)
5958       {
5959         return MEDCoupling::DenseMatrix::Add(self,other);
5960       }
5961
5962       DenseMatrix *__sub__(const DenseMatrix *other) throw(INTERP_KERNEL::Exception)
5963       {
5964         return MEDCoupling::DenseMatrix::Substract(self,other);
5965       }
5966
5967       DenseMatrix *__mul__(const DenseMatrix *other) throw(INTERP_KERNEL::Exception)
5968       {
5969         return MEDCoupling::DenseMatrix::Multiply(self,other);
5970       }
5971
5972       DenseMatrix *__mul__(const DataArrayDouble *other) throw(INTERP_KERNEL::Exception)
5973       {
5974         return MEDCoupling::DenseMatrix::Multiply(self,other);
5975       }
5976
5977       PyObject *___iadd___(PyObject *trueSelf, const DenseMatrix *other) throw(INTERP_KERNEL::Exception)
5978       {
5979         self->addEqual(other);
5980         Py_XINCREF(trueSelf);
5981         return trueSelf;
5982       }
5983
5984       PyObject *___isub___(PyObject *trueSelf, const DenseMatrix *other) throw(INTERP_KERNEL::Exception)
5985       {
5986         self->substractEqual(other);
5987         Py_XINCREF(trueSelf);
5988         return trueSelf;
5989       }
5990 #ifdef WITH_NUMPY
5991       PyObject *toNumPyMatrix() throw(INTERP_KERNEL::Exception) // not const. It is not a bug !
5992       {
5993         PyObject *obj(ToNumPyArrayUnderground<DataArrayDouble,double>(self->getData(),NPY_DOUBLE,"DataArrayDouble",self->getNumberOfRows(),self->getNumberOfCols()));
5994         return obj;
5995       }
5996 #endif
5997     }
5998   };
5999 }
6000
6001 %pythoncode %{
6002 import os
6003 __filename=os.environ.get('PYTHONSTARTUP')
6004 if __filename and os.path.isfile(__filename):
6005   exec(open(__filename).read())
6006   pass
6007 %}