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