Salome HOME
Unwarningization under Win.
[modules/med.git] / src / MEDCoupling / MEDCouplingMemArray.hxx
1 // Copyright (C) 2007-2013  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19 // Author : Anthony Geay (CEA/DEN)
20
21 #ifndef __PARAMEDMEM_MEDCOUPLINGMEMARRAY_HXX__
22 #define __PARAMEDMEM_MEDCOUPLINGMEMARRAY_HXX__
23
24 #include "MEDCoupling.hxx"
25 #include "MEDCouplingTimeLabel.hxx"
26 #include "MEDCouplingRefCountObject.hxx"
27 #include "InterpKernelException.hxx"
28 #include "BBTreePts.txx"
29
30 #include <string>
31 #include <vector>
32 #include <iterator>
33
34 namespace ParaMEDMEM
35 {
36   template<class T>
37   class MEDCouplingPointer
38   {
39   public:
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; }
48   private:
49     T *_internal;
50     const T *_external;
51   };
52
53   template<class T>
54   class MemArray
55   {
56   public:
57     typedef void (*Deallocator)(void *,void *);
58   public:
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 fillWithValue(const T& val);
75     T *fromNoInterlace(int nbOfComp) const;
76     T *toNoInterlace(int nbOfComp) const;
77     void sort(bool asc);
78     void reverse(int nbOfComp);
79     void alloc(std::size_t nbOfElements);
80     void reserve(std::size_t newNbOfElements);
81     void reAlloc(std::size_t newNbOfElements);
82     void useArray(const T *array, bool ownership, DeallocType type, std::size_t nbOfElem);
83     void useExternalArrayWithRWAccess(const T *array, std::size_t nbOfElem);
84     void writeOnPlace(std::size_t id, T element0, const T *others, std::size_t sizeOfOthers);
85     template<class InputIterator>
86     void insertAtTheEnd(InputIterator first, InputIterator last);
87     void pushBack(T elem);
88     T popBack();
89     void pack() const;
90     bool isDeallocatorCalled() const { return _ownership; }
91     Deallocator getDeallocator() const { return _dealloc; }
92     void setSpecificDeallocator(Deallocator dealloc) { _dealloc=dealloc; }
93     void setParameterForDeallocator(void *param) { _param_for_deallocator=param; }
94     void *getParameterForDeallocator() const { return _param_for_deallocator; }
95     void destroy();
96     ~MemArray() { destroy(); }
97   public:
98     static void CPPDeallocator(void *pt, void *param);
99     static void CDeallocator(void *pt, void *param);
100   private:
101     static void DestroyPointer(T *pt, Deallocator dealloc, void *param);
102     static Deallocator BuildFromType(DeallocType type);
103   private:
104     std::size_t _nb_of_elem;
105     std::size_t _nb_of_elem_alloc;
106     bool _ownership;
107     MEDCouplingPointer<T> _pointer;
108     Deallocator _dealloc;
109     void *_param_for_deallocator;
110   };
111
112   class DataArrayInt;
113   class DataArrayByte;
114
115   class DataArray : public RefCountObject, public TimeLabel
116   {
117   public:
118     MEDCOUPLING_EXPORT std::size_t getHeapMemorySizeWithoutChildren() const;
119     MEDCOUPLING_EXPORT std::vector<const BigMemoryObject *> getDirectChildren() const;
120     MEDCOUPLING_EXPORT void setName(const char *name);
121     MEDCOUPLING_EXPORT void copyStringInfoFrom(const DataArray& other);
122     MEDCOUPLING_EXPORT void copyPartOfStringInfoFrom(const DataArray& other, const std::vector<int>& compoIds);
123     MEDCOUPLING_EXPORT void copyPartOfStringInfoFrom2(const std::vector<int>& compoIds, const DataArray& other);
124     MEDCOUPLING_EXPORT bool areInfoEqualsIfNotWhy(const DataArray& other, std::string& reason) const;
125     MEDCOUPLING_EXPORT bool areInfoEquals(const DataArray& other) const;
126     MEDCOUPLING_EXPORT std::string cppRepr(const char *varName) const;
127     MEDCOUPLING_EXPORT std::string getName() const { return _name; }
128     MEDCOUPLING_EXPORT const std::vector<std::string> &getInfoOnComponents() const { return _info_on_compo; }
129     MEDCOUPLING_EXPORT std::vector<std::string> &getInfoOnComponents() { return _info_on_compo; }
130     MEDCOUPLING_EXPORT void setInfoOnComponents(const std::vector<std::string>& info);
131     MEDCOUPLING_EXPORT void setInfoAndChangeNbOfCompo(const std::vector<std::string>& info);
132     MEDCOUPLING_EXPORT std::vector<std::string> getVarsOnComponent() const;
133     MEDCOUPLING_EXPORT std::vector<std::string> getUnitsOnComponent() const;
134     MEDCOUPLING_EXPORT std::string getInfoOnComponent(int i) const;
135     MEDCOUPLING_EXPORT std::string getVarOnComponent(int i) const;
136     MEDCOUPLING_EXPORT std::string getUnitOnComponent(int i) const;
137     MEDCOUPLING_EXPORT void setInfoOnComponent(int i, const char *info);
138     MEDCOUPLING_EXPORT int getNumberOfComponents() const { return (int)_info_on_compo.size(); }
139     MEDCOUPLING_EXPORT void setPartOfValuesBase3(const DataArray *aBase, const int *bgTuples, const int *endTuples, int bgComp, int endComp, int stepComp, bool strictCompoCompare=true);
140     MEDCOUPLING_EXPORT virtual DataArray *deepCpy() const = 0;
141     MEDCOUPLING_EXPORT virtual bool isAllocated() const = 0;
142     MEDCOUPLING_EXPORT virtual void checkAllocated() const = 0;
143     MEDCOUPLING_EXPORT virtual void desallocate() = 0;
144     MEDCOUPLING_EXPORT virtual int getNumberOfTuples() const = 0;
145     MEDCOUPLING_EXPORT virtual std::size_t getNbOfElems() const = 0;
146     MEDCOUPLING_EXPORT virtual std::size_t getNbOfElemAllocated() const = 0;
147     MEDCOUPLING_EXPORT virtual void alloc(int nbOfTuple, int nbOfCompo=1) = 0;
148     MEDCOUPLING_EXPORT virtual void reAlloc(int newNbOfTuple) = 0;
149     MEDCOUPLING_EXPORT virtual void renumberInPlace(const int *old2New) = 0;
150     MEDCOUPLING_EXPORT virtual void renumberInPlaceR(const int *new2Old) = 0;
151     MEDCOUPLING_EXPORT virtual void setContigPartOfSelectedValues(int tupleIdStart, const DataArray *aBase, const DataArrayInt *tuplesSelec) = 0;
152     MEDCOUPLING_EXPORT virtual void setContigPartOfSelectedValues2(int tupleIdStart, const DataArray *aBase, int bg, int end2, int step) = 0;
153     MEDCOUPLING_EXPORT virtual DataArray *selectByTupleRanges(const std::vector<std::pair<int,int> >& ranges) const = 0;
154     MEDCOUPLING_EXPORT virtual DataArray *keepSelectedComponents(const std::vector<int>& compoIds) const = 0;
155     MEDCOUPLING_EXPORT virtual DataArray *selectByTupleId(const int *new2OldBg, const int *new2OldEnd) const = 0;
156     MEDCOUPLING_EXPORT virtual DataArray *selectByTupleIdSafe(const int *new2OldBg, const int *new2OldEnd) const = 0;
157     MEDCOUPLING_EXPORT virtual DataArray *selectByTupleId2(int bg, int end2, int step) const = 0;
158     MEDCOUPLING_EXPORT virtual void rearrange(int newNbOfCompo) = 0;
159     MEDCOUPLING_EXPORT void checkNbOfTuples(int nbOfTuples, const char *msg) const;
160     MEDCOUPLING_EXPORT void checkNbOfComps(int nbOfCompo, const char *msg) const;
161     MEDCOUPLING_EXPORT void checkNbOfTuplesAndComp(const DataArray& other, const char *msg) const;
162     MEDCOUPLING_EXPORT void checkNbOfTuplesAndComp(int nbOfTuples, int nbOfCompo, const char *msg) const;
163     MEDCOUPLING_EXPORT void checkNbOfElems(std::size_t nbOfElems, const char *msg) const;
164     MEDCOUPLING_EXPORT static void GetSlice(int start, int stop, int step, int sliceId, int nbOfSlices, int& startSlice, int& stopSlice);
165     MEDCOUPLING_EXPORT static int GetNumberOfItemGivenBES(int begin, int end, int step, const char *msg);
166     MEDCOUPLING_EXPORT static int GetNumberOfItemGivenBESRelative(int begin, int end, int step, const char *msg);
167     MEDCOUPLING_EXPORT static int GetPosOfItemGivenBESRelativeNoThrow(int value, int begin, int end, int step);
168     MEDCOUPLING_EXPORT static std::string GetVarNameFromInfo(const std::string& info);
169     MEDCOUPLING_EXPORT static std::string GetUnitFromInfo(const std::string& info);
170     MEDCOUPLING_EXPORT static DataArray *Aggregate(const std::vector<const DataArray *>& arrs);
171     MEDCOUPLING_EXPORT virtual void reprStream(std::ostream& stream) const = 0;
172     MEDCOUPLING_EXPORT virtual void reprZipStream(std::ostream& stream) const = 0;
173     MEDCOUPLING_EXPORT virtual void reprWithoutNameStream(std::ostream& stream) const;
174     MEDCOUPLING_EXPORT virtual void reprZipWithoutNameStream(std::ostream& stream) const = 0;
175     MEDCOUPLING_EXPORT virtual void reprCppStream(const char *varName, std::ostream& stream) const = 0;
176     MEDCOUPLING_EXPORT virtual void reprQuickOverview(std::ostream& stream) const = 0;
177     MEDCOUPLING_EXPORT virtual void reprQuickOverviewData(std::ostream& stream, std::size_t maxNbOfByteInRepr) const = 0;
178   protected:
179     DataArray() { }
180     ~DataArray() { }
181   protected:
182     static void CheckValueInRange(int ref, int value, const char *msg);
183     static void CheckValueInRangeEx(int value, int start, int end, const char *msg);
184     static void CheckClosingParInRange(int ref, int value, const char *msg);
185   protected:
186     std::string _name;
187     std::vector<std::string> _info_on_compo;
188   };
189 }
190
191 #include "MEDCouplingMemArray.txx"
192
193 namespace ParaMEDMEM
194 {
195   class DataArrayInt;
196   class DataArrayDoubleIterator;
197   class DataArrayDouble : public DataArray
198   {
199   public:
200     MEDCOUPLING_EXPORT static DataArrayDouble *New();
201     MEDCOUPLING_EXPORT bool isAllocated() const;
202     MEDCOUPLING_EXPORT void checkAllocated() const;
203     MEDCOUPLING_EXPORT void desallocate();
204     MEDCOUPLING_EXPORT int getNumberOfTuples() const { return _info_on_compo.empty()?0:_mem.getNbOfElem()/getNumberOfComponents(); }
205     MEDCOUPLING_EXPORT std::size_t getNbOfElems() const { return _mem.getNbOfElem(); }
206     MEDCOUPLING_EXPORT std::size_t getHeapMemorySizeWithoutChildren() const;
207     MEDCOUPLING_EXPORT double doubleValue() const;
208     MEDCOUPLING_EXPORT bool empty() const;
209     MEDCOUPLING_EXPORT DataArrayDouble *deepCpy() const;
210     MEDCOUPLING_EXPORT DataArrayDouble *performCpy(bool deepCpy) const;
211     MEDCOUPLING_EXPORT void cpyFrom(const DataArrayDouble& other);
212     MEDCOUPLING_EXPORT void reserve(std::size_t nbOfElems);
213     MEDCOUPLING_EXPORT void pushBackSilent(double val);
214     MEDCOUPLING_EXPORT void pushBackValsSilent(const double *valsBg, const double *valsEnd);
215     MEDCOUPLING_EXPORT double popBackSilent();
216     MEDCOUPLING_EXPORT void pack() const;
217     MEDCOUPLING_EXPORT std::size_t getNbOfElemAllocated() const { return _mem.getNbOfElemAllocated(); }
218     MEDCOUPLING_EXPORT void alloc(int nbOfTuple, int nbOfCompo=1);
219     MEDCOUPLING_EXPORT void allocIfNecessary(int nbOfTuple, int nbOfCompo);
220     MEDCOUPLING_EXPORT void fillWithZero();
221     MEDCOUPLING_EXPORT void fillWithValue(double val);
222     MEDCOUPLING_EXPORT void iota(double init=0.);
223     MEDCOUPLING_EXPORT bool isUniform(double val, double eps) const;
224     MEDCOUPLING_EXPORT void sort(bool asc=true);
225     MEDCOUPLING_EXPORT void reverse();
226     MEDCOUPLING_EXPORT void checkMonotonic(bool increasing, double eps) const;
227     MEDCOUPLING_EXPORT bool isMonotonic(bool increasing, double eps) const;
228     MEDCOUPLING_EXPORT std::string repr() const;
229     MEDCOUPLING_EXPORT std::string reprZip() const;
230     MEDCOUPLING_EXPORT void writeVTK(std::ostream& ofs, int indent, const char *nameInFile, DataArrayByte *byteArr) const;
231     MEDCOUPLING_EXPORT void reprStream(std::ostream& stream) const;
232     MEDCOUPLING_EXPORT void reprZipStream(std::ostream& stream) const;
233     MEDCOUPLING_EXPORT void reprWithoutNameStream(std::ostream& stream) const;
234     MEDCOUPLING_EXPORT void reprZipWithoutNameStream(std::ostream& stream) const;
235     MEDCOUPLING_EXPORT void reprCppStream(const char *varName, std::ostream& stream) const;
236     MEDCOUPLING_EXPORT void reprQuickOverview(std::ostream& stream) const;
237     MEDCOUPLING_EXPORT void reprQuickOverviewData(std::ostream& stream, std::size_t maxNbOfByteInRepr) const;
238     MEDCOUPLING_EXPORT bool isEqual(const DataArrayDouble& other, double prec) const;
239     MEDCOUPLING_EXPORT bool isEqualIfNotWhy(const DataArrayDouble& other, double prec, std::string& reason) const;
240     MEDCOUPLING_EXPORT bool isEqualWithoutConsideringStr(const DataArrayDouble& other, double prec) const;
241     MEDCOUPLING_EXPORT void reAlloc(int nbOfTuples);
242     MEDCOUPLING_EXPORT DataArrayInt *convertToIntArr() const;
243     MEDCOUPLING_EXPORT DataArrayDouble *fromNoInterlace() const;
244     MEDCOUPLING_EXPORT DataArrayDouble *toNoInterlace() const;
245     MEDCOUPLING_EXPORT void renumberInPlace(const int *old2New);
246     MEDCOUPLING_EXPORT void renumberInPlaceR(const int *new2Old);
247     MEDCOUPLING_EXPORT DataArrayDouble *renumber(const int *old2New) const;
248     MEDCOUPLING_EXPORT DataArrayDouble *renumberR(const int *new2Old) const;
249     MEDCOUPLING_EXPORT DataArrayDouble *renumberAndReduce(const int *old2New, int newNbOfTuple) const;
250     MEDCOUPLING_EXPORT DataArrayDouble *selectByTupleId(const int *new2OldBg, const int *new2OldEnd) const;
251     MEDCOUPLING_EXPORT DataArrayDouble *selectByTupleIdSafe(const int *new2OldBg, const int *new2OldEnd) const;
252     MEDCOUPLING_EXPORT DataArrayDouble *selectByTupleId2(int bg, int end2, int step) const;
253     MEDCOUPLING_EXPORT DataArray *selectByTupleRanges(const std::vector<std::pair<int,int> >& ranges) const;
254     MEDCOUPLING_EXPORT DataArrayDouble *substr(int tupleIdBg, int tupleIdEnd=-1) const;
255     MEDCOUPLING_EXPORT void rearrange(int newNbOfCompo);
256     MEDCOUPLING_EXPORT void transpose();
257     MEDCOUPLING_EXPORT DataArrayDouble *changeNbOfComponents(int newNbOfComp, double dftValue) const;
258     MEDCOUPLING_EXPORT DataArray *keepSelectedComponents(const std::vector<int>& compoIds) const;
259     MEDCOUPLING_EXPORT void meldWith(const DataArrayDouble *other);
260     MEDCOUPLING_EXPORT bool areIncludedInMe(const DataArrayDouble *other, double prec, DataArrayInt *&tupleIds) const;
261     MEDCOUPLING_EXPORT void findCommonTuples(double prec, int limitTupleId, DataArrayInt *&comm, DataArrayInt *&commIndex) const;
262     MEDCOUPLING_EXPORT double minimalDistanceTo(const DataArrayDouble *other, int& thisTupleId, int& otherTupleId) const;
263     MEDCOUPLING_EXPORT DataArrayDouble *duplicateEachTupleNTimes(int nbTimes) const;
264     MEDCOUPLING_EXPORT DataArrayDouble *getDifferentValues(double prec, int limitTupleId=-1) const;
265     MEDCOUPLING_EXPORT DataArrayInt *findClosestTupleId(const DataArrayDouble *other) const;
266     MEDCOUPLING_EXPORT DataArrayInt *computeNbOfInteractionsWith(const DataArrayDouble *otherBBoxFrmt, double eps) const;
267     MEDCOUPLING_EXPORT void setSelectedComponents(const DataArrayDouble *a, const std::vector<int>& compoIds);
268     MEDCOUPLING_EXPORT void setPartOfValues1(const DataArrayDouble *a, int bgTuples, int endTuples, int stepTuples, int bgComp, int endComp, int stepComp, bool strictCompoCompare=true);
269     MEDCOUPLING_EXPORT void setPartOfValuesSimple1(double a, int bgTuples, int endTuples, int stepTuples, int bgComp, int endComp, int stepComp);
270     MEDCOUPLING_EXPORT void setPartOfValues2(const DataArrayDouble *a, const int *bgTuples, const int *endTuples, const int *bgComp, const int *endComp, bool strictCompoCompare=true);
271     MEDCOUPLING_EXPORT void setPartOfValuesSimple2(double a, const int *bgTuples, const int *endTuples, const int *bgComp, const int *endComp);
272     MEDCOUPLING_EXPORT void setPartOfValues3(const DataArrayDouble *a, const int *bgTuples, const int *endTuples, int bgComp, int endComp, int stepComp, bool strictCompoCompare=true);
273     MEDCOUPLING_EXPORT void setPartOfValuesSimple3(double a, const int *bgTuples, const int *endTuples, int bgComp, int endComp, int stepComp);
274     MEDCOUPLING_EXPORT void setPartOfValues4(const DataArrayDouble *a, int bgTuples, int endTuples, int stepTuples, const int *bgComp, const int *endComp, bool strictCompoCompare=true);
275     MEDCOUPLING_EXPORT void setPartOfValuesSimple4(double a, int bgTuples, int endTuples, int stepTuples, const int *bgComp, const int *endComp);
276     MEDCOUPLING_EXPORT void setPartOfValuesAdv(const DataArrayDouble *a, const DataArrayInt *tuplesSelec);
277     MEDCOUPLING_EXPORT void setContigPartOfSelectedValues(int tupleIdStart, const DataArray *aBase, const DataArrayInt *tuplesSelec);
278     MEDCOUPLING_EXPORT void setContigPartOfSelectedValues2(int tupleIdStart, const DataArray *aBase, int bg, int end2, int step);
279     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); }
280     MEDCOUPLING_EXPORT double getIJ(int tupleId, int compoId) const { return _mem[tupleId*_info_on_compo.size()+compoId]; }
281     MEDCOUPLING_EXPORT double front() const;
282     MEDCOUPLING_EXPORT double back() const;
283     MEDCOUPLING_EXPORT double getIJSafe(int tupleId, int compoId) const;
284     MEDCOUPLING_EXPORT void setIJ(int tupleId, int compoId, double newVal) { _mem[tupleId*_info_on_compo.size()+compoId]=newVal; declareAsNew(); }
285     MEDCOUPLING_EXPORT void setIJSilent(int tupleId, int compoId, double newVal) { _mem[tupleId*_info_on_compo.size()+compoId]=newVal; }
286     MEDCOUPLING_EXPORT double *getPointer() { return _mem.getPointer(); }
287     MEDCOUPLING_EXPORT static void SetArrayIn(DataArrayDouble *newArray, DataArrayDouble* &arrayToSet);
288     MEDCOUPLING_EXPORT const double *getConstPointer() const { return _mem.getConstPointer(); }
289     MEDCOUPLING_EXPORT DataArrayDoubleIterator *iterator();
290     MEDCOUPLING_EXPORT const double *begin() const { return getConstPointer(); }
291     MEDCOUPLING_EXPORT const double *end() const { return getConstPointer()+getNbOfElems(); }
292     MEDCOUPLING_EXPORT void useArray(const double *array, bool ownership, DeallocType type, int nbOfTuple, int nbOfCompo);
293     MEDCOUPLING_EXPORT void useExternalArrayWithRWAccess(const double *array, int nbOfTuple, int nbOfCompo);
294     template<class InputIterator>
295     void insertAtTheEnd(InputIterator first, InputIterator last);
296     MEDCOUPLING_EXPORT void writeOnPlace(std::size_t id, double element0, const double *others, int sizeOfOthers) { _mem.writeOnPlace(id,element0,others,sizeOfOthers); }
297     MEDCOUPLING_EXPORT void checkNoNullValues() const;
298     MEDCOUPLING_EXPORT void getMinMaxPerComponent(double *bounds) const;
299     MEDCOUPLING_EXPORT DataArrayDouble *computeBBoxPerTuple(double epsilon=0.0) const;
300     MEDCOUPLING_EXPORT void computeTupleIdsNearTuples(const DataArrayDouble *other, double eps, DataArrayInt *& c, DataArrayInt *& cI) const;
301     MEDCOUPLING_EXPORT void recenterForMaxPrecision(double eps);
302     MEDCOUPLING_EXPORT double getMaxValue(int& tupleId) const;
303     MEDCOUPLING_EXPORT double getMaxValueInArray() const;
304     MEDCOUPLING_EXPORT double getMinValue(int& tupleId) const;
305     MEDCOUPLING_EXPORT double getMinValueInArray() const;
306     MEDCOUPLING_EXPORT double getMaxValue2(DataArrayInt*& tupleIds) const;
307     MEDCOUPLING_EXPORT double getMinValue2(DataArrayInt*& tupleIds) const;
308     MEDCOUPLING_EXPORT int count(double value, double eps) const;
309     MEDCOUPLING_EXPORT double getAverageValue() const;
310     MEDCOUPLING_EXPORT double norm2() const;
311     MEDCOUPLING_EXPORT double normMax() const;
312     MEDCOUPLING_EXPORT void accumulate(double *res) const;
313     MEDCOUPLING_EXPORT double accumulate(int compId) const;
314     MEDCOUPLING_EXPORT DataArrayDouble *accumulatePerChunck(const int *bgOfIndex, const int *endOfIndex) const;
315     MEDCOUPLING_EXPORT double distanceToTuple(const double *tupleBg, const double *tupleEnd, int& tupleId) const;
316     MEDCOUPLING_EXPORT DataArrayDouble *fromPolarToCart() const;
317     MEDCOUPLING_EXPORT DataArrayDouble *fromCylToCart() const;
318     MEDCOUPLING_EXPORT DataArrayDouble *fromSpherToCart() const;
319     MEDCOUPLING_EXPORT DataArrayDouble *doublyContractedProduct() const;
320     MEDCOUPLING_EXPORT DataArrayDouble *determinant() const;
321     MEDCOUPLING_EXPORT DataArrayDouble *eigenValues() const;
322     MEDCOUPLING_EXPORT DataArrayDouble *eigenVectors() const;
323     MEDCOUPLING_EXPORT DataArrayDouble *inverse() const;
324     MEDCOUPLING_EXPORT DataArrayDouble *trace() const;
325     MEDCOUPLING_EXPORT DataArrayDouble *deviator() const;
326     MEDCOUPLING_EXPORT DataArrayDouble *magnitude() const;
327     MEDCOUPLING_EXPORT DataArrayDouble *maxPerTuple() const;
328     MEDCOUPLING_EXPORT DataArrayDouble *maxPerTupleWithCompoId(DataArrayInt* &compoIdOfMaxPerTuple) const;
329     MEDCOUPLING_EXPORT DataArrayDouble *buildEuclidianDistanceDenseMatrix() const;
330     MEDCOUPLING_EXPORT DataArrayDouble *buildEuclidianDistanceDenseMatrixWith(const DataArrayDouble *other) const;
331     MEDCOUPLING_EXPORT void sortPerTuple(bool asc);
332     MEDCOUPLING_EXPORT void abs();
333     MEDCOUPLING_EXPORT void applyLin(double a, double b, int compoId);
334     MEDCOUPLING_EXPORT void applyLin(double a, double b);
335     MEDCOUPLING_EXPORT void applyInv(double numerator);
336     MEDCOUPLING_EXPORT void applyPow(double val);
337     MEDCOUPLING_EXPORT void applyRPow(double val);
338     MEDCOUPLING_EXPORT DataArrayDouble *negate() const;
339     MEDCOUPLING_EXPORT DataArrayDouble *applyFunc(int nbOfComp, FunctionToEvaluate func) const;
340     MEDCOUPLING_EXPORT DataArrayDouble *applyFunc(int nbOfComp, const char *func) const;
341     MEDCOUPLING_EXPORT DataArrayDouble *applyFunc(const char *func) const;
342     MEDCOUPLING_EXPORT DataArrayDouble *applyFunc2(int nbOfComp, const char *func) const;
343     MEDCOUPLING_EXPORT DataArrayDouble *applyFunc3(int nbOfComp, const std::vector<std::string>& varsOrder, const char *func) const;
344     MEDCOUPLING_EXPORT void applyFuncFast32(const char *func);
345     MEDCOUPLING_EXPORT void applyFuncFast64(const char *func);
346     MEDCOUPLING_EXPORT DataArrayInt *getIdsInRange(double vmin, double vmax) const;
347     MEDCOUPLING_EXPORT static DataArrayDouble *Aggregate(const DataArrayDouble *a1, const DataArrayDouble *a2);
348     MEDCOUPLING_EXPORT static DataArrayDouble *Aggregate(const std::vector<const DataArrayDouble *>& arr);
349     MEDCOUPLING_EXPORT static DataArrayDouble *Meld(const DataArrayDouble *a1, const DataArrayDouble *a2);
350     MEDCOUPLING_EXPORT static DataArrayDouble *Meld(const std::vector<const DataArrayDouble *>& arr);
351     MEDCOUPLING_EXPORT static DataArrayDouble *Dot(const DataArrayDouble *a1, const DataArrayDouble *a2);
352     MEDCOUPLING_EXPORT static DataArrayDouble *CrossProduct(const DataArrayDouble *a1, const DataArrayDouble *a2);
353     MEDCOUPLING_EXPORT static DataArrayDouble *Max(const DataArrayDouble *a1, const DataArrayDouble *a2);
354     MEDCOUPLING_EXPORT static DataArrayDouble *Min(const DataArrayDouble *a1, const DataArrayDouble *a2);
355     MEDCOUPLING_EXPORT static DataArrayDouble *Add(const DataArrayDouble *a1, const DataArrayDouble *a2);
356     MEDCOUPLING_EXPORT void addEqual(const DataArrayDouble *other);
357     MEDCOUPLING_EXPORT static DataArrayDouble *Substract(const DataArrayDouble *a1, const DataArrayDouble *a2);
358     MEDCOUPLING_EXPORT void substractEqual(const DataArrayDouble *other);
359     MEDCOUPLING_EXPORT static DataArrayDouble *Multiply(const DataArrayDouble *a1, const DataArrayDouble *a2);
360     MEDCOUPLING_EXPORT void multiplyEqual(const DataArrayDouble *other);
361     MEDCOUPLING_EXPORT static DataArrayDouble *Divide(const DataArrayDouble *a1, const DataArrayDouble *a2);
362     MEDCOUPLING_EXPORT void divideEqual(const DataArrayDouble *other);
363     MEDCOUPLING_EXPORT static DataArrayDouble *Pow(const DataArrayDouble *a1, const DataArrayDouble *a2);
364     MEDCOUPLING_EXPORT void powEqual(const DataArrayDouble *other);
365     MEDCOUPLING_EXPORT void updateTime() const { }
366     MEDCOUPLING_EXPORT MemArray<double>& accessToMemArray() { return _mem; }
367     MEDCOUPLING_EXPORT const MemArray<double>& accessToMemArray() const { return _mem; }
368   public:
369     MEDCOUPLING_EXPORT void getTinySerializationIntInformation(std::vector<int>& tinyInfo) const;
370     MEDCOUPLING_EXPORT void getTinySerializationStrInformation(std::vector<std::string>& tinyInfo) const;
371     MEDCOUPLING_EXPORT bool resizeForUnserialization(const std::vector<int>& tinyInfoI);
372     MEDCOUPLING_EXPORT void finishUnserialization(const std::vector<int>& tinyInfoI, const std::vector<std::string>& tinyInfoS);
373   public:
374     template<int SPACEDIM>
375     void findCommonTuplesAlg(const double *bbox, int nbNodes, int limitNodeId, double prec, DataArrayInt *c, DataArrayInt *cI) const;
376     template<int SPACEDIM>
377     static void FindClosestTupleIdAlg(const BBTreePts<SPACEDIM,int>& myTree, double dist, const double *pos, int nbOfTuples, const double *thisPt, int thisNbOfTuples, int *res);
378     template<int SPACEDIM>
379     static void FindTupleIdsNearTuplesAlg(const BBTreePts<SPACEDIM,int>& myTree, const double *pos, int nbOfTuples, double eps,
380                                           DataArrayInt *c, DataArrayInt *cI);
381   private:
382     ~DataArrayDouble() { }
383     DataArrayDouble() { }
384   private:
385     MemArray<double> _mem;
386   };
387
388   class DataArrayDoubleTuple;
389
390   class DataArrayDoubleIterator
391   {
392   public:
393     MEDCOUPLING_EXPORT DataArrayDoubleIterator(DataArrayDouble *da);
394     MEDCOUPLING_EXPORT ~DataArrayDoubleIterator();
395     MEDCOUPLING_EXPORT DataArrayDoubleTuple *nextt();
396   private:
397     DataArrayDouble *_da;
398     double *_pt;
399     int _tuple_id;
400     int _nb_comp;
401     int _nb_tuple;
402   };
403
404   class DataArrayDoubleTuple
405   {
406   public:
407     MEDCOUPLING_EXPORT DataArrayDoubleTuple(double *pt, int nbOfComp);
408     MEDCOUPLING_EXPORT std::string repr() const;
409     MEDCOUPLING_EXPORT int getNumberOfCompo() const { return _nb_of_compo; }
410     MEDCOUPLING_EXPORT const double *getConstPointer() const { return  _pt; }
411     MEDCOUPLING_EXPORT double *getPointer() { return _pt; }
412     MEDCOUPLING_EXPORT double doubleValue() const;
413     MEDCOUPLING_EXPORT DataArrayDouble *buildDADouble(int nbOfTuples, int nbOfCompo) const;
414   private:
415     double *_pt;
416     int _nb_of_compo;
417   };
418
419   class DataArrayIntIterator;
420
421   class DataArrayInt : public DataArray
422   {
423   public:
424     MEDCOUPLING_EXPORT static DataArrayInt *New();
425     MEDCOUPLING_EXPORT bool isAllocated() const;
426     MEDCOUPLING_EXPORT void checkAllocated() const;
427     MEDCOUPLING_EXPORT void desallocate();
428     MEDCOUPLING_EXPORT int getNumberOfTuples() const { return _info_on_compo.empty()?0:_mem.getNbOfElem()/getNumberOfComponents(); }
429     MEDCOUPLING_EXPORT std::size_t getNbOfElems() const { return _mem.getNbOfElem(); }
430     MEDCOUPLING_EXPORT std::size_t getHeapMemorySizeWithoutChildren() const;
431     MEDCOUPLING_EXPORT int intValue() const;
432     MEDCOUPLING_EXPORT int getHashCode() const;
433     MEDCOUPLING_EXPORT bool empty() const;
434     MEDCOUPLING_EXPORT DataArrayInt *deepCpy() const;
435     MEDCOUPLING_EXPORT DataArrayInt *performCpy(bool deepCpy) const;
436     MEDCOUPLING_EXPORT void cpyFrom(const DataArrayInt& other);
437     MEDCOUPLING_EXPORT void reserve(std::size_t nbOfElems);
438     MEDCOUPLING_EXPORT void pushBackSilent(int val);
439     MEDCOUPLING_EXPORT void pushBackValsSilent(const int *valsBg, const int *valsEnd);
440     MEDCOUPLING_EXPORT int popBackSilent();
441     MEDCOUPLING_EXPORT void pack() const;
442     MEDCOUPLING_EXPORT std::size_t getNbOfElemAllocated() const { return _mem.getNbOfElemAllocated(); }
443     MEDCOUPLING_EXPORT void alloc(int nbOfTuple, int nbOfCompo=1);
444     MEDCOUPLING_EXPORT void allocIfNecessary(int nbOfTuple, int nbOfCompo);
445     MEDCOUPLING_EXPORT bool isEqual(const DataArrayInt& other) const;
446     MEDCOUPLING_EXPORT bool isEqualIfNotWhy(const DataArrayInt& other, std::string& reason) const;
447     MEDCOUPLING_EXPORT bool isEqualWithoutConsideringStr(const DataArrayInt& other) const;
448     MEDCOUPLING_EXPORT bool isEqualWithoutConsideringStrAndOrder(const DataArrayInt& other) const;
449     MEDCOUPLING_EXPORT bool isFittingWith(const std::vector<bool>& v) const;
450     MEDCOUPLING_EXPORT DataArrayInt *buildPermutationArr(const DataArrayInt& other) const;
451     MEDCOUPLING_EXPORT void sort(bool asc=true);
452     MEDCOUPLING_EXPORT void reverse();
453     MEDCOUPLING_EXPORT void checkMonotonic(bool increasing) const;
454     MEDCOUPLING_EXPORT bool isMonotonic(bool increasing) const;
455     MEDCOUPLING_EXPORT void checkStrictlyMonotonic(bool increasing) const;
456     MEDCOUPLING_EXPORT bool isStrictlyMonotonic(bool increasing) const;
457     MEDCOUPLING_EXPORT void fillWithZero();
458     MEDCOUPLING_EXPORT void fillWithValue(int val);
459     MEDCOUPLING_EXPORT void iota(int init=0);
460     MEDCOUPLING_EXPORT std::string repr() const;
461     MEDCOUPLING_EXPORT std::string reprZip() const;
462     MEDCOUPLING_EXPORT void writeVTK(std::ostream& ofs, int indent, const char *type, const char *nameInFile, DataArrayByte *byteArr) const;
463     MEDCOUPLING_EXPORT void reprStream(std::ostream& stream) const;
464     MEDCOUPLING_EXPORT void reprZipStream(std::ostream& stream) const;
465     MEDCOUPLING_EXPORT void reprWithoutNameStream(std::ostream& stream) const;
466     MEDCOUPLING_EXPORT void reprZipWithoutNameStream(std::ostream& stream) const;
467     MEDCOUPLING_EXPORT void reprCppStream(const char *varName, std::ostream& stream) const;
468     MEDCOUPLING_EXPORT void reprQuickOverview(std::ostream& stream) const;
469     MEDCOUPLING_EXPORT void reprQuickOverviewData(std::ostream& stream, std::size_t maxNbOfByteInRepr) const;
470     MEDCOUPLING_EXPORT void transformWithIndArr(const int *indArrBg, const int *indArrEnd);
471     MEDCOUPLING_EXPORT DataArrayInt *transformWithIndArrR(const int *indArrBg, const int *indArrEnd) const;
472     MEDCOUPLING_EXPORT void splitByValueRange(const int *arrBg, const int *arrEnd,
473                                               DataArrayInt *& castArr, DataArrayInt *& rankInsideCast, DataArrayInt *& castsPresent) const throw(INTERP_KERNEL::Exception);
474     MEDCOUPLING_EXPORT DataArrayInt *invertArrayO2N2N2O(int newNbOfElem) const;
475     MEDCOUPLING_EXPORT DataArrayInt *invertArrayN2O2O2N(int oldNbOfElem) const;
476     MEDCOUPLING_EXPORT DataArrayInt *invertArrayO2N2N2OBis(int newNbOfElem) const;
477     MEDCOUPLING_EXPORT void reAlloc(int nbOfTuples);
478     MEDCOUPLING_EXPORT DataArrayDouble *convertToDblArr() const;
479     MEDCOUPLING_EXPORT DataArrayInt *fromNoInterlace() const;
480     MEDCOUPLING_EXPORT DataArrayInt *toNoInterlace() const;
481     MEDCOUPLING_EXPORT void renumberInPlace(const int *old2New);
482     MEDCOUPLING_EXPORT void renumberInPlaceR(const int *new2Old);
483     MEDCOUPLING_EXPORT DataArrayInt *renumber(const int *old2New) const;
484     MEDCOUPLING_EXPORT DataArrayInt *renumberR(const int *new2Old) const;
485     MEDCOUPLING_EXPORT DataArrayInt *renumberAndReduce(const int *old2NewBg, int newNbOfTuple) const;
486     MEDCOUPLING_EXPORT DataArrayInt *selectByTupleId(const int *new2OldBg, const int *new2OldEnd) const;
487     MEDCOUPLING_EXPORT DataArrayInt *selectByTupleIdSafe(const int *new2OldBg, const int *new2OldEnd) const;
488     MEDCOUPLING_EXPORT DataArrayInt *selectByTupleId2(int bg, int end, int step) const;
489     MEDCOUPLING_EXPORT DataArray *selectByTupleRanges(const std::vector<std::pair<int,int> >& ranges) const;
490     MEDCOUPLING_EXPORT DataArrayInt *checkAndPreparePermutation() const;
491     MEDCOUPLING_EXPORT static DataArrayInt *FindPermutationFromFirstToSecond(const DataArrayInt *ids1, const DataArrayInt *ids2);
492     MEDCOUPLING_EXPORT void changeSurjectiveFormat(int targetNb, DataArrayInt *&arr, DataArrayInt *&arrI) const;
493     MEDCOUPLING_EXPORT static DataArrayInt *BuildOld2NewArrayFromSurjectiveFormat2(int nbOfOldTuples, const int *arr, const int *arrIBg, const int *arrIEnd, int &newNbOfTuples);
494     MEDCOUPLING_EXPORT DataArrayInt *buildPermArrPerLevel() const;
495     MEDCOUPLING_EXPORT bool isIdentity() const;
496     MEDCOUPLING_EXPORT bool isUniform(int val) const;
497     MEDCOUPLING_EXPORT DataArrayInt *substr(int tupleIdBg, int tupleIdEnd=-1) const;
498     MEDCOUPLING_EXPORT void rearrange(int newNbOfCompo);
499     MEDCOUPLING_EXPORT void transpose();
500     MEDCOUPLING_EXPORT DataArrayInt *changeNbOfComponents(int newNbOfComp, int dftValue) const;
501     MEDCOUPLING_EXPORT DataArray *keepSelectedComponents(const std::vector<int>& compoIds) const;
502     MEDCOUPLING_EXPORT void meldWith(const DataArrayInt *other);
503     MEDCOUPLING_EXPORT void setSelectedComponents(const DataArrayInt *a, const std::vector<int>& compoIds);
504     MEDCOUPLING_EXPORT void setPartOfValues1(const DataArrayInt *a, int bgTuples, int endTuples, int stepTuples, int bgComp, int endComp, int stepComp, bool strictCompoCompare=true);
505     MEDCOUPLING_EXPORT void setPartOfValuesSimple1(int a, int bgTuples, int endTuples, int stepTuples, int bgComp, int endComp, int stepComp);
506     MEDCOUPLING_EXPORT void setPartOfValues2(const DataArrayInt *a, const int *bgTuples, const int *endTuples, const int *bgComp, const int *endComp, bool strictCompoCompare=true);
507     MEDCOUPLING_EXPORT void setPartOfValuesSimple2(int a, const int *bgTuples, const int *endTuples, const int *bgComp, const int *endComp);
508     MEDCOUPLING_EXPORT void setPartOfValues3(const DataArrayInt *a, const int *bgTuples, const int *endTuples, int bgComp, int endComp, int stepComp, bool strictCompoCompare=true);
509     MEDCOUPLING_EXPORT void setPartOfValuesSimple3(int a, const int *bgTuples, const int *endTuples, int bgComp, int endComp, int stepComp);
510     MEDCOUPLING_EXPORT void setPartOfValues4(const DataArrayInt *a, int bgTuples, int endTuples, int stepTuples, const int *bgComp, const int *endComp, bool strictCompoCompare=true);
511     MEDCOUPLING_EXPORT void setPartOfValuesSimple4(int a, int bgTuples, int endTuples, int stepTuples, const int *bgComp, const int *endComp);
512     MEDCOUPLING_EXPORT void setPartOfValuesAdv(const DataArrayInt *a, const DataArrayInt *tuplesSelec);
513     MEDCOUPLING_EXPORT void setContigPartOfSelectedValues(int tupleIdStart, const DataArray *aBase, const DataArrayInt *tuplesSelec);
514     MEDCOUPLING_EXPORT void setContigPartOfSelectedValues2(int tupleIdStart, const DataArray *aBase, int bg, int end2, int step);
515     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); }
516     MEDCOUPLING_EXPORT int getIJ(int tupleId, int compoId) const { return _mem[tupleId*_info_on_compo.size()+compoId]; }
517     MEDCOUPLING_EXPORT int getIJSafe(int tupleId, int compoId) const;
518     MEDCOUPLING_EXPORT int front() const;
519     MEDCOUPLING_EXPORT int back() const;
520     MEDCOUPLING_EXPORT void setIJ(int tupleId, int compoId, int newVal) { _mem[tupleId*_info_on_compo.size()+compoId]=newVal; declareAsNew(); }
521     MEDCOUPLING_EXPORT void setIJSilent(int tupleId, int compoId, int newVal) { _mem[tupleId*_info_on_compo.size()+compoId]=newVal; }
522     MEDCOUPLING_EXPORT int *getPointer() { return _mem.getPointer(); }
523     MEDCOUPLING_EXPORT static void SetArrayIn(DataArrayInt *newArray, DataArrayInt* &arrayToSet);
524     MEDCOUPLING_EXPORT const int *getConstPointer() const { return _mem.getConstPointer(); }
525     MEDCOUPLING_EXPORT DataArrayIntIterator *iterator();
526     MEDCOUPLING_EXPORT const int *begin() const { return getConstPointer(); }
527     MEDCOUPLING_EXPORT const int *end() const { return getConstPointer()+getNbOfElems(); }
528     MEDCOUPLING_EXPORT DataArrayInt *getIdsEqual(int val) const;
529     MEDCOUPLING_EXPORT DataArrayInt *getIdsNotEqual(int val) const;
530     MEDCOUPLING_EXPORT DataArrayInt *getIdsEqualList(const int *valsBg, const int *valsEnd) const;
531     MEDCOUPLING_EXPORT DataArrayInt *getIdsNotEqualList(const int *valsBg, const int *valsEnd) const;
532     MEDCOUPLING_EXPORT int changeValue(int oldValue, int newValue);
533     MEDCOUPLING_EXPORT int locateTuple(const std::vector<int>& tupl) const;
534     MEDCOUPLING_EXPORT int locateValue(int value) const;
535     MEDCOUPLING_EXPORT int locateValue(const std::vector<int>& vals) const;
536     MEDCOUPLING_EXPORT int search(const std::vector<int>& vals) const;
537     MEDCOUPLING_EXPORT bool presenceOfTuple(const std::vector<int>& tupl) const;
538     MEDCOUPLING_EXPORT bool presenceOfValue(int value) const;
539     MEDCOUPLING_EXPORT bool presenceOfValue(const std::vector<int>& vals) const;
540     MEDCOUPLING_EXPORT int count(int value) const;
541     MEDCOUPLING_EXPORT void accumulate(int *res) const;
542     MEDCOUPLING_EXPORT int accumulate(int compId) const;
543     MEDCOUPLING_EXPORT DataArrayInt *accumulatePerChunck(const int *bgOfIndex, const int *endOfIndex) const;
544     MEDCOUPLING_EXPORT int getMaxValue(int& tupleId) const;
545     MEDCOUPLING_EXPORT int getMaxValueInArray() const;
546     MEDCOUPLING_EXPORT int getMinValue(int& tupleId) const;
547     MEDCOUPLING_EXPORT int getMinValueInArray() const;
548     MEDCOUPLING_EXPORT void abs();
549     MEDCOUPLING_EXPORT void applyLin(int a, int b, int compoId);
550     MEDCOUPLING_EXPORT void applyLin(int a, int b);
551     MEDCOUPLING_EXPORT void applyInv(int numerator);
552     MEDCOUPLING_EXPORT DataArrayInt *negate() const;
553     MEDCOUPLING_EXPORT void applyDivideBy(int val);
554     MEDCOUPLING_EXPORT void applyModulus(int val);
555     MEDCOUPLING_EXPORT void applyRModulus(int val);
556     MEDCOUPLING_EXPORT void applyPow(int val);
557     MEDCOUPLING_EXPORT void applyRPow(int val);
558     MEDCOUPLING_EXPORT DataArrayInt *getIdsInRange(int vmin, int vmax) const;
559     MEDCOUPLING_EXPORT bool checkAllIdsInRange(int vmin, int vmax) const;
560     MEDCOUPLING_EXPORT static DataArrayInt *Aggregate(const DataArrayInt *a1, const DataArrayInt *a2, int offsetA2);
561     MEDCOUPLING_EXPORT static DataArrayInt *Aggregate(const std::vector<const DataArrayInt *>& arr);
562     MEDCOUPLING_EXPORT static DataArrayInt *AggregateIndexes(const std::vector<const DataArrayInt *>& arrs);
563     MEDCOUPLING_EXPORT static DataArrayInt *Meld(const DataArrayInt *a1, const DataArrayInt *a2);
564     MEDCOUPLING_EXPORT static DataArrayInt *Meld(const std::vector<const DataArrayInt *>& arr);
565     MEDCOUPLING_EXPORT static DataArrayInt *MakePartition(const std::vector<const DataArrayInt *>& groups, int newNb, std::vector< std::vector<int> >& fidsOfGroups);
566     MEDCOUPLING_EXPORT static DataArrayInt *BuildUnion(const std::vector<const DataArrayInt *>& arr);
567     MEDCOUPLING_EXPORT static DataArrayInt *BuildIntersection(const std::vector<const DataArrayInt *>& arr);
568     MEDCOUPLING_EXPORT DataArrayInt *buildComplement(int nbOfElement) const;
569     MEDCOUPLING_EXPORT DataArrayInt *buildSubstraction(const DataArrayInt *other) const;
570     MEDCOUPLING_EXPORT DataArrayInt *buildSubstractionOptimized(const DataArrayInt *other) const;
571     MEDCOUPLING_EXPORT DataArrayInt *buildUnion(const DataArrayInt *other) const;
572     MEDCOUPLING_EXPORT DataArrayInt *buildIntersection(const DataArrayInt *other) const;
573     MEDCOUPLING_EXPORT DataArrayInt *buildUnique() const;
574     MEDCOUPLING_EXPORT DataArrayInt *deltaShiftIndex() const;
575     MEDCOUPLING_EXPORT void computeOffsets();
576     MEDCOUPLING_EXPORT void computeOffsets2();
577     MEDCOUPLING_EXPORT void searchRangesInListOfIds(const DataArrayInt *listOfIds, DataArrayInt *& rangeIdsFetched, DataArrayInt *& idsInInputListThatFetch) const;
578     MEDCOUPLING_EXPORT DataArrayInt *buildExplicitArrByRanges(const DataArrayInt *offsets) const;
579     MEDCOUPLING_EXPORT DataArrayInt *buildExplicitArrOfSliceOnScaledArr(int begin, int end, int step) const;
580     MEDCOUPLING_EXPORT DataArrayInt *findRangeIdForEachTuple(const DataArrayInt *ranges) const;
581     MEDCOUPLING_EXPORT DataArrayInt *findIdInRangeForEachTuple(const DataArrayInt *ranges) const;
582     MEDCOUPLING_EXPORT DataArrayInt *duplicateEachTupleNTimes(int nbTimes) const;
583     MEDCOUPLING_EXPORT DataArrayInt *getDifferentValues() const;
584     MEDCOUPLING_EXPORT std::vector<DataArrayInt *> partitionByDifferentValues(std::vector<int>& differentIds) const;
585     MEDCOUPLING_EXPORT std::vector< std::pair<int,int> > splitInBalancedSlices(int nbOfSlices) const;
586     MEDCOUPLING_EXPORT void useArray(const int *array, bool ownership, DeallocType type, int nbOfTuple, int nbOfCompo);
587     MEDCOUPLING_EXPORT void useExternalArrayWithRWAccess(const int *array, int nbOfTuple, int nbOfCompo);
588     template<class InputIterator>
589     void insertAtTheEnd(InputIterator first, InputIterator last);
590     MEDCOUPLING_EXPORT void writeOnPlace(std::size_t id, int element0, const int *others, int sizeOfOthers) { _mem.writeOnPlace(id,element0,others,sizeOfOthers); }
591     MEDCOUPLING_EXPORT static DataArrayInt *Add(const DataArrayInt *a1, const DataArrayInt *a2);
592     MEDCOUPLING_EXPORT void addEqual(const DataArrayInt *other);
593     MEDCOUPLING_EXPORT static DataArrayInt *Substract(const DataArrayInt *a1, const DataArrayInt *a2);
594     MEDCOUPLING_EXPORT void substractEqual(const DataArrayInt *other);
595     MEDCOUPLING_EXPORT static DataArrayInt *Multiply(const DataArrayInt *a1, const DataArrayInt *a2);
596     MEDCOUPLING_EXPORT void multiplyEqual(const DataArrayInt *other);
597     MEDCOUPLING_EXPORT static DataArrayInt *Divide(const DataArrayInt *a1, const DataArrayInt *a2);
598     MEDCOUPLING_EXPORT void divideEqual(const DataArrayInt *other);
599     MEDCOUPLING_EXPORT static DataArrayInt *Modulus(const DataArrayInt *a1, const DataArrayInt *a2);
600     MEDCOUPLING_EXPORT void modulusEqual(const DataArrayInt *other);
601     MEDCOUPLING_EXPORT static DataArrayInt *Pow(const DataArrayInt *a1, const DataArrayInt *a2);
602     MEDCOUPLING_EXPORT void powEqual(const DataArrayInt *other);
603     MEDCOUPLING_EXPORT void updateTime() const { }
604     MEDCOUPLING_EXPORT MemArray<int>& accessToMemArray() { return _mem; }
605     MEDCOUPLING_EXPORT const MemArray<int>& accessToMemArray() const { return _mem; }
606   public:
607     MEDCOUPLING_EXPORT static int *CheckAndPreparePermutation(const int *start, const int *end);
608     MEDCOUPLING_EXPORT static DataArrayInt *Range(int begin, int end, int step);
609   public:
610     MEDCOUPLING_EXPORT void getTinySerializationIntInformation(std::vector<int>& tinyInfo) const;
611     MEDCOUPLING_EXPORT void getTinySerializationStrInformation(std::vector<std::string>& tinyInfo) const;
612     MEDCOUPLING_EXPORT bool resizeForUnserialization(const std::vector<int>& tinyInfoI);
613     MEDCOUPLING_EXPORT void finishUnserialization(const std::vector<int>& tinyInfoI, const std::vector<std::string>& tinyInfoS);
614   private:
615     ~DataArrayInt() { }
616     DataArrayInt() { }
617   private:
618     MemArray<int> _mem;
619   };
620
621   class DataArrayIntTuple;
622
623   class DataArrayIntIterator
624   {
625   public:
626     MEDCOUPLING_EXPORT DataArrayIntIterator(DataArrayInt *da);
627     MEDCOUPLING_EXPORT ~DataArrayIntIterator();
628     MEDCOUPLING_EXPORT DataArrayIntTuple *nextt();
629   private:
630     DataArrayInt *_da;
631     int *_pt;
632     int _tuple_id;
633     int _nb_comp;
634     int _nb_tuple;
635   };
636
637   class DataArrayIntTuple
638   {
639   public:
640     MEDCOUPLING_EXPORT DataArrayIntTuple(int *pt, int nbOfComp);
641     MEDCOUPLING_EXPORT std::string repr() const;
642     MEDCOUPLING_EXPORT int getNumberOfCompo() const { return _nb_of_compo; }
643     MEDCOUPLING_EXPORT const int *getConstPointer() const { return  _pt; }
644     MEDCOUPLING_EXPORT int *getPointer() { return _pt; }
645     MEDCOUPLING_EXPORT int intValue() const;
646     MEDCOUPLING_EXPORT DataArrayInt *buildDAInt(int nbOfTuples, int nbOfCompo) const;
647   private:
648     int *_pt;
649     int _nb_of_compo;
650   };
651
652   class DataArrayChar : public DataArray
653   {
654   public:
655     MEDCOUPLING_EXPORT virtual DataArrayChar *buildEmptySpecializedDAChar() const = 0;
656     MEDCOUPLING_EXPORT bool isAllocated() const;
657     MEDCOUPLING_EXPORT void checkAllocated() const;
658     MEDCOUPLING_EXPORT void desallocate();
659     MEDCOUPLING_EXPORT int getNumberOfTuples() const { return _info_on_compo.empty()?0:_mem.getNbOfElem()/getNumberOfComponents(); }
660     MEDCOUPLING_EXPORT std::size_t getNbOfElems() const { return _mem.getNbOfElem(); }
661     MEDCOUPLING_EXPORT std::size_t getHeapMemorySizeWithoutChildren() const;
662     MEDCOUPLING_EXPORT int getHashCode() const;
663     MEDCOUPLING_EXPORT bool empty() const;
664     MEDCOUPLING_EXPORT void cpyFrom(const DataArrayChar& other);
665     MEDCOUPLING_EXPORT void reserve(std::size_t nbOfElems);
666     MEDCOUPLING_EXPORT void pushBackSilent(char val);
667     MEDCOUPLING_EXPORT void pushBackValsSilent(const char *valsBg, const char *valsEnd);
668     MEDCOUPLING_EXPORT char popBackSilent();
669     MEDCOUPLING_EXPORT void pack() const;
670     MEDCOUPLING_EXPORT std::size_t getNbOfElemAllocated() const { return _mem.getNbOfElemAllocated(); }
671     MEDCOUPLING_EXPORT void alloc(int nbOfTuple, int nbOfCompo=1);
672     MEDCOUPLING_EXPORT void allocIfNecessary(int nbOfTuple, int nbOfCompo);
673     MEDCOUPLING_EXPORT bool isEqual(const DataArrayChar& other) const;
674     MEDCOUPLING_EXPORT virtual bool isEqualIfNotWhy(const DataArrayChar& other, std::string& reason) const;
675     MEDCOUPLING_EXPORT bool isEqualWithoutConsideringStr(const DataArrayChar& other) const;
676     MEDCOUPLING_EXPORT void reverse();
677     MEDCOUPLING_EXPORT void fillWithZero();
678     MEDCOUPLING_EXPORT void fillWithValue(char val);
679     MEDCOUPLING_EXPORT std::string repr() const;
680     MEDCOUPLING_EXPORT std::string reprZip() const;
681     MEDCOUPLING_EXPORT void reAlloc(int nbOfTuples);
682     MEDCOUPLING_EXPORT DataArrayInt *convertToIntArr() const;
683     MEDCOUPLING_EXPORT void renumberInPlace(const int *old2New);
684     MEDCOUPLING_EXPORT void renumberInPlaceR(const int *new2Old);
685     MEDCOUPLING_EXPORT DataArrayChar *renumber(const int *old2New) const;
686     MEDCOUPLING_EXPORT DataArrayChar *renumberR(const int *new2Old) const;
687     MEDCOUPLING_EXPORT DataArrayChar *renumberAndReduce(const int *old2NewBg, int newNbOfTuple) const;
688     MEDCOUPLING_EXPORT DataArrayChar *selectByTupleId(const int *new2OldBg, const int *new2OldEnd) const;
689     MEDCOUPLING_EXPORT DataArrayChar *selectByTupleIdSafe(const int *new2OldBg, const int *new2OldEnd) const;
690     MEDCOUPLING_EXPORT DataArrayChar *selectByTupleId2(int bg, int end, int step) const;
691     MEDCOUPLING_EXPORT bool isUniform(char val) const;
692     MEDCOUPLING_EXPORT void rearrange(int newNbOfCompo);
693     MEDCOUPLING_EXPORT DataArrayChar *substr(int tupleIdBg, int tupleIdEnd=-1) const;
694     MEDCOUPLING_EXPORT DataArrayChar *changeNbOfComponents(int newNbOfComp, char dftValue) const;
695     MEDCOUPLING_EXPORT DataArray *keepSelectedComponents(const std::vector<int>& compoIds) const;
696     MEDCOUPLING_EXPORT void meldWith(const DataArrayChar *other);
697     MEDCOUPLING_EXPORT void setPartOfValues1(const DataArrayChar *a, int bgTuples, int endTuples, int stepTuples, int bgComp, int endComp, int stepComp, bool strictCompoCompare=true);
698     MEDCOUPLING_EXPORT void setPartOfValuesSimple1(char a, int bgTuples, int endTuples, int stepTuples, int bgComp, int endComp, int stepComp);
699     MEDCOUPLING_EXPORT void setPartOfValues2(const DataArrayChar *a, const int *bgTuples, const int *endTuples, const int *bgComp, const int *endComp, bool strictCompoCompare=true);
700     MEDCOUPLING_EXPORT void setPartOfValuesSimple2(char a, const int *bgTuples, const int *endTuples, const int *bgComp, const int *endComp);
701     MEDCOUPLING_EXPORT void setPartOfValues3(const DataArrayChar *a, const int *bgTuples, const int *endTuples, int bgComp, int endComp, int stepComp, bool strictCompoCompare=true);
702     MEDCOUPLING_EXPORT void setPartOfValuesSimple3(char a, const int *bgTuples, const int *endTuples, int bgComp, int endComp, int stepComp);
703     MEDCOUPLING_EXPORT void setPartOfValues4(const DataArrayChar *a, int bgTuples, int endTuples, int stepTuples, const int *bgComp, const int *endComp, bool strictCompoCompare=true);
704     MEDCOUPLING_EXPORT void setPartOfValuesSimple4(char a, int bgTuples, int endTuples, int stepTuples, const int *bgComp, const int *endComp);
705     MEDCOUPLING_EXPORT void setPartOfValuesAdv(const DataArrayChar *a, const DataArrayChar *tuplesSelec);
706     MEDCOUPLING_EXPORT void setContigPartOfSelectedValues(int tupleIdStart, const DataArray *aBase, const DataArrayInt *tuplesSelec);
707     MEDCOUPLING_EXPORT void setContigPartOfSelectedValues2(int tupleIdStart, const DataArray *aBase, int bg, int end2, int step);
708     MEDCOUPLING_EXPORT DataArray *selectByTupleRanges(const std::vector<std::pair<int,int> >& ranges) const;
709     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); }
710     MEDCOUPLING_EXPORT char getIJ(int tupleId, int compoId) const { return _mem[tupleId*_info_on_compo.size()+compoId]; }
711     MEDCOUPLING_EXPORT char getIJSafe(int tupleId, int compoId) const;
712     MEDCOUPLING_EXPORT char front() const;
713     MEDCOUPLING_EXPORT char back() const;
714     MEDCOUPLING_EXPORT void setIJ(int tupleId, int compoId, char newVal) { _mem[tupleId*_info_on_compo.size()+compoId]=newVal; declareAsNew(); }
715     MEDCOUPLING_EXPORT void setIJSilent(int tupleId, int compoId, char newVal) { _mem[tupleId*_info_on_compo.size()+compoId]=newVal; }
716     MEDCOUPLING_EXPORT char *getPointer() { return _mem.getPointer(); }
717     MEDCOUPLING_EXPORT const char *getConstPointer() const { return _mem.getConstPointer(); }
718     MEDCOUPLING_EXPORT const char *begin() const { return getConstPointer(); }
719     MEDCOUPLING_EXPORT const char *end() const { return getConstPointer()+getNbOfElems(); }
720     MEDCOUPLING_EXPORT DataArrayInt *getIdsEqual(char val) const;
721     MEDCOUPLING_EXPORT DataArrayInt *getIdsNotEqual(char val) const;
722     MEDCOUPLING_EXPORT int search(const std::vector<char>& vals) const;
723     MEDCOUPLING_EXPORT int locateTuple(const std::vector<char>& tupl) const;
724     MEDCOUPLING_EXPORT int locateValue(char value) const;
725     MEDCOUPLING_EXPORT int locateValue(const std::vector<char>& vals) const;
726     MEDCOUPLING_EXPORT bool presenceOfTuple(const std::vector<char>& tupl) const;
727     MEDCOUPLING_EXPORT bool presenceOfValue(char value) const;
728     MEDCOUPLING_EXPORT bool presenceOfValue(const std::vector<char>& vals) const;
729     MEDCOUPLING_EXPORT char getMaxValue(int& tupleId) const;
730     MEDCOUPLING_EXPORT char getMaxValueInArray() const;
731     MEDCOUPLING_EXPORT char getMinValue(int& tupleId) const;
732     MEDCOUPLING_EXPORT char getMinValueInArray() const;
733     MEDCOUPLING_EXPORT DataArrayInt *getIdsInRange(char vmin, char vmax) const;
734     MEDCOUPLING_EXPORT static DataArrayChar *Aggregate(const DataArrayChar *a1, const DataArrayChar *a2);
735     MEDCOUPLING_EXPORT static DataArrayChar *Aggregate(const std::vector<const DataArrayChar *>& arr);
736     MEDCOUPLING_EXPORT static DataArrayChar *Meld(const DataArrayChar *a1, const DataArrayChar *a2);
737     MEDCOUPLING_EXPORT static DataArrayChar *Meld(const std::vector<const DataArrayChar *>& arr);
738     MEDCOUPLING_EXPORT void useArray(const char *array, bool ownership, DeallocType type, int nbOfTuple, int nbOfCompo);
739     template<class InputIterator>
740     void insertAtTheEnd(InputIterator first, InputIterator last);
741     MEDCOUPLING_EXPORT void useExternalArrayWithRWAccess(const char *array, int nbOfTuple, int nbOfCompo);
742     MEDCOUPLING_EXPORT void updateTime() const { }
743     MEDCOUPLING_EXPORT MemArray<char>& accessToMemArray() { return _mem; }
744     MEDCOUPLING_EXPORT const MemArray<char>& accessToMemArray() const { return _mem; }
745   public:
746     //MEDCOUPLING_EXPORT void getTinySerializationIntInformation(std::vector<int>& tinyInfo) const;
747     //MEDCOUPLING_EXPORT void getTinySerializationStrInformation(std::vector<std::string>& tinyInfo) const;
748     //MEDCOUPLING_EXPORT bool resizeForUnserialization(const std::vector<int>& tinyInfoI);
749     //MEDCOUPLING_EXPORT void finishUnserialization(const std::vector<int>& tinyInfoI, const std::vector<std::string>& tinyInfoS);
750   protected:
751     DataArrayChar() { }
752   protected:
753     MemArray<char> _mem;
754   };
755   
756   class DataArrayByteIterator;
757
758   class DataArrayByte : public DataArrayChar
759   {
760   public:
761     MEDCOUPLING_EXPORT static DataArrayByte *New();
762     MEDCOUPLING_EXPORT DataArrayChar *buildEmptySpecializedDAChar() const;
763     MEDCOUPLING_EXPORT DataArrayByteIterator *iterator();
764     MEDCOUPLING_EXPORT DataArrayByte *deepCpy() const;
765     MEDCOUPLING_EXPORT DataArrayByte *performCpy(bool deepCpy) const;
766     MEDCOUPLING_EXPORT char byteValue() const;
767     MEDCOUPLING_EXPORT void reprStream(std::ostream& stream) const;
768     MEDCOUPLING_EXPORT void reprZipStream(std::ostream& stream) const;
769     MEDCOUPLING_EXPORT void reprWithoutNameStream(std::ostream& stream) const;
770     MEDCOUPLING_EXPORT void reprZipWithoutNameStream(std::ostream& stream) const;
771     MEDCOUPLING_EXPORT void reprCppStream(const char *varName, std::ostream& stream) const;
772     MEDCOUPLING_EXPORT void reprQuickOverview(std::ostream& stream) const;
773     MEDCOUPLING_EXPORT void reprQuickOverviewData(std::ostream& stream, std::size_t maxNbOfByteInRepr) const;
774     MEDCOUPLING_EXPORT bool isEqualIfNotWhy(const DataArrayChar& other, std::string& reason) const;
775   private:
776     ~DataArrayByte() { }
777     DataArrayByte() { }
778   };
779
780   class DataArrayByteTuple;
781
782   class DataArrayByteIterator
783   {
784   public:
785     MEDCOUPLING_EXPORT DataArrayByteIterator(DataArrayByte *da);
786     MEDCOUPLING_EXPORT ~DataArrayByteIterator();
787     MEDCOUPLING_EXPORT DataArrayByteTuple *nextt();
788   private:
789     DataArrayByte *_da;
790     char *_pt;
791     int _tuple_id;
792     int _nb_comp;
793     int _nb_tuple;
794   };
795
796   class DataArrayByteTuple
797   {
798   public:
799     MEDCOUPLING_EXPORT DataArrayByteTuple(char *pt, int nbOfComp);
800     MEDCOUPLING_EXPORT std::string repr() const;
801     MEDCOUPLING_EXPORT int getNumberOfCompo() const { return _nb_of_compo; }
802     MEDCOUPLING_EXPORT const char *getConstPointer() const { return  _pt; }
803     MEDCOUPLING_EXPORT char *getPointer() { return _pt; }
804     MEDCOUPLING_EXPORT char byteValue() const;
805     MEDCOUPLING_EXPORT DataArrayByte *buildDAByte(int nbOfTuples, int nbOfCompo) const;
806   private:
807     char *_pt;
808     int _nb_of_compo;
809   };
810   
811   class DataArrayAsciiCharIterator;
812   
813   class DataArrayAsciiChar : public DataArrayChar
814   {
815   public:
816     MEDCOUPLING_EXPORT static DataArrayAsciiChar *New();
817     MEDCOUPLING_EXPORT static DataArrayAsciiChar *New(const std::string& st);
818     MEDCOUPLING_EXPORT static DataArrayAsciiChar *New(const std::vector<std::string>& vst, char defaultChar);
819     MEDCOUPLING_EXPORT DataArrayChar *buildEmptySpecializedDAChar() const;
820     MEDCOUPLING_EXPORT DataArrayAsciiCharIterator *iterator();
821     MEDCOUPLING_EXPORT DataArrayAsciiChar *deepCpy() const;
822     MEDCOUPLING_EXPORT DataArrayAsciiChar *performCpy(bool deepCpy) const;
823     MEDCOUPLING_EXPORT char asciiCharValue() const;
824     MEDCOUPLING_EXPORT void reprStream(std::ostream& stream) const;
825     MEDCOUPLING_EXPORT void reprZipStream(std::ostream& stream) const;
826     MEDCOUPLING_EXPORT void reprWithoutNameStream(std::ostream& stream) const;
827     MEDCOUPLING_EXPORT void reprZipWithoutNameStream(std::ostream& stream) const;
828     MEDCOUPLING_EXPORT void reprCppStream(const char *varName, std::ostream& stream) const;
829     MEDCOUPLING_EXPORT void reprQuickOverview(std::ostream& stream) const;
830     MEDCOUPLING_EXPORT void reprQuickOverviewData(std::ostream& stream, std::size_t maxNbOfByteInRepr) const;
831     MEDCOUPLING_EXPORT bool isEqualIfNotWhy(const DataArrayChar& other, std::string& reason) const;
832   private:
833     ~DataArrayAsciiChar() { }
834     DataArrayAsciiChar() { }
835     DataArrayAsciiChar(const std::string& st);
836     DataArrayAsciiChar(const std::vector<std::string>& vst, char defaultChar);
837   };
838
839   class DataArrayAsciiCharTuple;
840
841   class DataArrayAsciiCharIterator
842   {
843   public:
844     MEDCOUPLING_EXPORT DataArrayAsciiCharIterator(DataArrayAsciiChar *da);
845     MEDCOUPLING_EXPORT ~DataArrayAsciiCharIterator();
846     MEDCOUPLING_EXPORT DataArrayAsciiCharTuple *nextt();
847   private:
848     DataArrayAsciiChar *_da;
849     char *_pt;
850     int _tuple_id;
851     int _nb_comp;
852     int _nb_tuple;
853   };
854
855   class DataArrayAsciiCharTuple
856   {
857   public:
858     MEDCOUPLING_EXPORT DataArrayAsciiCharTuple(char *pt, int nbOfComp);
859     MEDCOUPLING_EXPORT std::string repr() const;
860     MEDCOUPLING_EXPORT int getNumberOfCompo() const { return _nb_of_compo; }
861     MEDCOUPLING_EXPORT const char *getConstPointer() const { return  _pt; }
862     MEDCOUPLING_EXPORT char *getPointer() { return _pt; }
863     MEDCOUPLING_EXPORT char asciiCharValue() const;
864     MEDCOUPLING_EXPORT DataArrayAsciiChar *buildDAAsciiChar(int nbOfTuples, int nbOfCompo) const;
865   private:
866     char *_pt;
867     int _nb_of_compo;
868   };
869
870   template<class InputIterator>
871   void DataArrayDouble::insertAtTheEnd(InputIterator first, InputIterator last)
872   {
873     int nbCompo(getNumberOfComponents());
874     if(nbCompo==1)
875       _mem.insertAtTheEnd(first,last);
876     else if(nbCompo==0)
877       {
878         _info_on_compo.resize(1);
879         _mem.insertAtTheEnd(first,last);
880       }
881     else
882       throw INTERP_KERNEL::Exception("DataArrayDouble::insertAtTheEnd : not available for DataArrayDouble with number of components different than 1 !");
883   }
884   
885   template<class InputIterator>
886   void DataArrayInt::insertAtTheEnd(InputIterator first, InputIterator last)
887   {
888     int nbCompo(getNumberOfComponents());
889     if(nbCompo==1)
890       _mem.insertAtTheEnd(first,last);
891     else if(nbCompo==0)
892       {
893         _info_on_compo.resize(1);
894         _mem.insertAtTheEnd(first,last);
895       }
896     else
897       throw INTERP_KERNEL::Exception("DataArrayInt::insertAtTheEnd : not available for DataArrayInt with number of components different than 1 !");
898   }
899
900   template<class InputIterator>
901   void DataArrayChar::insertAtTheEnd(InputIterator first, InputIterator last)
902   {
903     int nbCompo(getNumberOfComponents());
904     if(nbCompo==1)
905       _mem.insertAtTheEnd(first,last);
906     else if(nbCompo==0)
907       {
908         _info_on_compo.resize(1);
909         _mem.insertAtTheEnd(first,last);
910       }
911     else
912       throw INTERP_KERNEL::Exception("DataArrayChar::insertAtTheEnd : not available for DataArrayChar with number of components different than 1 !");
913   }
914 }
915
916 #endif