1 // Copyright (C) 2007-2015 CEA/DEN, EDF R&D
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.
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.
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
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 // Author : Anthony Geay (CEA/DEN)
21 #ifndef __PARAMEDMEM_MEDCOUPLINGMEMARRAY_HXX__
22 #define __PARAMEDMEM_MEDCOUPLINGMEMARRAY_HXX__
24 #include "MEDCoupling.hxx"
25 #include "MEDCouplingTimeLabel.hxx"
26 #include "MEDCouplingRefCountObject.hxx"
27 #include "InterpKernelException.hxx"
28 #include "BBTreePts.txx"
37 class MEDCouplingPointer
40 MEDCouplingPointer():_internal(0),_external(0) { }
41 void null() { _internal=0; _external=0; }
42 bool isNull() const { return _internal==0 && _external==0; }
43 void setInternal(T *pointer);
44 void setExternal(const T *pointer);
45 const T *getConstPointer() const { if(_internal) return _internal; else return _external; }
46 const T *getConstPointerLoc(std::size_t offset) const { if(_internal) return _internal+offset; else return _external+offset; }
47 T *getPointer() { if(_internal) return _internal; if(_external) throw INTERP_KERNEL::Exception("Trying to write on an external pointer."); else return 0; }
57 typedef void (*Deallocator)(void *,void *);
59 MemArray():_nb_of_elem(0),_nb_of_elem_alloc(0),_ownership(false),_dealloc(0),_param_for_deallocator(0) { }
60 MemArray(const MemArray<T>& other);
61 bool isNull() const { return _pointer.isNull(); }
62 const T *getConstPointerLoc(std::size_t offset) const { return _pointer.getConstPointerLoc(offset); }
63 const T *getConstPointer() const { return _pointer.getConstPointer(); }
64 std::size_t getNbOfElem() const { return _nb_of_elem; }
65 std::size_t getNbOfElemAllocated() const { return _nb_of_elem_alloc; }
66 T *getPointer() { return _pointer.getPointer(); }
67 MemArray<T> &operator=(const MemArray<T>& other);
68 T operator[](std::size_t id) const { return _pointer.getConstPointer()[id]; }
69 T& operator[](std::size_t id) { return _pointer.getPointer()[id]; }
70 bool isEqual(const MemArray<T>& other, T prec, std::string& reason) const;
71 void repr(int sl, std::ostream& stream) const;
72 bool reprHeader(int sl, std::ostream& stream) const;
73 void reprZip(int sl, std::ostream& stream) const;
74 void reprNotTooLong(int sl, std::ostream& stream) const;
75 void fillWithValue(const T& val);
76 T *fromNoInterlace(int nbOfComp) const;
77 T *toNoInterlace(int nbOfComp) const;
79 void reverse(int nbOfComp);
80 void alloc(std::size_t nbOfElements);
81 void reserve(std::size_t newNbOfElements);
82 void reAlloc(std::size_t newNbOfElements);
83 void useArray(const T *array, bool ownership, DeallocType type, std::size_t nbOfElem);
84 void useExternalArrayWithRWAccess(const T *array, std::size_t nbOfElem);
85 void writeOnPlace(std::size_t id, T element0, const T *others, std::size_t sizeOfOthers);
86 template<class InputIterator>
87 void insertAtTheEnd(InputIterator first, InputIterator last);
88 void pushBack(T elem);
91 bool isDeallocatorCalled() const { return _ownership; }
92 Deallocator getDeallocator() const { return _dealloc; }
93 void setSpecificDeallocator(Deallocator dealloc) { _dealloc=dealloc; }
94 void setParameterForDeallocator(void *param) { _param_for_deallocator=param; }
95 void *getParameterForDeallocator() const { return _param_for_deallocator; }
97 ~MemArray() { destroy(); }
99 static void CPPDeallocator(void *pt, void *param);
100 static void CDeallocator(void *pt, void *param);
102 static void DestroyPointer(T *pt, Deallocator dealloc, void *param);
103 static Deallocator BuildFromType(DeallocType type);
105 std::size_t _nb_of_elem;
106 std::size_t _nb_of_elem_alloc;
108 MEDCouplingPointer<T> _pointer;
109 Deallocator _dealloc;
110 void *_param_for_deallocator;
116 class DataArray : public RefCountObject, public TimeLabel
119 MEDCOUPLING_EXPORT std::size_t getHeapMemorySizeWithoutChildren() const;
120 MEDCOUPLING_EXPORT std::vector<const BigMemoryObject *> getDirectChildrenWithNull() const;
121 MEDCOUPLING_EXPORT void setName(const std::string& name);
122 MEDCOUPLING_EXPORT void copyStringInfoFrom(const DataArray& other);
123 MEDCOUPLING_EXPORT void copyPartOfStringInfoFrom(const DataArray& other, const std::vector<int>& compoIds);
124 MEDCOUPLING_EXPORT void copyPartOfStringInfoFrom2(const std::vector<int>& compoIds, const DataArray& other);
125 MEDCOUPLING_EXPORT bool areInfoEqualsIfNotWhy(const DataArray& other, std::string& reason) const;
126 MEDCOUPLING_EXPORT bool areInfoEquals(const DataArray& other) const;
127 MEDCOUPLING_EXPORT std::string cppRepr(const std::string& varName) const;
128 MEDCOUPLING_EXPORT std::string getName() const { return _name; }
129 MEDCOUPLING_EXPORT const std::vector<std::string> &getInfoOnComponents() const { return _info_on_compo; }
130 MEDCOUPLING_EXPORT std::vector<std::string> &getInfoOnComponents() { return _info_on_compo; }
131 MEDCOUPLING_EXPORT void setInfoOnComponents(const std::vector<std::string>& info);
132 MEDCOUPLING_EXPORT void setInfoAndChangeNbOfCompo(const std::vector<std::string>& info);
133 MEDCOUPLING_EXPORT std::vector<std::string> getVarsOnComponent() const;
134 MEDCOUPLING_EXPORT std::vector<std::string> getUnitsOnComponent() const;
135 MEDCOUPLING_EXPORT std::string getInfoOnComponent(int i) const;
136 MEDCOUPLING_EXPORT std::string getVarOnComponent(int i) const;
137 MEDCOUPLING_EXPORT std::string getUnitOnComponent(int i) const;
138 MEDCOUPLING_EXPORT void setInfoOnComponent(int i, const std::string& info);
139 MEDCOUPLING_EXPORT int getNumberOfComponents() const { return (int)_info_on_compo.size(); }
140 MEDCOUPLING_EXPORT void setPartOfValuesBase3(const DataArray *aBase, const int *bgTuples, const int *endTuples, int bgComp, int endComp, int stepComp, bool strictCompoCompare=true);
141 MEDCOUPLING_EXPORT virtual DataArray *deepCpy() const = 0;
142 MEDCOUPLING_EXPORT virtual bool isAllocated() const = 0;
143 MEDCOUPLING_EXPORT virtual void checkAllocated() const = 0;
144 MEDCOUPLING_EXPORT virtual void desallocate() = 0;
145 MEDCOUPLING_EXPORT virtual int getNumberOfTuples() const = 0;
146 MEDCOUPLING_EXPORT virtual std::size_t getNbOfElems() const = 0;
147 MEDCOUPLING_EXPORT virtual std::size_t getNbOfElemAllocated() const = 0;
148 MEDCOUPLING_EXPORT virtual void alloc(int nbOfTuple, int nbOfCompo=1) = 0;
149 MEDCOUPLING_EXPORT virtual void reAlloc(int newNbOfTuple) = 0;
150 MEDCOUPLING_EXPORT virtual void renumberInPlace(const int *old2New) = 0;
151 MEDCOUPLING_EXPORT virtual void renumberInPlaceR(const int *new2Old) = 0;
152 MEDCOUPLING_EXPORT virtual void setContigPartOfSelectedValues(int tupleIdStart, const DataArray *aBase, const DataArrayInt *tuplesSelec) = 0;
153 MEDCOUPLING_EXPORT virtual void setContigPartOfSelectedValues2(int tupleIdStart, const DataArray *aBase, int bg, int end2, int step) = 0;
154 MEDCOUPLING_EXPORT virtual DataArray *selectByTupleRanges(const std::vector<std::pair<int,int> >& ranges) const = 0;
155 MEDCOUPLING_EXPORT virtual DataArray *keepSelectedComponents(const std::vector<int>& compoIds) const = 0;
156 MEDCOUPLING_EXPORT virtual DataArray *selectByTupleId(const int *new2OldBg, const int *new2OldEnd) const = 0;
157 MEDCOUPLING_EXPORT virtual DataArray *selectByTupleIdSafe(const int *new2OldBg, const int *new2OldEnd) const = 0;
158 MEDCOUPLING_EXPORT virtual DataArray *selectByTupleId2(int bg, int end2, int step) const = 0;
159 MEDCOUPLING_EXPORT virtual void rearrange(int newNbOfCompo) = 0;
160 MEDCOUPLING_EXPORT void checkNbOfTuples(int nbOfTuples, const std::string& msg) const;
161 MEDCOUPLING_EXPORT void checkNbOfComps(int nbOfCompo, const std::string& msg) const;
162 MEDCOUPLING_EXPORT void checkNbOfTuplesAndComp(const DataArray& other, const std::string& msg) const;
163 MEDCOUPLING_EXPORT void checkNbOfTuplesAndComp(int nbOfTuples, int nbOfCompo, const std::string& msg) const;
164 MEDCOUPLING_EXPORT void checkNbOfElems(std::size_t nbOfElems, const std::string& msg) const;
165 MEDCOUPLING_EXPORT static void GetSlice(int start, int stop, int step, int sliceId, int nbOfSlices, int& startSlice, int& stopSlice);
166 MEDCOUPLING_EXPORT static int GetNumberOfItemGivenBES(int begin, int end, int step, const std::string& msg);
167 MEDCOUPLING_EXPORT static int GetNumberOfItemGivenBESRelative(int begin, int end, int step, const std::string& msg);
168 MEDCOUPLING_EXPORT static int GetPosOfItemGivenBESRelativeNoThrow(int value, int begin, int end, int step);
169 MEDCOUPLING_EXPORT static std::string GetVarNameFromInfo(const std::string& info);
170 MEDCOUPLING_EXPORT static std::string GetUnitFromInfo(const std::string& info);
171 MEDCOUPLING_EXPORT static std::string BuildInfoFromVarAndUnit(const std::string& var, const std::string& unit);
172 MEDCOUPLING_EXPORT static DataArray *Aggregate(const std::vector<const DataArray *>& arrs);
173 MEDCOUPLING_EXPORT virtual void reprStream(std::ostream& stream) const = 0;
174 MEDCOUPLING_EXPORT virtual void reprZipStream(std::ostream& stream) const = 0;
175 MEDCOUPLING_EXPORT virtual void reprWithoutNameStream(std::ostream& stream) const;
176 MEDCOUPLING_EXPORT virtual void reprZipWithoutNameStream(std::ostream& stream) const = 0;
177 MEDCOUPLING_EXPORT virtual void reprCppStream(const std::string& varName, std::ostream& stream) const = 0;
178 MEDCOUPLING_EXPORT virtual void reprQuickOverview(std::ostream& stream) const = 0;
179 MEDCOUPLING_EXPORT virtual void reprQuickOverviewData(std::ostream& stream, std::size_t maxNbOfByteInRepr) const = 0;
184 static void CheckValueInRange(int ref, int value, const std::string& msg);
185 static void CheckValueInRangeEx(int value, int start, int end, const std::string& msg);
186 static void CheckClosingParInRange(int ref, int value, const std::string& msg);
189 std::vector<std::string> _info_on_compo;
193 #include "MEDCouplingMemArray.txx"
198 class DataArrayDoubleIterator;
199 class DataArrayDouble : public DataArray
202 MEDCOUPLING_EXPORT static DataArrayDouble *New();
203 MEDCOUPLING_EXPORT bool isAllocated() const;
204 MEDCOUPLING_EXPORT void checkAllocated() const;
205 MEDCOUPLING_EXPORT void desallocate();
206 MEDCOUPLING_EXPORT int getNumberOfTuples() const { return _info_on_compo.empty()?0:_mem.getNbOfElem()/getNumberOfComponents(); }
207 MEDCOUPLING_EXPORT std::size_t getNbOfElems() const { return _mem.getNbOfElem(); }
208 MEDCOUPLING_EXPORT std::size_t getHeapMemorySizeWithoutChildren() const;
209 MEDCOUPLING_EXPORT double doubleValue() const;
210 MEDCOUPLING_EXPORT bool empty() const;
211 MEDCOUPLING_EXPORT DataArrayDouble *deepCpy() const;
212 MEDCOUPLING_EXPORT DataArrayDouble *performCpy(bool deepCpy) const;
213 MEDCOUPLING_EXPORT void cpyFrom(const DataArrayDouble& other);
214 MEDCOUPLING_EXPORT void reserve(std::size_t nbOfElems);
215 MEDCOUPLING_EXPORT void pushBackSilent(double val);
216 MEDCOUPLING_EXPORT void pushBackValsSilent(const double *valsBg, const double *valsEnd);
217 MEDCOUPLING_EXPORT double popBackSilent();
218 MEDCOUPLING_EXPORT void pack() const;
219 MEDCOUPLING_EXPORT std::size_t getNbOfElemAllocated() const { return _mem.getNbOfElemAllocated(); }
220 MEDCOUPLING_EXPORT void alloc(int nbOfTuple, int nbOfCompo=1);
221 MEDCOUPLING_EXPORT void allocIfNecessary(int nbOfTuple, int nbOfCompo);
222 MEDCOUPLING_EXPORT void fillWithZero();
223 MEDCOUPLING_EXPORT void fillWithValue(double val);
224 MEDCOUPLING_EXPORT void iota(double init=0.);
225 MEDCOUPLING_EXPORT bool isUniform(double val, double eps) const;
226 MEDCOUPLING_EXPORT void sort(bool asc=true);
227 MEDCOUPLING_EXPORT void reverse();
228 MEDCOUPLING_EXPORT void checkMonotonic(bool increasing, double eps) const;
229 MEDCOUPLING_EXPORT bool isMonotonic(bool increasing, double eps) const;
230 MEDCOUPLING_EXPORT std::string repr() const;
231 MEDCOUPLING_EXPORT std::string reprZip() const;
232 MEDCOUPLING_EXPORT std::string reprNotTooLong() const;
233 MEDCOUPLING_EXPORT void writeVTK(std::ostream& ofs, int indent, const std::string& nameInFile, DataArrayByte *byteArr) const;
234 MEDCOUPLING_EXPORT void reprStream(std::ostream& stream) const;
235 MEDCOUPLING_EXPORT void reprZipStream(std::ostream& stream) const;
236 MEDCOUPLING_EXPORT void reprNotTooLongStream(std::ostream& stream) const;
237 MEDCOUPLING_EXPORT void reprWithoutNameStream(std::ostream& stream) const;
238 MEDCOUPLING_EXPORT void reprZipWithoutNameStream(std::ostream& stream) const;
239 MEDCOUPLING_EXPORT void reprNotTooLongWithoutNameStream(std::ostream& stream) const;
240 MEDCOUPLING_EXPORT void reprCppStream(const std::string& varName, std::ostream& stream) const;
241 MEDCOUPLING_EXPORT void reprQuickOverview(std::ostream& stream) const;
242 MEDCOUPLING_EXPORT void reprQuickOverviewData(std::ostream& stream, std::size_t maxNbOfByteInRepr) const;
243 MEDCOUPLING_EXPORT bool isEqual(const DataArrayDouble& other, double prec) const;
244 MEDCOUPLING_EXPORT bool isEqualIfNotWhy(const DataArrayDouble& other, double prec, std::string& reason) const;
245 MEDCOUPLING_EXPORT bool isEqualWithoutConsideringStr(const DataArrayDouble& other, double prec) const;
246 MEDCOUPLING_EXPORT void reAlloc(int nbOfTuples);
247 MEDCOUPLING_EXPORT DataArrayInt *convertToIntArr() const;
248 MEDCOUPLING_EXPORT DataArrayDouble *fromNoInterlace() const;
249 MEDCOUPLING_EXPORT DataArrayDouble *toNoInterlace() const;
250 MEDCOUPLING_EXPORT void renumberInPlace(const int *old2New);
251 MEDCOUPLING_EXPORT void renumberInPlaceR(const int *new2Old);
252 MEDCOUPLING_EXPORT DataArrayDouble *renumber(const int *old2New) const;
253 MEDCOUPLING_EXPORT DataArrayDouble *renumberR(const int *new2Old) const;
254 MEDCOUPLING_EXPORT DataArrayDouble *renumberAndReduce(const int *old2New, int newNbOfTuple) const;
255 MEDCOUPLING_EXPORT DataArrayDouble *selectByTupleId(const int *new2OldBg, const int *new2OldEnd) const;
256 MEDCOUPLING_EXPORT DataArrayDouble *selectByTupleIdSafe(const int *new2OldBg, const int *new2OldEnd) const;
257 MEDCOUPLING_EXPORT DataArrayDouble *selectByTupleId2(int bg, int end2, int step) const;
258 MEDCOUPLING_EXPORT DataArray *selectByTupleRanges(const std::vector<std::pair<int,int> >& ranges) const;
259 MEDCOUPLING_EXPORT DataArrayDouble *substr(int tupleIdBg, int tupleIdEnd=-1) const;
260 MEDCOUPLING_EXPORT void rearrange(int newNbOfCompo);
261 MEDCOUPLING_EXPORT void transpose();
262 MEDCOUPLING_EXPORT DataArrayDouble *changeNbOfComponents(int newNbOfComp, double dftValue) const;
263 MEDCOUPLING_EXPORT DataArrayDouble *keepSelectedComponents(const std::vector<int>& compoIds) const;
264 MEDCOUPLING_EXPORT void meldWith(const DataArrayDouble *other);
265 MEDCOUPLING_EXPORT bool areIncludedInMe(const DataArrayDouble *other, double prec, DataArrayInt *&tupleIds) const;
266 MEDCOUPLING_EXPORT void findCommonTuples(double prec, int limitTupleId, DataArrayInt *&comm, DataArrayInt *&commIndex) const;
267 MEDCOUPLING_EXPORT double minimalDistanceTo(const DataArrayDouble *other, int& thisTupleId, int& otherTupleId) const;
268 MEDCOUPLING_EXPORT DataArrayDouble *duplicateEachTupleNTimes(int nbTimes) const;
269 MEDCOUPLING_EXPORT DataArrayDouble *getDifferentValues(double prec, int limitTupleId=-1) const;
270 MEDCOUPLING_EXPORT DataArrayInt *findClosestTupleId(const DataArrayDouble *other) const;
271 MEDCOUPLING_EXPORT DataArrayInt *computeNbOfInteractionsWith(const DataArrayDouble *otherBBoxFrmt, double eps) const;
272 MEDCOUPLING_EXPORT void setSelectedComponents(const DataArrayDouble *a, const std::vector<int>& compoIds);
273 MEDCOUPLING_EXPORT void setPartOfValues1(const DataArrayDouble *a, int bgTuples, int endTuples, int stepTuples, int bgComp, int endComp, int stepComp, bool strictCompoCompare=true);
274 MEDCOUPLING_EXPORT void setPartOfValuesSimple1(double a, int bgTuples, int endTuples, int stepTuples, int bgComp, int endComp, int stepComp);
275 MEDCOUPLING_EXPORT void setPartOfValues2(const DataArrayDouble *a, const int *bgTuples, const int *endTuples, const int *bgComp, const int *endComp, bool strictCompoCompare=true);
276 MEDCOUPLING_EXPORT void setPartOfValuesSimple2(double a, const int *bgTuples, const int *endTuples, const int *bgComp, const int *endComp);
277 MEDCOUPLING_EXPORT void setPartOfValues3(const DataArrayDouble *a, const int *bgTuples, const int *endTuples, int bgComp, int endComp, int stepComp, bool strictCompoCompare=true);
278 MEDCOUPLING_EXPORT void setPartOfValuesSimple3(double a, const int *bgTuples, const int *endTuples, int bgComp, int endComp, int stepComp);
279 MEDCOUPLING_EXPORT void setPartOfValues4(const DataArrayDouble *a, int bgTuples, int endTuples, int stepTuples, const int *bgComp, const int *endComp, bool strictCompoCompare=true);
280 MEDCOUPLING_EXPORT void setPartOfValuesSimple4(double a, int bgTuples, int endTuples, int stepTuples, const int *bgComp, const int *endComp);
281 MEDCOUPLING_EXPORT void setPartOfValuesAdv(const DataArrayDouble *a, const DataArrayInt *tuplesSelec);
282 MEDCOUPLING_EXPORT void setContigPartOfSelectedValues(int tupleIdStart, const DataArray *aBase, const DataArrayInt *tuplesSelec);
283 MEDCOUPLING_EXPORT void setContigPartOfSelectedValues2(int tupleIdStart, const DataArray *aBase, int bg, int end2, int step);
284 MEDCOUPLING_EXPORT void getTuple(int tupleId, double *res) const { std::copy(_mem.getConstPointerLoc(tupleId*_info_on_compo.size()),_mem.getConstPointerLoc((tupleId+1)*_info_on_compo.size()),res); }
285 MEDCOUPLING_EXPORT double getIJ(int tupleId, int compoId) const { return _mem[tupleId*_info_on_compo.size()+compoId]; }
286 MEDCOUPLING_EXPORT double front() const;
287 MEDCOUPLING_EXPORT double back() const;
288 MEDCOUPLING_EXPORT double getIJSafe(int tupleId, int compoId) const;
289 MEDCOUPLING_EXPORT void setIJ(int tupleId, int compoId, double newVal) { _mem[tupleId*_info_on_compo.size()+compoId]=newVal; declareAsNew(); }
290 MEDCOUPLING_EXPORT void setIJSilent(int tupleId, int compoId, double newVal) { _mem[tupleId*_info_on_compo.size()+compoId]=newVal; }
291 MEDCOUPLING_EXPORT double *getPointer() { return _mem.getPointer(); declareAsNew(); }
292 MEDCOUPLING_EXPORT static void SetArrayIn(DataArrayDouble *newArray, DataArrayDouble* &arrayToSet);
293 MEDCOUPLING_EXPORT const double *getConstPointer() const { return _mem.getConstPointer(); }
294 MEDCOUPLING_EXPORT DataArrayDoubleIterator *iterator();
295 MEDCOUPLING_EXPORT const double *begin() const { return getConstPointer(); }
296 MEDCOUPLING_EXPORT const double *end() const { return getConstPointer()+getNbOfElems(); }
297 MEDCOUPLING_EXPORT void useArray(const double *array, bool ownership, DeallocType type, int nbOfTuple, int nbOfCompo);
298 MEDCOUPLING_EXPORT void useExternalArrayWithRWAccess(const double *array, int nbOfTuple, int nbOfCompo);
299 template<class InputIterator>
300 void insertAtTheEnd(InputIterator first, InputIterator last);
301 MEDCOUPLING_EXPORT void writeOnPlace(std::size_t id, double element0, const double *others, int sizeOfOthers) { _mem.writeOnPlace(id,element0,others,sizeOfOthers); }
302 MEDCOUPLING_EXPORT void checkNoNullValues() const;
303 MEDCOUPLING_EXPORT void getMinMaxPerComponent(double *bounds) const;
304 MEDCOUPLING_EXPORT DataArrayDouble *computeBBoxPerTuple(double epsilon=0.0) const;
305 MEDCOUPLING_EXPORT void computeTupleIdsNearTuples(const DataArrayDouble *other, double eps, DataArrayInt *& c, DataArrayInt *& cI) const;
306 MEDCOUPLING_EXPORT void recenterForMaxPrecision(double eps);
307 MEDCOUPLING_EXPORT double getMaxValue(int& tupleId) const;
308 MEDCOUPLING_EXPORT double getMaxValueInArray() const;
309 MEDCOUPLING_EXPORT double getMinValue(int& tupleId) const;
310 MEDCOUPLING_EXPORT double getMinValueInArray() const;
311 MEDCOUPLING_EXPORT double getMaxValue2(DataArrayInt*& tupleIds) const;
312 MEDCOUPLING_EXPORT double getMinValue2(DataArrayInt*& tupleIds) const;
313 MEDCOUPLING_EXPORT int count(double value, double eps) const;
314 MEDCOUPLING_EXPORT double getAverageValue() const;
315 MEDCOUPLING_EXPORT double norm2() const;
316 MEDCOUPLING_EXPORT double normMax() const;
317 MEDCOUPLING_EXPORT double normMin() const;
318 MEDCOUPLING_EXPORT void accumulate(double *res) const;
319 MEDCOUPLING_EXPORT double accumulate(int compId) const;
320 MEDCOUPLING_EXPORT DataArrayDouble *accumulatePerChunck(const int *bgOfIndex, const int *endOfIndex) const;
321 MEDCOUPLING_EXPORT double distanceToTuple(const double *tupleBg, const double *tupleEnd, int& tupleId) const;
322 MEDCOUPLING_EXPORT DataArrayDouble *fromPolarToCart() const;
323 MEDCOUPLING_EXPORT DataArrayDouble *fromCylToCart() const;
324 MEDCOUPLING_EXPORT DataArrayDouble *fromSpherToCart() const;
325 MEDCOUPLING_EXPORT DataArrayDouble *doublyContractedProduct() const;
326 MEDCOUPLING_EXPORT DataArrayDouble *determinant() const;
327 MEDCOUPLING_EXPORT DataArrayDouble *eigenValues() const;
328 MEDCOUPLING_EXPORT DataArrayDouble *eigenVectors() const;
329 MEDCOUPLING_EXPORT DataArrayDouble *inverse() const;
330 MEDCOUPLING_EXPORT DataArrayDouble *trace() const;
331 MEDCOUPLING_EXPORT DataArrayDouble *deviator() const;
332 MEDCOUPLING_EXPORT DataArrayDouble *magnitude() const;
333 MEDCOUPLING_EXPORT DataArrayDouble *sumPerTuple() const;
334 MEDCOUPLING_EXPORT DataArrayDouble *maxPerTuple() const;
335 MEDCOUPLING_EXPORT DataArrayDouble *maxPerTupleWithCompoId(DataArrayInt* &compoIdOfMaxPerTuple) const;
336 MEDCOUPLING_EXPORT DataArrayDouble *buildEuclidianDistanceDenseMatrix() const;
337 MEDCOUPLING_EXPORT DataArrayDouble *buildEuclidianDistanceDenseMatrixWith(const DataArrayDouble *other) const;
338 MEDCOUPLING_EXPORT void sortPerTuple(bool asc);
339 MEDCOUPLING_EXPORT void abs();
340 MEDCOUPLING_EXPORT DataArrayDouble *computeAbs() const;
341 MEDCOUPLING_EXPORT void applyLin(double a, double b, int compoId);
342 MEDCOUPLING_EXPORT void applyLin(double a, double b);
343 MEDCOUPLING_EXPORT void applyInv(double numerator);
344 MEDCOUPLING_EXPORT void applyPow(double val);
345 MEDCOUPLING_EXPORT void applyRPow(double val);
346 MEDCOUPLING_EXPORT DataArrayDouble *negate() const;
347 MEDCOUPLING_EXPORT DataArrayDouble *applyFunc(int nbOfComp, FunctionToEvaluate func) const;
348 MEDCOUPLING_EXPORT DataArrayDouble *applyFunc(int nbOfComp, const std::string& func, bool isSafe=true) const;
349 MEDCOUPLING_EXPORT DataArrayDouble *applyFunc(const std::string& func, bool isSafe=true) const;
350 MEDCOUPLING_EXPORT void applyFuncOnThis(const std::string& func, bool isSafe=true);
351 MEDCOUPLING_EXPORT DataArrayDouble *applyFunc2(int nbOfComp, const std::string& func, bool isSafe=true) const;
352 MEDCOUPLING_EXPORT DataArrayDouble *applyFunc3(int nbOfComp, const std::vector<std::string>& varsOrder, const std::string& func, bool isSafe=true) const;
353 MEDCOUPLING_EXPORT void applyFuncFast32(const std::string& func);
354 MEDCOUPLING_EXPORT void applyFuncFast64(const std::string& func);
355 MEDCOUPLING_EXPORT DataArrayInt *getIdsInRange(double vmin, double vmax) const;
356 MEDCOUPLING_EXPORT DataArrayInt *getIdsNotInRange(double vmin, double vmax) const;
357 MEDCOUPLING_EXPORT static DataArrayDouble *Aggregate(const DataArrayDouble *a1, const DataArrayDouble *a2);
358 MEDCOUPLING_EXPORT static DataArrayDouble *Aggregate(const std::vector<const DataArrayDouble *>& arr);
359 MEDCOUPLING_EXPORT static DataArrayDouble *Meld(const DataArrayDouble *a1, const DataArrayDouble *a2);
360 MEDCOUPLING_EXPORT static DataArrayDouble *Meld(const std::vector<const DataArrayDouble *>& arr);
361 MEDCOUPLING_EXPORT static DataArrayDouble *Dot(const DataArrayDouble *a1, const DataArrayDouble *a2);
362 MEDCOUPLING_EXPORT static DataArrayDouble *CrossProduct(const DataArrayDouble *a1, const DataArrayDouble *a2);
363 MEDCOUPLING_EXPORT static DataArrayDouble *Max(const DataArrayDouble *a1, const DataArrayDouble *a2);
364 MEDCOUPLING_EXPORT static DataArrayDouble *Min(const DataArrayDouble *a1, const DataArrayDouble *a2);
365 MEDCOUPLING_EXPORT static DataArrayDouble *Add(const DataArrayDouble *a1, const DataArrayDouble *a2);
366 MEDCOUPLING_EXPORT void addEqual(const DataArrayDouble *other);
367 MEDCOUPLING_EXPORT static DataArrayDouble *Substract(const DataArrayDouble *a1, const DataArrayDouble *a2);
368 MEDCOUPLING_EXPORT void substractEqual(const DataArrayDouble *other);
369 MEDCOUPLING_EXPORT static DataArrayDouble *Multiply(const DataArrayDouble *a1, const DataArrayDouble *a2);
370 MEDCOUPLING_EXPORT void multiplyEqual(const DataArrayDouble *other);
371 MEDCOUPLING_EXPORT static DataArrayDouble *Divide(const DataArrayDouble *a1, const DataArrayDouble *a2);
372 MEDCOUPLING_EXPORT void divideEqual(const DataArrayDouble *other);
373 MEDCOUPLING_EXPORT static DataArrayDouble *Pow(const DataArrayDouble *a1, const DataArrayDouble *a2);
374 MEDCOUPLING_EXPORT void powEqual(const DataArrayDouble *other);
375 MEDCOUPLING_EXPORT void updateTime() const { }
376 MEDCOUPLING_EXPORT MemArray<double>& accessToMemArray() { return _mem; }
377 MEDCOUPLING_EXPORT const MemArray<double>& accessToMemArray() const { return _mem; }
378 MEDCOUPLING_EXPORT std::vector<bool> toVectorOfBool(double eps) const;
380 MEDCOUPLING_EXPORT void getTinySerializationIntInformation(std::vector<int>& tinyInfo) const;
381 MEDCOUPLING_EXPORT void getTinySerializationStrInformation(std::vector<std::string>& tinyInfo) const;
382 MEDCOUPLING_EXPORT bool resizeForUnserialization(const std::vector<int>& tinyInfoI);
383 MEDCOUPLING_EXPORT void finishUnserialization(const std::vector<int>& tinyInfoI, const std::vector<std::string>& tinyInfoS);
385 template<int SPACEDIM>
386 void findCommonTuplesAlg(const double *bbox, int nbNodes, int limitNodeId, double prec, DataArrayInt *c, DataArrayInt *cI) const;
387 template<int SPACEDIM>
388 static void FindClosestTupleIdAlg(const BBTreePts<SPACEDIM,int>& myTree, double dist, const double *pos, int nbOfTuples, const double *thisPt, int thisNbOfTuples, int *res);
389 template<int SPACEDIM>
390 static void FindTupleIdsNearTuplesAlg(const BBTreePts<SPACEDIM,int>& myTree, const double *pos, int nbOfTuples, double eps,
391 DataArrayInt *c, DataArrayInt *cI);
393 ~DataArrayDouble() { }
394 DataArrayDouble() { }
396 MemArray<double> _mem;
399 class DataArrayDoubleTuple;
401 class DataArrayDoubleIterator
404 MEDCOUPLING_EXPORT DataArrayDoubleIterator(DataArrayDouble *da);
405 MEDCOUPLING_EXPORT ~DataArrayDoubleIterator();
406 MEDCOUPLING_EXPORT DataArrayDoubleTuple *nextt();
408 DataArrayDouble *_da;
415 class DataArrayDoubleTuple
418 MEDCOUPLING_EXPORT DataArrayDoubleTuple(double *pt, int nbOfComp);
419 MEDCOUPLING_EXPORT std::string repr() const;
420 MEDCOUPLING_EXPORT int getNumberOfCompo() const { return _nb_of_compo; }
421 MEDCOUPLING_EXPORT const double *getConstPointer() const { return _pt; }
422 MEDCOUPLING_EXPORT double *getPointer() { return _pt; }
423 MEDCOUPLING_EXPORT double doubleValue() const;
424 MEDCOUPLING_EXPORT DataArrayDouble *buildDADouble(int nbOfTuples, int nbOfCompo) const;
430 class DataArrayIntIterator;
432 class DataArrayInt : public DataArray
435 MEDCOUPLING_EXPORT static DataArrayInt *New();
436 MEDCOUPLING_EXPORT bool isAllocated() const;
437 MEDCOUPLING_EXPORT void checkAllocated() const;
438 MEDCOUPLING_EXPORT void desallocate();
439 MEDCOUPLING_EXPORT int getNumberOfTuples() const { return _info_on_compo.empty()?0:_mem.getNbOfElem()/getNumberOfComponents(); }
440 MEDCOUPLING_EXPORT std::size_t getNbOfElems() const { return _mem.getNbOfElem(); }
441 MEDCOUPLING_EXPORT std::size_t getHeapMemorySizeWithoutChildren() const;
442 MEDCOUPLING_EXPORT int intValue() const;
443 MEDCOUPLING_EXPORT int getHashCode() const;
444 MEDCOUPLING_EXPORT bool empty() const;
445 MEDCOUPLING_EXPORT DataArrayInt *deepCpy() const;
446 MEDCOUPLING_EXPORT DataArrayInt *performCpy(bool deepCpy) const;
447 MEDCOUPLING_EXPORT void cpyFrom(const DataArrayInt& other);
448 MEDCOUPLING_EXPORT void reserve(std::size_t nbOfElems);
449 MEDCOUPLING_EXPORT void pushBackSilent(int val);
450 MEDCOUPLING_EXPORT void pushBackValsSilent(const int *valsBg, const int *valsEnd);
451 MEDCOUPLING_EXPORT int popBackSilent();
452 MEDCOUPLING_EXPORT void pack() const;
453 MEDCOUPLING_EXPORT std::size_t getNbOfElemAllocated() const { return _mem.getNbOfElemAllocated(); }
454 MEDCOUPLING_EXPORT void alloc(int nbOfTuple, int nbOfCompo=1);
455 MEDCOUPLING_EXPORT void allocIfNecessary(int nbOfTuple, int nbOfCompo);
456 MEDCOUPLING_EXPORT bool isEqual(const DataArrayInt& other) const;
457 MEDCOUPLING_EXPORT bool isEqualIfNotWhy(const DataArrayInt& other, std::string& reason) const;
458 MEDCOUPLING_EXPORT bool isEqualWithoutConsideringStr(const DataArrayInt& other) const;
459 MEDCOUPLING_EXPORT bool isEqualWithoutConsideringStrAndOrder(const DataArrayInt& other) const;
460 MEDCOUPLING_EXPORT bool isFittingWith(const std::vector<bool>& v) const;
461 MEDCOUPLING_EXPORT void switchOnTupleEqualTo(int val, std::vector<bool>& vec) const;
462 MEDCOUPLING_EXPORT DataArrayInt *buildPermutationArr(const DataArrayInt& other) const;
463 MEDCOUPLING_EXPORT DataArrayInt *sumPerTuple() const;
464 MEDCOUPLING_EXPORT void sort(bool asc=true);
465 MEDCOUPLING_EXPORT void reverse();
466 MEDCOUPLING_EXPORT void checkMonotonic(bool increasing) const;
467 MEDCOUPLING_EXPORT bool isMonotonic(bool increasing) const;
468 MEDCOUPLING_EXPORT void checkStrictlyMonotonic(bool increasing) const;
469 MEDCOUPLING_EXPORT bool isStrictlyMonotonic(bool increasing) const;
470 MEDCOUPLING_EXPORT void fillWithZero();
471 MEDCOUPLING_EXPORT void fillWithValue(int val);
472 MEDCOUPLING_EXPORT void iota(int init=0);
473 MEDCOUPLING_EXPORT std::string repr() const;
474 MEDCOUPLING_EXPORT std::string reprZip() const;
475 MEDCOUPLING_EXPORT std::string reprNotTooLong() const;
476 MEDCOUPLING_EXPORT void writeVTK(std::ostream& ofs, int indent, const std::string& type, const std::string& nameInFile, DataArrayByte *byteArr) const;
477 MEDCOUPLING_EXPORT void reprStream(std::ostream& stream) const;
478 MEDCOUPLING_EXPORT void reprZipStream(std::ostream& stream) const;
479 MEDCOUPLING_EXPORT void reprNotTooLongStream(std::ostream& stream) const;
480 MEDCOUPLING_EXPORT void reprWithoutNameStream(std::ostream& stream) const;
481 MEDCOUPLING_EXPORT void reprZipWithoutNameStream(std::ostream& stream) const;
482 MEDCOUPLING_EXPORT void reprNotTooLongWithoutNameStream(std::ostream& stream) const;
483 MEDCOUPLING_EXPORT void reprCppStream(const std::string& varName, std::ostream& stream) const;
484 MEDCOUPLING_EXPORT void reprQuickOverview(std::ostream& stream) const;
485 MEDCOUPLING_EXPORT void reprQuickOverviewData(std::ostream& stream, std::size_t maxNbOfByteInRepr) const;
486 MEDCOUPLING_EXPORT void transformWithIndArr(const int *indArrBg, const int *indArrEnd);
487 MEDCOUPLING_EXPORT void replaceOneValByInThis(int valToBeReplaced, int replacedBy);
488 MEDCOUPLING_EXPORT DataArrayInt *transformWithIndArrR(const int *indArrBg, const int *indArrEnd) const;
489 MEDCOUPLING_EXPORT void splitByValueRange(const int *arrBg, const int *arrEnd,
490 DataArrayInt *& castArr, DataArrayInt *& rankInsideCast, DataArrayInt *& castsPresent) const;
491 MEDCOUPLING_EXPORT bool isRange(int& strt, int& sttoopp, int& stteepp) const;
492 MEDCOUPLING_EXPORT DataArrayInt *invertArrayO2N2N2O(int newNbOfElem) const;
493 MEDCOUPLING_EXPORT DataArrayInt *invertArrayN2O2O2N(int oldNbOfElem) const;
494 MEDCOUPLING_EXPORT DataArrayInt *invertArrayO2N2N2OBis(int newNbOfElem) const;
495 MEDCOUPLING_EXPORT void reAlloc(int nbOfTuples);
496 MEDCOUPLING_EXPORT DataArrayDouble *convertToDblArr() const;
497 MEDCOUPLING_EXPORT DataArrayInt *fromNoInterlace() const;
498 MEDCOUPLING_EXPORT DataArrayInt *toNoInterlace() const;
499 MEDCOUPLING_EXPORT void renumberInPlace(const int *old2New);
500 MEDCOUPLING_EXPORT void renumberInPlaceR(const int *new2Old);
501 MEDCOUPLING_EXPORT DataArrayInt *renumber(const int *old2New) const;
502 MEDCOUPLING_EXPORT DataArrayInt *renumberR(const int *new2Old) const;
503 MEDCOUPLING_EXPORT DataArrayInt *renumberAndReduce(const int *old2NewBg, int newNbOfTuple) const;
504 MEDCOUPLING_EXPORT DataArrayInt *selectByTupleId(const int *new2OldBg, const int *new2OldEnd) const;
505 MEDCOUPLING_EXPORT DataArrayInt *selectByTupleIdSafe(const int *new2OldBg, const int *new2OldEnd) const;
506 MEDCOUPLING_EXPORT DataArrayInt *selectByTupleId2(int bg, int end, int step) const;
507 MEDCOUPLING_EXPORT DataArray *selectByTupleRanges(const std::vector<std::pair<int,int> >& ranges) const;
508 MEDCOUPLING_EXPORT DataArrayInt *checkAndPreparePermutation() const;
509 MEDCOUPLING_EXPORT static DataArrayInt *FindPermutationFromFirstToSecond(const DataArrayInt *ids1, const DataArrayInt *ids2);
510 MEDCOUPLING_EXPORT void changeSurjectiveFormat(int targetNb, DataArrayInt *&arr, DataArrayInt *&arrI) const;
511 MEDCOUPLING_EXPORT static DataArrayInt *BuildOld2NewArrayFromSurjectiveFormat2(int nbOfOldTuples, const int *arr, const int *arrIBg, const int *arrIEnd, int &newNbOfTuples);
512 MEDCOUPLING_EXPORT DataArrayInt *buildPermArrPerLevel() const;
513 MEDCOUPLING_EXPORT bool isIdentity() const;
514 MEDCOUPLING_EXPORT bool isIdentity2(int sizeExpected) const;
515 MEDCOUPLING_EXPORT bool isUniform(int val) const;
516 MEDCOUPLING_EXPORT DataArrayInt *substr(int tupleIdBg, int tupleIdEnd=-1) const;
517 MEDCOUPLING_EXPORT void rearrange(int newNbOfCompo);
518 MEDCOUPLING_EXPORT void transpose();
519 MEDCOUPLING_EXPORT DataArrayInt *changeNbOfComponents(int newNbOfComp, int dftValue) const;
520 MEDCOUPLING_EXPORT DataArrayInt *keepSelectedComponents(const std::vector<int>& compoIds) const;
521 MEDCOUPLING_EXPORT void meldWith(const DataArrayInt *other);
522 MEDCOUPLING_EXPORT void setSelectedComponents(const DataArrayInt *a, const std::vector<int>& compoIds);
523 MEDCOUPLING_EXPORT void setPartOfValues1(const DataArrayInt *a, int bgTuples, int endTuples, int stepTuples, int bgComp, int endComp, int stepComp, bool strictCompoCompare=true);
524 MEDCOUPLING_EXPORT void setPartOfValuesSimple1(int a, int bgTuples, int endTuples, int stepTuples, int bgComp, int endComp, int stepComp);
525 MEDCOUPLING_EXPORT void setPartOfValues2(const DataArrayInt *a, const int *bgTuples, const int *endTuples, const int *bgComp, const int *endComp, bool strictCompoCompare=true);
526 MEDCOUPLING_EXPORT void setPartOfValuesSimple2(int a, const int *bgTuples, const int *endTuples, const int *bgComp, const int *endComp);
527 MEDCOUPLING_EXPORT void setPartOfValues3(const DataArrayInt *a, const int *bgTuples, const int *endTuples, int bgComp, int endComp, int stepComp, bool strictCompoCompare=true);
528 MEDCOUPLING_EXPORT void setPartOfValuesSimple3(int a, const int *bgTuples, const int *endTuples, int bgComp, int endComp, int stepComp);
529 MEDCOUPLING_EXPORT void setPartOfValues4(const DataArrayInt *a, int bgTuples, int endTuples, int stepTuples, const int *bgComp, const int *endComp, bool strictCompoCompare=true);
530 MEDCOUPLING_EXPORT void setPartOfValuesSimple4(int a, int bgTuples, int endTuples, int stepTuples, const int *bgComp, const int *endComp);
531 MEDCOUPLING_EXPORT void setPartOfValuesAdv(const DataArrayInt *a, const DataArrayInt *tuplesSelec);
532 MEDCOUPLING_EXPORT void setContigPartOfSelectedValues(int tupleIdStart, const DataArray *aBase, const DataArrayInt *tuplesSelec);
533 MEDCOUPLING_EXPORT void setContigPartOfSelectedValues2(int tupleIdStart, const DataArray *aBase, int bg, int end2, int step);
534 MEDCOUPLING_EXPORT void getTuple(int tupleId, int *res) const { std::copy(_mem.getConstPointerLoc(tupleId*_info_on_compo.size()),_mem.getConstPointerLoc((tupleId+1)*_info_on_compo.size()),res); }
535 MEDCOUPLING_EXPORT int getIJ(int tupleId, int compoId) const { return _mem[tupleId*_info_on_compo.size()+compoId]; }
536 MEDCOUPLING_EXPORT int getIJSafe(int tupleId, int compoId) const;
537 MEDCOUPLING_EXPORT int front() const;
538 MEDCOUPLING_EXPORT int back() const;
539 MEDCOUPLING_EXPORT void setIJ(int tupleId, int compoId, int newVal) { _mem[tupleId*_info_on_compo.size()+compoId]=newVal; declareAsNew(); }
540 MEDCOUPLING_EXPORT void setIJSilent(int tupleId, int compoId, int newVal) { _mem[tupleId*_info_on_compo.size()+compoId]=newVal; }
541 MEDCOUPLING_EXPORT int *getPointer() { return _mem.getPointer(); declareAsNew(); }
542 MEDCOUPLING_EXPORT static void SetArrayIn(DataArrayInt *newArray, DataArrayInt* &arrayToSet);
543 MEDCOUPLING_EXPORT const int *getConstPointer() const { return _mem.getConstPointer(); }
544 MEDCOUPLING_EXPORT DataArrayIntIterator *iterator();
545 MEDCOUPLING_EXPORT const int *begin() const { return getConstPointer(); }
546 MEDCOUPLING_EXPORT const int *end() const { return getConstPointer()+getNbOfElems(); }
547 MEDCOUPLING_EXPORT DataArrayInt *getIdsEqual(int val) const;
548 MEDCOUPLING_EXPORT DataArrayInt *getIdsNotEqual(int val) const;
549 MEDCOUPLING_EXPORT DataArrayInt *getIdsEqualList(const int *valsBg, const int *valsEnd) const;
550 MEDCOUPLING_EXPORT DataArrayInt *getIdsNotEqualList(const int *valsBg, const int *valsEnd) const;
551 MEDCOUPLING_EXPORT DataArrayInt *getIdsEqualTuple(const int *tupleBg, const int *tupleEnd) const;
552 MEDCOUPLING_EXPORT int changeValue(int oldValue, int newValue);
553 MEDCOUPLING_EXPORT int locateTuple(const std::vector<int>& tupl) const;
554 MEDCOUPLING_EXPORT int locateValue(int value) const;
555 MEDCOUPLING_EXPORT int locateValue(const std::vector<int>& vals) const;
556 MEDCOUPLING_EXPORT int search(const std::vector<int>& vals) const;
557 MEDCOUPLING_EXPORT bool presenceOfTuple(const std::vector<int>& tupl) const;
558 MEDCOUPLING_EXPORT bool presenceOfValue(int value) const;
559 MEDCOUPLING_EXPORT bool presenceOfValue(const std::vector<int>& vals) const;
560 MEDCOUPLING_EXPORT int count(int value) const;
561 MEDCOUPLING_EXPORT void accumulate(int *res) const;
562 MEDCOUPLING_EXPORT int accumulate(int compId) const;
563 MEDCOUPLING_EXPORT DataArrayInt *accumulatePerChunck(const int *bgOfIndex, const int *endOfIndex) const;
564 MEDCOUPLING_EXPORT int getMaxValue(int& tupleId) const;
565 MEDCOUPLING_EXPORT int getMaxValueInArray() const;
566 MEDCOUPLING_EXPORT int getMinValue(int& tupleId) const;
567 MEDCOUPLING_EXPORT int getMinValueInArray() const;
568 MEDCOUPLING_EXPORT void getMinMaxValues(int& minValue, int& maxValue) const;
569 MEDCOUPLING_EXPORT void abs();
570 MEDCOUPLING_EXPORT DataArrayInt *computeAbs() const;
571 MEDCOUPLING_EXPORT void applyLin(int a, int b, int compoId);
572 MEDCOUPLING_EXPORT void applyLin(int a, int b);
573 MEDCOUPLING_EXPORT void applyInv(int numerator);
574 MEDCOUPLING_EXPORT DataArrayInt *negate() const;
575 MEDCOUPLING_EXPORT void applyDivideBy(int val);
576 MEDCOUPLING_EXPORT void applyModulus(int val);
577 MEDCOUPLING_EXPORT void applyRModulus(int val);
578 MEDCOUPLING_EXPORT void applyPow(int val);
579 MEDCOUPLING_EXPORT void applyRPow(int val);
580 MEDCOUPLING_EXPORT DataArrayInt *getIdsInRange(int vmin, int vmax) const;
581 MEDCOUPLING_EXPORT DataArrayInt *getIdsNotInRange(int vmin, int vmax) const;
582 MEDCOUPLING_EXPORT DataArrayInt *getIdsStrictlyNegative() const;
583 MEDCOUPLING_EXPORT bool checkAllIdsInRange(int vmin, int vmax) const;
584 MEDCOUPLING_EXPORT static DataArrayInt *Aggregate(const DataArrayInt *a1, const DataArrayInt *a2, int offsetA2);
585 MEDCOUPLING_EXPORT static DataArrayInt *Aggregate(const std::vector<const DataArrayInt *>& arr);
586 MEDCOUPLING_EXPORT static DataArrayInt *AggregateIndexes(const std::vector<const DataArrayInt *>& arrs);
587 MEDCOUPLING_EXPORT static DataArrayInt *Meld(const DataArrayInt *a1, const DataArrayInt *a2);
588 MEDCOUPLING_EXPORT static DataArrayInt *Meld(const std::vector<const DataArrayInt *>& arr);
589 MEDCOUPLING_EXPORT static DataArrayInt *MakePartition(const std::vector<const DataArrayInt *>& groups, int newNb, std::vector< std::vector<int> >& fidsOfGroups);
590 MEDCOUPLING_EXPORT static DataArrayInt *BuildUnion(const std::vector<const DataArrayInt *>& arr);
591 MEDCOUPLING_EXPORT static DataArrayInt *BuildIntersection(const std::vector<const DataArrayInt *>& arr);
592 MEDCOUPLING_EXPORT static DataArrayInt *BuildListOfSwitchedOn(const std::vector<bool>& v);
593 MEDCOUPLING_EXPORT static DataArrayInt *BuildListOfSwitchedOff(const std::vector<bool>& v);
594 MEDCOUPLING_EXPORT static void PutIntoToSkylineFrmt(const std::vector< std::vector<int> >& v, DataArrayInt *& data, DataArrayInt *& dataIndex);
595 MEDCOUPLING_EXPORT DataArrayInt *buildComplement(int nbOfElement) const;
596 MEDCOUPLING_EXPORT DataArrayInt *buildSubstraction(const DataArrayInt *other) const;
597 MEDCOUPLING_EXPORT DataArrayInt *buildSubstractionOptimized(const DataArrayInt *other) const;
598 MEDCOUPLING_EXPORT DataArrayInt *buildUnion(const DataArrayInt *other) const;
599 MEDCOUPLING_EXPORT DataArrayInt *buildIntersection(const DataArrayInt *other) const;
600 MEDCOUPLING_EXPORT DataArrayInt *buildUnique() const;
601 MEDCOUPLING_EXPORT DataArrayInt *buildUniqueNotSorted() const;
602 MEDCOUPLING_EXPORT DataArrayInt *deltaShiftIndex() const;
603 MEDCOUPLING_EXPORT void computeOffsets();
604 MEDCOUPLING_EXPORT void computeOffsets2();
605 MEDCOUPLING_EXPORT void searchRangesInListOfIds(const DataArrayInt *listOfIds, DataArrayInt *& rangeIdsFetched, DataArrayInt *& idsInInputListThatFetch) const;
606 MEDCOUPLING_EXPORT DataArrayInt *buildExplicitArrByRanges(const DataArrayInt *offsets) const;
607 MEDCOUPLING_EXPORT DataArrayInt *buildExplicitArrOfSliceOnScaledArr(int begin, int stop, int step) const;
608 MEDCOUPLING_EXPORT DataArrayInt *findRangeIdForEachTuple(const DataArrayInt *ranges) const;
609 MEDCOUPLING_EXPORT DataArrayInt *findIdInRangeForEachTuple(const DataArrayInt *ranges) const;
610 MEDCOUPLING_EXPORT void sortEachPairToMakeALinkedList();
611 MEDCOUPLING_EXPORT DataArrayInt *duplicateEachTupleNTimes(int nbTimes) const;
612 MEDCOUPLING_EXPORT DataArrayInt *getDifferentValues() const;
613 MEDCOUPLING_EXPORT std::vector<DataArrayInt *> partitionByDifferentValues(std::vector<int>& differentIds) const;
614 MEDCOUPLING_EXPORT std::vector< std::pair<int,int> > splitInBalancedSlices(int nbOfSlices) const;
615 MEDCOUPLING_EXPORT void useArray(const int *array, bool ownership, DeallocType type, int nbOfTuple, int nbOfCompo);
616 MEDCOUPLING_EXPORT void useExternalArrayWithRWAccess(const int *array, int nbOfTuple, int nbOfCompo);
617 template<class InputIterator>
618 void insertAtTheEnd(InputIterator first, InputIterator last);
619 MEDCOUPLING_EXPORT void writeOnPlace(std::size_t id, int element0, const int *others, int sizeOfOthers) { _mem.writeOnPlace(id,element0,others,sizeOfOthers); }
620 MEDCOUPLING_EXPORT static DataArrayInt *Add(const DataArrayInt *a1, const DataArrayInt *a2);
621 MEDCOUPLING_EXPORT void addEqual(const DataArrayInt *other);
622 MEDCOUPLING_EXPORT static DataArrayInt *Substract(const DataArrayInt *a1, const DataArrayInt *a2);
623 MEDCOUPLING_EXPORT void substractEqual(const DataArrayInt *other);
624 MEDCOUPLING_EXPORT static DataArrayInt *Multiply(const DataArrayInt *a1, const DataArrayInt *a2);
625 MEDCOUPLING_EXPORT void multiplyEqual(const DataArrayInt *other);
626 MEDCOUPLING_EXPORT static DataArrayInt *Divide(const DataArrayInt *a1, const DataArrayInt *a2);
627 MEDCOUPLING_EXPORT void divideEqual(const DataArrayInt *other);
628 MEDCOUPLING_EXPORT static DataArrayInt *Modulus(const DataArrayInt *a1, const DataArrayInt *a2);
629 MEDCOUPLING_EXPORT void modulusEqual(const DataArrayInt *other);
630 MEDCOUPLING_EXPORT static DataArrayInt *Pow(const DataArrayInt *a1, const DataArrayInt *a2);
631 MEDCOUPLING_EXPORT void powEqual(const DataArrayInt *other);
632 MEDCOUPLING_EXPORT void updateTime() const { }
633 MEDCOUPLING_EXPORT MemArray<int>& accessToMemArray() { return _mem; }
634 MEDCOUPLING_EXPORT const MemArray<int>& accessToMemArray() const { return _mem; }
636 MEDCOUPLING_EXPORT static int *CheckAndPreparePermutation(const int *start, const int *end);
637 MEDCOUPLING_EXPORT static DataArrayInt *Range(int begin, int end, int step);
639 MEDCOUPLING_EXPORT void getTinySerializationIntInformation(std::vector<int>& tinyInfo) const;
640 MEDCOUPLING_EXPORT void getTinySerializationStrInformation(std::vector<std::string>& tinyInfo) const;
641 MEDCOUPLING_EXPORT bool resizeForUnserialization(const std::vector<int>& tinyInfoI);
642 MEDCOUPLING_EXPORT void finishUnserialization(const std::vector<int>& tinyInfoI, const std::vector<std::string>& tinyInfoS);
650 class DataArrayIntTuple;
652 class DataArrayIntIterator
655 MEDCOUPLING_EXPORT DataArrayIntIterator(DataArrayInt *da);
656 MEDCOUPLING_EXPORT ~DataArrayIntIterator();
657 MEDCOUPLING_EXPORT DataArrayIntTuple *nextt();
666 class DataArrayIntTuple
669 MEDCOUPLING_EXPORT DataArrayIntTuple(int *pt, int nbOfComp);
670 MEDCOUPLING_EXPORT std::string repr() const;
671 MEDCOUPLING_EXPORT int getNumberOfCompo() const { return _nb_of_compo; }
672 MEDCOUPLING_EXPORT const int *getConstPointer() const { return _pt; }
673 MEDCOUPLING_EXPORT int *getPointer() { return _pt; }
674 MEDCOUPLING_EXPORT int intValue() const;
675 MEDCOUPLING_EXPORT DataArrayInt *buildDAInt(int nbOfTuples, int nbOfCompo) const;
681 class DataArrayChar : public DataArray
684 MEDCOUPLING_EXPORT virtual DataArrayChar *buildEmptySpecializedDAChar() const = 0;
685 MEDCOUPLING_EXPORT bool isAllocated() const;
686 MEDCOUPLING_EXPORT void checkAllocated() const;
687 MEDCOUPLING_EXPORT void desallocate();
688 MEDCOUPLING_EXPORT int getNumberOfTuples() const { return _info_on_compo.empty()?0:_mem.getNbOfElem()/getNumberOfComponents(); }
689 MEDCOUPLING_EXPORT std::size_t getNbOfElems() const { return _mem.getNbOfElem(); }
690 MEDCOUPLING_EXPORT std::size_t getHeapMemorySizeWithoutChildren() const;
691 MEDCOUPLING_EXPORT int getHashCode() const;
692 MEDCOUPLING_EXPORT bool empty() const;
693 MEDCOUPLING_EXPORT void cpyFrom(const DataArrayChar& other);
694 MEDCOUPLING_EXPORT void reserve(std::size_t nbOfElems);
695 MEDCOUPLING_EXPORT void pushBackSilent(char val);
696 MEDCOUPLING_EXPORT void pushBackValsSilent(const char *valsBg, const char *valsEnd);
697 MEDCOUPLING_EXPORT char popBackSilent();
698 MEDCOUPLING_EXPORT void pack() const;
699 MEDCOUPLING_EXPORT std::size_t getNbOfElemAllocated() const { return _mem.getNbOfElemAllocated(); }
700 MEDCOUPLING_EXPORT void alloc(int nbOfTuple, int nbOfCompo=1);
701 MEDCOUPLING_EXPORT void allocIfNecessary(int nbOfTuple, int nbOfCompo);
702 MEDCOUPLING_EXPORT bool isEqual(const DataArrayChar& other) const;
703 MEDCOUPLING_EXPORT virtual bool isEqualIfNotWhy(const DataArrayChar& other, std::string& reason) const;
704 MEDCOUPLING_EXPORT bool isEqualWithoutConsideringStr(const DataArrayChar& other) const;
705 MEDCOUPLING_EXPORT void reverse();
706 MEDCOUPLING_EXPORT void fillWithZero();
707 MEDCOUPLING_EXPORT void fillWithValue(char val);
708 MEDCOUPLING_EXPORT std::string repr() const;
709 MEDCOUPLING_EXPORT std::string reprZip() const;
710 MEDCOUPLING_EXPORT void reAlloc(int nbOfTuples);
711 MEDCOUPLING_EXPORT DataArrayInt *convertToIntArr() const;
712 MEDCOUPLING_EXPORT void renumberInPlace(const int *old2New);
713 MEDCOUPLING_EXPORT void renumberInPlaceR(const int *new2Old);
714 MEDCOUPLING_EXPORT DataArrayChar *renumber(const int *old2New) const;
715 MEDCOUPLING_EXPORT DataArrayChar *renumberR(const int *new2Old) const;
716 MEDCOUPLING_EXPORT DataArrayChar *renumberAndReduce(const int *old2NewBg, int newNbOfTuple) const;
717 MEDCOUPLING_EXPORT DataArrayChar *selectByTupleId(const int *new2OldBg, const int *new2OldEnd) const;
718 MEDCOUPLING_EXPORT DataArrayChar *selectByTupleIdSafe(const int *new2OldBg, const int *new2OldEnd) const;
719 MEDCOUPLING_EXPORT DataArrayChar *selectByTupleId2(int bg, int end, int step) const;
720 MEDCOUPLING_EXPORT bool isUniform(char val) const;
721 MEDCOUPLING_EXPORT void rearrange(int newNbOfCompo);
722 MEDCOUPLING_EXPORT DataArrayChar *substr(int tupleIdBg, int tupleIdEnd=-1) const;
723 MEDCOUPLING_EXPORT DataArrayChar *changeNbOfComponents(int newNbOfComp, char dftValue) const;
724 MEDCOUPLING_EXPORT DataArrayChar *keepSelectedComponents(const std::vector<int>& compoIds) const;
725 MEDCOUPLING_EXPORT void meldWith(const DataArrayChar *other);
726 MEDCOUPLING_EXPORT void setPartOfValues1(const DataArrayChar *a, int bgTuples, int endTuples, int stepTuples, int bgComp, int endComp, int stepComp, bool strictCompoCompare=true);
727 MEDCOUPLING_EXPORT void setPartOfValuesSimple1(char a, int bgTuples, int endTuples, int stepTuples, int bgComp, int endComp, int stepComp);
728 MEDCOUPLING_EXPORT void setPartOfValues2(const DataArrayChar *a, const int *bgTuples, const int *endTuples, const int *bgComp, const int *endComp, bool strictCompoCompare=true);
729 MEDCOUPLING_EXPORT void setPartOfValuesSimple2(char a, const int *bgTuples, const int *endTuples, const int *bgComp, const int *endComp);
730 MEDCOUPLING_EXPORT void setPartOfValues3(const DataArrayChar *a, const int *bgTuples, const int *endTuples, int bgComp, int endComp, int stepComp, bool strictCompoCompare=true);
731 MEDCOUPLING_EXPORT void setPartOfValuesSimple3(char a, const int *bgTuples, const int *endTuples, int bgComp, int endComp, int stepComp);
732 MEDCOUPLING_EXPORT void setPartOfValues4(const DataArrayChar *a, int bgTuples, int endTuples, int stepTuples, const int *bgComp, const int *endComp, bool strictCompoCompare=true);
733 MEDCOUPLING_EXPORT void setPartOfValuesSimple4(char a, int bgTuples, int endTuples, int stepTuples, const int *bgComp, const int *endComp);
734 MEDCOUPLING_EXPORT void setPartOfValuesAdv(const DataArrayChar *a, const DataArrayChar *tuplesSelec);
735 MEDCOUPLING_EXPORT void setContigPartOfSelectedValues(int tupleIdStart, const DataArray *aBase, const DataArrayInt *tuplesSelec);
736 MEDCOUPLING_EXPORT void setContigPartOfSelectedValues2(int tupleIdStart, const DataArray *aBase, int bg, int end2, int step);
737 MEDCOUPLING_EXPORT DataArray *selectByTupleRanges(const std::vector<std::pair<int,int> >& ranges) const;
738 MEDCOUPLING_EXPORT void getTuple(int tupleId, char *res) const { std::copy(_mem.getConstPointerLoc(tupleId*_info_on_compo.size()),_mem.getConstPointerLoc((tupleId+1)*_info_on_compo.size()),res); }
739 MEDCOUPLING_EXPORT char getIJ(int tupleId, int compoId) const { return _mem[tupleId*_info_on_compo.size()+compoId]; }
740 MEDCOUPLING_EXPORT char getIJSafe(int tupleId, int compoId) const;
741 MEDCOUPLING_EXPORT char front() const;
742 MEDCOUPLING_EXPORT char back() const;
743 MEDCOUPLING_EXPORT void setIJ(int tupleId, int compoId, char newVal) { _mem[tupleId*_info_on_compo.size()+compoId]=newVal; declareAsNew(); }
744 MEDCOUPLING_EXPORT void setIJSilent(int tupleId, int compoId, char newVal) { _mem[tupleId*_info_on_compo.size()+compoId]=newVal; }
745 MEDCOUPLING_EXPORT char *getPointer() { return _mem.getPointer(); declareAsNew(); }
746 MEDCOUPLING_EXPORT const char *getConstPointer() const { return _mem.getConstPointer(); }
747 MEDCOUPLING_EXPORT const char *begin() const { return getConstPointer(); }
748 MEDCOUPLING_EXPORT const char *end() const { return getConstPointer()+getNbOfElems(); }
749 MEDCOUPLING_EXPORT DataArrayInt *getIdsEqual(char val) const;
750 MEDCOUPLING_EXPORT DataArrayInt *getIdsNotEqual(char val) const;
751 MEDCOUPLING_EXPORT int search(const std::vector<char>& vals) const;
752 MEDCOUPLING_EXPORT int locateTuple(const std::vector<char>& tupl) const;
753 MEDCOUPLING_EXPORT int locateValue(char value) const;
754 MEDCOUPLING_EXPORT int locateValue(const std::vector<char>& vals) const;
755 MEDCOUPLING_EXPORT bool presenceOfTuple(const std::vector<char>& tupl) const;
756 MEDCOUPLING_EXPORT bool presenceOfValue(char value) const;
757 MEDCOUPLING_EXPORT bool presenceOfValue(const std::vector<char>& vals) const;
758 MEDCOUPLING_EXPORT char getMaxValue(int& tupleId) const;
759 MEDCOUPLING_EXPORT char getMaxValueInArray() const;
760 MEDCOUPLING_EXPORT char getMinValue(int& tupleId) const;
761 MEDCOUPLING_EXPORT char getMinValueInArray() const;
762 MEDCOUPLING_EXPORT DataArrayInt *getIdsInRange(char vmin, char vmax) const;
763 MEDCOUPLING_EXPORT static DataArrayChar *Aggregate(const DataArrayChar *a1, const DataArrayChar *a2);
764 MEDCOUPLING_EXPORT static DataArrayChar *Aggregate(const std::vector<const DataArrayChar *>& arr);
765 MEDCOUPLING_EXPORT static DataArrayChar *Meld(const DataArrayChar *a1, const DataArrayChar *a2);
766 MEDCOUPLING_EXPORT static DataArrayChar *Meld(const std::vector<const DataArrayChar *>& arr);
767 MEDCOUPLING_EXPORT void useArray(const char *array, bool ownership, DeallocType type, int nbOfTuple, int nbOfCompo);
768 template<class InputIterator>
769 void insertAtTheEnd(InputIterator first, InputIterator last);
770 MEDCOUPLING_EXPORT void useExternalArrayWithRWAccess(const char *array, int nbOfTuple, int nbOfCompo);
771 MEDCOUPLING_EXPORT void updateTime() const { }
772 MEDCOUPLING_EXPORT MemArray<char>& accessToMemArray() { return _mem; }
773 MEDCOUPLING_EXPORT const MemArray<char>& accessToMemArray() const { return _mem; }
775 //MEDCOUPLING_EXPORT void getTinySerializationIntInformation(std::vector<int>& tinyInfo) const;
776 //MEDCOUPLING_EXPORT void getTinySerializationStrInformation(std::vector<std::string>& tinyInfo) const;
777 //MEDCOUPLING_EXPORT bool resizeForUnserialization(const std::vector<int>& tinyInfoI);
778 //MEDCOUPLING_EXPORT void finishUnserialization(const std::vector<int>& tinyInfoI, const std::vector<std::string>& tinyInfoS);
785 class DataArrayByteIterator;
787 class DataArrayByte : public DataArrayChar
790 MEDCOUPLING_EXPORT static DataArrayByte *New();
791 MEDCOUPLING_EXPORT DataArrayChar *buildEmptySpecializedDAChar() const;
792 MEDCOUPLING_EXPORT DataArrayByteIterator *iterator();
793 MEDCOUPLING_EXPORT DataArrayByte *deepCpy() const;
794 MEDCOUPLING_EXPORT DataArrayByte *performCpy(bool deepCpy) const;
795 MEDCOUPLING_EXPORT char byteValue() const;
796 MEDCOUPLING_EXPORT void reprStream(std::ostream& stream) const;
797 MEDCOUPLING_EXPORT void reprZipStream(std::ostream& stream) const;
798 MEDCOUPLING_EXPORT void reprWithoutNameStream(std::ostream& stream) const;
799 MEDCOUPLING_EXPORT void reprZipWithoutNameStream(std::ostream& stream) const;
800 MEDCOUPLING_EXPORT void reprCppStream(const std::string& varName, std::ostream& stream) const;
801 MEDCOUPLING_EXPORT void reprQuickOverview(std::ostream& stream) const;
802 MEDCOUPLING_EXPORT void reprQuickOverviewData(std::ostream& stream, std::size_t maxNbOfByteInRepr) const;
803 MEDCOUPLING_EXPORT bool isEqualIfNotWhy(const DataArrayChar& other, std::string& reason) const;
804 MEDCOUPLING_EXPORT std::vector<bool> toVectorOfBool() const;
810 class DataArrayByteTuple;
812 class DataArrayByteIterator
815 MEDCOUPLING_EXPORT DataArrayByteIterator(DataArrayByte *da);
816 MEDCOUPLING_EXPORT ~DataArrayByteIterator();
817 MEDCOUPLING_EXPORT DataArrayByteTuple *nextt();
826 class DataArrayByteTuple
829 MEDCOUPLING_EXPORT DataArrayByteTuple(char *pt, int nbOfComp);
830 MEDCOUPLING_EXPORT std::string repr() const;
831 MEDCOUPLING_EXPORT int getNumberOfCompo() const { return _nb_of_compo; }
832 MEDCOUPLING_EXPORT const char *getConstPointer() const { return _pt; }
833 MEDCOUPLING_EXPORT char *getPointer() { return _pt; }
834 MEDCOUPLING_EXPORT char byteValue() const;
835 MEDCOUPLING_EXPORT DataArrayByte *buildDAByte(int nbOfTuples, int nbOfCompo) const;
841 class DataArrayAsciiCharIterator;
843 class DataArrayAsciiChar : public DataArrayChar
846 MEDCOUPLING_EXPORT static DataArrayAsciiChar *New();
847 MEDCOUPLING_EXPORT static DataArrayAsciiChar *New(const std::string& st);
848 MEDCOUPLING_EXPORT static DataArrayAsciiChar *New(const std::vector<std::string>& vst, char defaultChar);
849 MEDCOUPLING_EXPORT DataArrayChar *buildEmptySpecializedDAChar() const;
850 MEDCOUPLING_EXPORT DataArrayAsciiCharIterator *iterator();
851 MEDCOUPLING_EXPORT DataArrayAsciiChar *deepCpy() const;
852 MEDCOUPLING_EXPORT DataArrayAsciiChar *performCpy(bool deepCpy) const;
853 MEDCOUPLING_EXPORT char asciiCharValue() const;
854 MEDCOUPLING_EXPORT void reprStream(std::ostream& stream) const;
855 MEDCOUPLING_EXPORT void reprZipStream(std::ostream& stream) const;
856 MEDCOUPLING_EXPORT void reprWithoutNameStream(std::ostream& stream) const;
857 MEDCOUPLING_EXPORT void reprZipWithoutNameStream(std::ostream& stream) const;
858 MEDCOUPLING_EXPORT void reprCppStream(const std::string& varName, std::ostream& stream) const;
859 MEDCOUPLING_EXPORT void reprQuickOverview(std::ostream& stream) const;
860 MEDCOUPLING_EXPORT void reprQuickOverviewData(std::ostream& stream, std::size_t maxNbOfByteInRepr) const;
861 MEDCOUPLING_EXPORT bool isEqualIfNotWhy(const DataArrayChar& other, std::string& reason) const;
863 ~DataArrayAsciiChar() { }
864 DataArrayAsciiChar() { }
865 DataArrayAsciiChar(const std::string& st);
866 DataArrayAsciiChar(const std::vector<std::string>& vst, char defaultChar);
869 class DataArrayAsciiCharTuple;
871 class DataArrayAsciiCharIterator
874 MEDCOUPLING_EXPORT DataArrayAsciiCharIterator(DataArrayAsciiChar *da);
875 MEDCOUPLING_EXPORT ~DataArrayAsciiCharIterator();
876 MEDCOUPLING_EXPORT DataArrayAsciiCharTuple *nextt();
878 DataArrayAsciiChar *_da;
885 class DataArrayAsciiCharTuple
888 MEDCOUPLING_EXPORT DataArrayAsciiCharTuple(char *pt, int nbOfComp);
889 MEDCOUPLING_EXPORT std::string repr() const;
890 MEDCOUPLING_EXPORT int getNumberOfCompo() const { return _nb_of_compo; }
891 MEDCOUPLING_EXPORT const char *getConstPointer() const { return _pt; }
892 MEDCOUPLING_EXPORT char *getPointer() { return _pt; }
893 MEDCOUPLING_EXPORT char asciiCharValue() const;
894 MEDCOUPLING_EXPORT DataArrayAsciiChar *buildDAAsciiChar(int nbOfTuples, int nbOfCompo) const;
900 template<class InputIterator>
901 void DataArrayDouble::insertAtTheEnd(InputIterator first, InputIterator last)
903 int nbCompo(getNumberOfComponents());
905 _mem.insertAtTheEnd(first,last);
908 _info_on_compo.resize(1);
909 _mem.insertAtTheEnd(first,last);
912 throw INTERP_KERNEL::Exception("DataArrayDouble::insertAtTheEnd : not available for DataArrayDouble with number of components different than 1 !");
915 template<class InputIterator>
916 void DataArrayInt::insertAtTheEnd(InputIterator first, InputIterator last)
918 int nbCompo(getNumberOfComponents());
920 _mem.insertAtTheEnd(first,last);
923 _info_on_compo.resize(1);
924 _mem.insertAtTheEnd(first,last);
927 throw INTERP_KERNEL::Exception("DataArrayInt::insertAtTheEnd : not available for DataArrayInt with number of components different than 1 !");
930 template<class InputIterator>
931 void DataArrayChar::insertAtTheEnd(InputIterator first, InputIterator last)
933 int nbCompo(getNumberOfComponents());
935 _mem.insertAtTheEnd(first,last);
938 _info_on_compo.resize(1);
939 _mem.insertAtTheEnd(first,last);
942 throw INTERP_KERNEL::Exception("DataArrayChar::insertAtTheEnd : not available for DataArrayChar with number of components different than 1 !");