Salome HOME
new sort function for the pairs list which can replace sortEachPairToMakeALinkedList
[tools/medcoupling.git] / src / MEDCoupling / MEDCouplingMemArray.txx
1 // Copyright (C) 2007-2021  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 (EDF R&D)
20
21 #ifndef __PARAMEDMEM_MEDCOUPLINGMEMARRAY_TXX__
22 #define __PARAMEDMEM_MEDCOUPLINGMEMARRAY_TXX__
23
24 #include "MEDCouplingMemArray.hxx"
25 #include "NormalizedUnstructuredMesh.hxx"
26 #include "InterpKernelException.hxx"
27 #include "InterpolationUtils.hxx"
28 #include "MEDCouplingPartDefinition.hxx"
29 #include "InterpKernelAutoPtr.hxx"
30 #include "MCAuto.hxx"
31 #include "MEDCouplingMap.txx"
32
33 #include <sstream>
34 #include <cstdlib>
35 #include <numeric>
36 #include <algorithm>
37
38 namespace MEDCoupling
39 {
40   template<class T>
41   void MEDCouplingPointer<T>::setInternal(T *pointer)
42   {
43     _internal=pointer;
44     _external=0;
45   }
46
47   template<class T>
48   void MEDCouplingPointer<T>::setExternal(const T *pointer)
49   {
50     _external=pointer;
51     _internal=0;
52   }
53
54   template<class T>
55   MemArray<T>::MemArray(const MemArray<T>& other):_nb_of_elem(0),_nb_of_elem_alloc(0),_ownership(false),_dealloc(0),_param_for_deallocator(0)
56   {
57     if(!other._pointer.isNull())
58       {
59         _nb_of_elem_alloc=other._nb_of_elem;
60         T *pointer=(T*)malloc(_nb_of_elem_alloc*sizeof(T));
61         std::copy(other._pointer.getConstPointer(),other._pointer.getConstPointer()+other._nb_of_elem,pointer);
62         useArray(pointer,true,DeallocType::C_DEALLOC,other._nb_of_elem);
63       }
64   }
65
66   template<class T>
67   void MemArray<T>::useArray(const T *array, bool ownership, DeallocType type, std::size_t nbOfElem)
68   {
69     destroy();
70     _nb_of_elem=nbOfElem;
71     _nb_of_elem_alloc=nbOfElem;
72     if(ownership)
73       _pointer.setInternal(const_cast<T *>(array));
74     else
75       _pointer.setExternal(array);
76     _ownership=ownership;
77     _dealloc=BuildFromType(type);
78   }
79
80   template<class T>
81   void MemArray<T>::useExternalArrayWithRWAccess(const T *array, std::size_t nbOfElem)
82   {
83     destroy();
84     _nb_of_elem=nbOfElem;
85     _nb_of_elem_alloc=nbOfElem;
86     _pointer.setInternal(const_cast<T *>(array));
87     _ownership=false;
88     _dealloc=CPPDeallocator;
89   }
90
91   template<class T>
92   void MemArray<T>::writeOnPlace(std::size_t id, T element0, const T *others, std::size_t sizeOfOthers)
93   {
94     if(id+sizeOfOthers>=_nb_of_elem_alloc)
95       reserve(2*_nb_of_elem+sizeOfOthers+1);
96     T *pointer=_pointer.getPointer();
97     pointer[id]=element0;
98     std::copy(others,others+sizeOfOthers,pointer+id+1);
99     _nb_of_elem=std::max<std::size_t>(_nb_of_elem,id+sizeOfOthers+1);
100   }
101
102   template<class T>
103   void MemArray<T>::pushBack(T elem)
104   {
105     if(_nb_of_elem>=_nb_of_elem_alloc)
106       reserve(_nb_of_elem_alloc>0?2*_nb_of_elem_alloc:1);
107     T *pt=getPointer();
108     pt[_nb_of_elem++]=elem;
109   }
110
111   template<class T>
112   T MemArray<T>::popBack()
113   {
114     if(_nb_of_elem>0)
115       {
116         const T *pt=getConstPointer();
117         return pt[--_nb_of_elem];
118       }
119     throw INTERP_KERNEL::Exception("MemArray::popBack : nothing to pop in array !");
120   }
121
122   template<class T>
123   void MemArray<T>::pack() const
124   {
125     (const_cast<MemArray<T> * >(this))->reserve(_nb_of_elem);
126   }
127
128   template<class T>
129   bool MemArray<T>::isEqual(const MemArray<T>& other, T prec, std::string& reason) const
130   {
131     std::ostringstream oss; oss.precision(15);
132     if(_nb_of_elem!=other._nb_of_elem)
133       {
134         oss << "Number of elements in coarse data of DataArray mismatch : this=" << _nb_of_elem << " other=" << other._nb_of_elem;
135         reason=oss.str();
136         return false;
137       }
138     const T *pt1=_pointer.getConstPointer();
139     const T *pt2=other._pointer.getConstPointer();
140     if(pt1==0 && pt2==0)
141       return true;
142     if(pt1==0 || pt2==0)
143       {
144         oss << "coarse data pointer is defined for only one DataArray instance !";
145         reason=oss.str();
146         return false;
147       }
148     if(pt1==pt2)
149       return true;
150     for(std::size_t i=0;i<_nb_of_elem;i++)
151       if(pt1[i]-pt2[i]<-prec || (pt1[i]-pt2[i])>prec)
152         {
153           oss << "The content of data differs at pos #" << i << " of coarse data ! this[i]=" << pt1[i] << " other[i]=" << pt2[i];
154           reason=oss.str();
155           return false;
156         }
157     return true;
158   }
159
160   /*!
161    * \param [in] sl is typically the number of components
162    * \return True if a not null pointer is present, False if not.
163    */
164   template<class T>
165   bool MemArray<T>::reprHeader(mcIdType sl, std::ostream& stream) const
166   {
167     stream << "Number of tuples : ";
168     if(!_pointer.isNull())
169       {
170         if(sl!=0)
171           stream << _nb_of_elem/sl << std::endl << "Internal memory facts : " << _nb_of_elem << "/" << _nb_of_elem_alloc;
172         else
173           stream << "Empty Data";
174       }
175     else
176       stream << "No data";
177     stream << "\n";
178     stream << "Data content :\n";
179     bool ret=!_pointer.isNull();
180     if(!ret)
181       stream << "No data !\n";
182     return ret;
183   }
184
185   /*!
186    * \param [in] sl is typically the number of components
187    */
188   template<class T>
189   void MemArray<T>::repr(mcIdType sl, std::ostream& stream) const
190   {
191     if(reprHeader(sl,stream))
192       {
193         const T *data=getConstPointer();
194         if(_nb_of_elem!=0 && sl!=0)
195           {
196             std::size_t nbOfTuples=_nb_of_elem/std::abs(sl);
197             for(std::size_t i=0;i<nbOfTuples;i++)
198               {
199                 stream << "Tuple #" << i << " : ";
200                 std::copy(data,data+sl,std::ostream_iterator<T>(stream," "));
201                 stream << "\n";
202                 data+=sl;
203               }
204           }
205         else
206           stream << "Empty Data\n";
207       }
208   }
209
210   /*!
211    * \param [in] sl is typically the number of components
212    */
213   template<class T>
214   void MemArray<T>::reprZip(mcIdType sl, std::ostream& stream) const
215   {
216     stream << "Number of tuples : ";
217     if(!_pointer.isNull())
218       {
219         if(sl!=0)
220           stream << _nb_of_elem/sl;
221         else
222           stream << "Empty Data";
223       }
224     else
225       stream << "No data";
226     stream << "\n";
227     stream << "Data content : ";
228     const T *data=getConstPointer();
229     if(!_pointer.isNull())
230       {
231         if(_nb_of_elem!=0 && sl!=0)
232           {
233             std::size_t nbOfTuples=_nb_of_elem/std::abs(sl);
234             for(std::size_t i=0;i<nbOfTuples;i++)
235               {
236                 stream << "|";
237                 std::copy(data,data+sl,std::ostream_iterator<T>(stream," "));
238                 stream << "| ";
239                 data+=sl;
240               }
241             stream << "\n";
242           }
243         else
244           stream << "Empty Data\n";
245       }
246     else
247       stream << "No data !\n";
248   }
249
250   /*!
251    * \param [in] sl is typically the number of components
252    */
253   template<class T>
254   void MemArray<T>::reprNotTooLong(mcIdType sl, std::ostream& stream) const
255   {
256     if(reprHeader(sl,stream))
257       {
258         const T *data=getConstPointer();
259         if(_nb_of_elem!=0 && sl!=0)
260           {
261             std::size_t nbOfTuples=_nb_of_elem/std::abs(sl);
262             if(nbOfTuples<=1000)
263               {
264                 for(std::size_t i=0;i<nbOfTuples;i++)
265                   {
266                     stream << "Tuple #" << i << " : ";
267                     std::copy(data,data+sl,std::ostream_iterator<T>(stream," "));
268                     stream << "\n";
269                     data+=sl;
270                   }
271               }
272             else
273               {// too much tuples -> print the 3 first tuples and 3 last.
274                 stream << "Tuple #0 : ";
275                 std::copy(data,data+sl,std::ostream_iterator<T>(stream," ")); stream << "\n";
276                 stream << "Tuple #1 : ";
277                 std::copy(data+sl,data+2*sl,std::ostream_iterator<T>(stream," ")); stream << "\n";
278                 stream << "Tuple #2 : ";
279                 std::copy(data+2*sl,data+3*sl,std::ostream_iterator<T>(stream," ")); stream << "\n";
280                 stream << "...\n";
281                 stream << "Tuple #" << nbOfTuples-3 << " : ";
282                 std::copy(data+(nbOfTuples-3)*sl,data+(nbOfTuples-2)*sl,std::ostream_iterator<T>(stream," ")); stream << "\n";
283                 stream << "Tuple #" << nbOfTuples-2 << " : ";
284                 std::copy(data+(nbOfTuples-2)*sl,data+(nbOfTuples-1)*sl,std::ostream_iterator<T>(stream," ")); stream << "\n";
285                 stream << "Tuple #" << nbOfTuples-1 << " : ";
286                 std::copy(data+(nbOfTuples-1)*sl,data+nbOfTuples*sl,std::ostream_iterator<T>(stream," ")); stream << "\n";
287               }
288           }
289         else
290           stream << "Empty Data\n";
291       }
292   }
293
294   template<class T>
295   void MemArray<T>::fillWithValue(const T& val)
296   {
297     T *pt=_pointer.getPointer();
298     std::fill(pt,pt+_nb_of_elem,val);
299   }
300
301   template<class T>
302   T *MemArray<T>::fromNoInterlace(std::size_t nbOfComp) const
303   {
304     if(nbOfComp<1)
305       throw INTERP_KERNEL::Exception("MemArray<T>::fromNoInterlace : number of components must be > 0 !");
306     const T *pt=_pointer.getConstPointer();
307     std::size_t nbOfTuples=_nb_of_elem/nbOfComp;
308     T *ret=(T*)malloc(_nb_of_elem*sizeof(T));
309     T *w=ret;
310     for(std::size_t i=0;i<nbOfTuples;i++)
311       for(std::size_t j=0;j<nbOfComp;j++,w++)
312         *w=pt[j*nbOfTuples+i];
313     return ret;
314   }
315
316   template<class T>
317   T *MemArray<T>::toNoInterlace(std::size_t nbOfComp) const
318   {
319     if(nbOfComp<1)
320       throw INTERP_KERNEL::Exception("MemArray<T>::toNoInterlace : number of components must be > 0 !");
321     const T *pt=_pointer.getConstPointer();
322     std::size_t nbOfTuples=_nb_of_elem/nbOfComp;
323     T *ret=(T*)malloc(_nb_of_elem*sizeof(T));
324     T *w=ret;
325     for(std::size_t i=0;i<nbOfComp;i++)
326       for(std::size_t j=0;j<nbOfTuples;j++,w++)
327         *w=pt[j*nbOfComp+i];
328     return ret;
329   }
330
331   template<class T>
332   void MemArray<T>::sort(bool asc)
333   {
334     T *pt=_pointer.getPointer();
335     if(asc)
336       std::sort(pt,pt+_nb_of_elem);
337     else
338       {
339         typename std::reverse_iterator<T *> it1(pt+_nb_of_elem);
340         typename std::reverse_iterator<T *> it2(pt);
341         std::sort(it1,it2);
342       }
343   }
344
345   template<class T>
346   void MemArray<T>::reverse(std::size_t nbOfComp)
347   {
348     if(nbOfComp<1)
349       throw INTERP_KERNEL::Exception("MemArray<T>::reverse : only supported with 'this' array with ONE or more than ONE component !");
350     T *pt=_pointer.getPointer();
351     if(nbOfComp==1)
352       {
353         std::reverse(pt,pt+_nb_of_elem);
354         return ;
355       }
356     else
357       {
358         T *pt2=pt+_nb_of_elem-nbOfComp;
359         std::size_t nbOfTuples=_nb_of_elem/nbOfComp;
360         for(std::size_t i=0;i<nbOfTuples/2;i++,pt+=nbOfComp,pt2-=nbOfComp)
361           {
362             for(std::size_t j=0;j<nbOfComp;j++)
363               std::swap(pt[j],pt2[j]);
364           }
365       }
366   }
367
368   template<class T>
369   void MemArray<T>::alloc(std::size_t nbOfElements)
370   {
371     destroy();
372     _nb_of_elem=nbOfElements;
373     _nb_of_elem_alloc=nbOfElements;
374     _pointer.setInternal((T*)malloc(_nb_of_elem_alloc*sizeof(T)));
375     _ownership=true;
376     _dealloc=CDeallocator;
377   }
378
379   /*!
380    * This method performs systematically an allocation of \a newNbOfElements elements in \a this.
381    * \a _nb_of_elem and \a _nb_of_elem_alloc will \b NOT be systematically equal (contrary to MemArray<T>::reAlloc method.
382    * So after the call of this method \a _nb_of_elem will be equal tostd::min<std::size_t>(_nb_of_elem,newNbOfElements) and \a _nb_of_elem_alloc equal to
383    * \a newNbOfElements. This method is typically used to perform a pushBack to avoid systematic allocations-copy-deallocation.
384    * So after the call of this method the accessible content is perfectly set.
385    *
386    * So this method should not be confused with MemArray<T>::reserve that is close to MemArray<T>::reAlloc but not same.
387    */
388   template<class T>
389   void MemArray<T>::reserve(std::size_t newNbOfElements)
390   {
391     if(_nb_of_elem_alloc==newNbOfElements)
392       return ;
393     T *pointer=(T*)malloc(newNbOfElements*sizeof(T));
394     std::copy(_pointer.getConstPointer(),_pointer.getConstPointer()+std::min<std::size_t>(_nb_of_elem,newNbOfElements),pointer);
395     if(_ownership)
396       DestroyPointer(const_cast<T *>(_pointer.getConstPointer()),_dealloc,_param_for_deallocator);//Do not use getPointer because in case of _external
397     _pointer.setInternal(pointer);
398     _nb_of_elem=std::min<std::size_t>(_nb_of_elem,newNbOfElements);
399     _nb_of_elem_alloc=newNbOfElements;
400     _ownership=true;
401     _dealloc=CDeallocator;
402     _param_for_deallocator=0;
403   }
404
405   /*!
406    * This method performs systematically an allocation of \a newNbOfElements elements in \a this.
407    * \a _nb_of_elem and \a _nb_of_elem_alloc will be equal even if only std::min<std::size_t>(_nb_of_elem,newNbOfElements) come from the .
408    * The remaining part of the new allocated chunk are available but not set previously !
409    *
410    * So this method should not be confused with MemArray<T>::reserve that is close to MemArray<T>::reAlloc but not same.
411    */
412   template<class T>
413   void MemArray<T>::reAlloc(std::size_t newNbOfElements)
414   {
415     if(_nb_of_elem==newNbOfElements)
416       return ;
417     T *pointer=(T*)malloc(newNbOfElements*sizeof(T));
418     std::copy(_pointer.getConstPointer(),_pointer.getConstPointer()+std::min<std::size_t>(_nb_of_elem,newNbOfElements),pointer);
419     if(_ownership)
420       DestroyPointer(const_cast<T *>(_pointer.getConstPointer()),_dealloc,_param_for_deallocator);//Do not use getPointer because in case of _external
421     _pointer.setInternal(pointer);
422     _nb_of_elem=newNbOfElements;
423     _nb_of_elem_alloc=newNbOfElements;
424     _ownership=true;
425     _dealloc=CDeallocator;
426     _param_for_deallocator=0;
427   }
428
429   template<class T>
430   void MemArray<T>::CPPDeallocator(void *pt, void *param)
431   {
432     delete [] reinterpret_cast<T*>(pt);
433   }
434
435   template<class T>
436   void MemArray<T>::CDeallocator(void *pt, void *param)
437   {
438     free(pt);
439   }
440
441   template<class T>
442   void MemArray<T>::COffsetDeallocator(void *pt, void *param)
443   {
444     int64_t *offset(reinterpret_cast<int64_t *>(param));
445     char *ptcast(reinterpret_cast<char *>(pt));
446     free(ptcast+*offset);
447   }
448
449   template<class T>
450   typename MemArray<T>::Deallocator MemArray<T>::BuildFromType(DeallocType type)
451   {
452     switch(type)
453     {
454       case DeallocType::CPP_DEALLOC:
455         return CPPDeallocator;
456       case DeallocType::C_DEALLOC:
457         return CDeallocator;
458       case DeallocType::C_DEALLOC_WITH_OFFSET:
459         return COffsetDeallocator;
460       default:
461         throw INTERP_KERNEL::Exception("Invalid deallocation requested ! Unrecognized enum DeallocType !");
462     }
463   }
464
465   template<class T>
466   void MemArray<T>::DestroyPointer(T *pt, typename MemArray<T>::Deallocator dealloc, void *param)
467   {
468     if(dealloc)
469       dealloc(pt,param);
470   }
471
472   template<class T>
473   void MemArray<T>::destroy()
474   {
475     if(_ownership)
476       DestroyPointer(const_cast<T *>(_pointer.getConstPointer()),_dealloc,_param_for_deallocator);//Do not use getPointer because in case of _external
477     _pointer.null();
478     _ownership=false;
479     _dealloc=NULL;
480     _param_for_deallocator=NULL;
481     _nb_of_elem=0;
482     _nb_of_elem_alloc=0;
483   }
484
485   template<class T>
486   MemArray<T> &MemArray<T>::operator=(const MemArray<T>& other)
487   {
488     alloc(other._nb_of_elem);
489     std::copy(other._pointer.getConstPointer(),other._pointer.getConstPointer()+_nb_of_elem,_pointer.getPointer());
490     return *this;
491   }
492
493   //////////////////////////////////
494
495   template<class T>
496   DataArrayIterator<T>::DataArrayIterator(typename Traits<T>::ArrayType *da):_da(da),_tuple_id(0),_nb_comp(0),_nb_tuple(0)
497   {
498     if(_da)
499       {
500         _da->incrRef();
501         if(_da->isAllocated())
502           {
503             _nb_comp=da->getNumberOfComponents();
504             _nb_tuple=da->getNumberOfTuples();
505             _pt=da->getPointer();
506           }
507       }
508   }
509
510   template<class T>
511   DataArrayIterator<T>::~DataArrayIterator()
512   {
513     if(_da)
514       _da->decrRef();
515   }
516
517   template<class T>
518   typename Traits<T>::ArrayTuple *DataArrayIterator<T>::nextt()
519   {
520     if(_tuple_id<_nb_tuple)
521       {
522         _tuple_id++;
523         typename Traits<T>::ArrayTuple *ret=new typename Traits<T>::ArrayTuple(_pt,_nb_comp);
524         _pt+=_nb_comp;
525         return ret;
526       }
527     else
528       return 0;
529   }
530
531   //////////////////////////////////
532
533   template<class T>
534   DataArrayTuple<T>::DataArrayTuple(T *pt, std::size_t nbOfComp):_pt(pt),_nb_of_compo(nbOfComp)
535   {
536   }
537
538   template<class T>
539   T DataArrayTuple<T>::zeValue() const
540   {
541     if(_nb_of_compo==1)
542       return *_pt;
543     throw INTERP_KERNEL::Exception("DataArrayTuple<T>::zeValue : DataArrayTuple instance has not exactly 1 component -> Not possible to convert it into a single value !");
544   }
545
546   template<class T>
547   typename Traits<T>::ArrayType *DataArrayTuple<T>::buildDA(std::size_t nbOfTuples, std::size_t nbOfCompo) const
548   {
549     if((_nb_of_compo==nbOfCompo && nbOfTuples==1) || (_nb_of_compo==nbOfTuples && nbOfCompo==1))
550     {
551       typename Traits<T>::ArrayType *ret=Traits<T>::ArrayType::New();
552       ret->useExternalArrayWithRWAccess(_pt,nbOfTuples,nbOfCompo);
553       return ret;
554     }
555   else
556     {
557       std::ostringstream oss; oss << "DataArrayTuple<T>::buildDA : unable to build a requested DataArrayDouble instance with nbofTuple=" << nbOfTuples << " and nbOfCompo=" << nbOfCompo;
558       oss << ".\nBecause the number of elements in this is " << _nb_of_compo << " !";
559       throw INTERP_KERNEL::Exception(oss.str().c_str());
560     }
561   }
562
563   //////////////////////////////////
564
565   /*!
566    * This method is useful to slice work among a pool of threads or processes. \a begin, \a end \a step is the input whole slice of work to perform,
567    * typically it is a whole slice of tuples of DataArray or cells, nodes of a mesh...
568    *
569    * The input \a sliceId should be an id in [0, \a nbOfSlices) that specifies the slice of work.
570    *
571    * \param [in] start - the start of the input slice of the whole work to perform split into slices.
572    * \param [in] stop - the stop of the input slice of the whole work to perform split into slices.
573    * \param [in] step - the step (that can be <0) of the input slice of the whole work to perform split into slices.
574    * \param [in] sliceId - the slice id considered
575    * \param [in] nbOfSlices - the number of slices (typically the number of cores on which the work is expected to be sliced)
576    * \param [out] startSlice - the start of the slice considered
577    * \param [out] stopSlice - the stop of the slice consided
578    *
579    * \throw If \a step == 0
580    * \throw If \a nbOfSlices not > 0
581    * \throw If \a sliceId not in [0,nbOfSlices)
582    */
583   template <class T>
584   void DataArrayTools<T>::GetSlice(T start, T stop, T step, mcIdType sliceId, mcIdType nbOfSlices, T& startSlice, T& stopSlice)
585   {
586     if(nbOfSlices<=0)
587       {
588         std::ostringstream oss; oss << "DataArray::GetSlice : nbOfSlices (" << nbOfSlices << ") must be > 0 !";
589         throw INTERP_KERNEL::Exception(oss.str().c_str());
590       }
591     if(sliceId<0 || sliceId>=nbOfSlices)
592       {
593         std::ostringstream oss; oss << "DataArray::GetSlice : sliceId (" << nbOfSlices << ") must be in [0 , nbOfSlices (" << nbOfSlices << ") ) !";
594         throw INTERP_KERNEL::Exception(oss.str().c_str());
595       }
596     mcIdType nbElems=DataArrayTools<T>::GetNumberOfItemGivenBESRelative(start,stop,step,"DataArray::GetSlice");
597     mcIdType minNbOfElemsPerSlice=nbElems/nbOfSlices;
598     startSlice=start+minNbOfElemsPerSlice*step*sliceId;
599     if(sliceId<nbOfSlices-1)
600       stopSlice=start+minNbOfElemsPerSlice*step*(sliceId+1);
601     else
602       stopSlice=stop;
603   }
604
605   template <class T>
606   mcIdType DataArrayTools<T>::GetNumberOfItemGivenBES(T begin, T end, T step, const std::string& msg)
607   {
608     if(end<begin)
609       {
610         std::ostringstream oss; oss << msg << " : end before begin !";
611         throw INTERP_KERNEL::Exception(oss.str().c_str());
612       }
613     if(end==begin)
614       return 0;
615     if(step<=0)
616       {
617         std::ostringstream oss; oss << msg << " : invalid step should be > 0 !";
618         throw INTERP_KERNEL::Exception(oss.str().c_str());
619       }
620     return ToIdType((end-1-begin)/step+1);
621   }
622
623   template <class T>
624   mcIdType DataArrayTools<T>::GetNumberOfItemGivenBESRelative(T begin, T end, T step, const std::string& msg)
625   {
626     if(step==0)
627       throw INTERP_KERNEL::Exception("DataArray::GetNumberOfItemGivenBES : step=0 is not allowed !");
628     if(end<begin && step>0)
629       {
630         std::ostringstream oss; oss << msg << " : end before begin whereas step is positive !";
631         throw INTERP_KERNEL::Exception(oss.str().c_str());
632       }
633     if(begin<end && step<0)
634       {
635         std::ostringstream oss; oss << msg << " : invalid step should be > 0 !";
636         throw INTERP_KERNEL::Exception(oss.str().c_str());
637       }
638     if(begin!=end)
639       return ToIdType((std::max(begin,end)-1-std::min(begin,end))/std::abs(step)+1);
640     else
641       return 0;
642   }
643
644   template <class T>
645   mcIdType DataArrayTools<T>::GetPosOfItemGivenBESRelativeNoThrow(T value, T begin, T end, T step)
646   {
647     if (step == 0)
648       return -1;
649
650     if((step>0 && begin<=value && value<end) ||
651        (step<0 && begin>=value && value>end))
652     {
653       mcIdType id = ToIdType((value-begin)/step);
654       if (begin + step * id == value)
655         return id;
656       else
657         return -1;
658     }
659     else
660       return -1;
661   }
662
663   //////////////////////////////////
664
665   template<class T>
666   MCAuto< typename Traits<T>::ArrayTypeCh > DataArrayTemplate<T>::NewFromStdVector(const typename std::vector<T>& v)
667   {
668     std::size_t sz(v.size());
669     MCAuto< typename Traits<T>::ArrayTypeCh > ret(Traits<T>::ArrayTypeCh::New());
670     ret->alloc(sz,1);
671     T *pt(ret->getPointer());
672     std::copy(v.begin(),v.end(),pt);
673     return ret;
674   }
675
676   /*!
677    * Returns a newly created array containing a copy of the input array defined by [ \a arrBegin, \a arrEnd )
678    */
679   template<class T>
680   MCAuto< typename Traits<T>::ArrayTypeCh > DataArrayTemplate<T>::NewFromArray(const T *arrBegin, const T *arrEnd)
681   {
682     using DataArrayT = typename Traits<T>::ArrayTypeCh;
683     MCAuto< DataArrayT > ret(DataArrayT::New());
684     std::size_t nbElts(std::distance(arrBegin,arrEnd));
685     ret->alloc(nbElts,1);
686     std::copy(arrBegin,arrEnd,ret->getPointer());
687     return ret;
688   }
689
690   template<class T>
691   std::vector< MCAuto< typename Traits<T>::ArrayTypeCh > > DataArrayTemplate<T>::explodeComponents() const
692   {
693     checkAllocated();
694     std::size_t sz(getNumberOfComponents());
695     mcIdType nbTuples(getNumberOfTuples());
696     std::string name(getName());
697     std::vector<std::string> compNames(getInfoOnComponents());
698     std::vector< MCAuto< typename Traits<T>::ArrayTypeCh > > ret(sz);
699     const T *thisPt(begin());
700     for(std::size_t i=0;i<sz;i++)
701       {
702         MCAuto< typename Traits<T>::ArrayTypeCh > part(Traits<T>::ArrayTypeCh::New());
703         part->alloc(nbTuples,1);
704         part->setName(name);
705         part->setInfoOnComponent(0,compNames[i]);
706         T *otherPt(part->getPointer());
707         for(mcIdType j=0;j<nbTuples;j++)
708           otherPt[j]=thisPt[sz*j+i];
709         ret[i]=part;
710       }
711     return ret;
712   }
713
714   template<class T>
715   std::size_t DataArrayTemplate<T>::getHeapMemorySizeWithoutChildren() const
716   {
717     std::size_t sz(_mem.getNbOfElemAllocated());
718     sz*=sizeof(T);
719     return DataArray::getHeapMemorySizeWithoutChildren()+sz;
720   }
721
722   /*!
723    * Allocates the raw data in memory. If the memory was already allocated, then it is
724    * freed and re-allocated. See an example of this method use
725    * \ref MEDCouplingArraySteps1WC "here".
726    *  \param [in] nbOfTuple - number of tuples of data to allocate.
727    *  \param [in] nbOfCompo - number of components of data to allocate.
728    *  \throw If \a nbOfTuple < 0 or \a nbOfCompo < 0.
729    */
730   template<class T>
731   void DataArrayTemplate<T>::alloc(std::size_t nbOfTuple, std::size_t nbOfCompo)
732   {
733     _info_on_compo.resize(nbOfCompo);
734     _mem.alloc(nbOfCompo*nbOfTuple);
735     declareAsNew();
736   }
737
738   /*!
739    * Sets a C array to be used as raw data of \a this. The previously set info
740    *  of components is retained and re-sized.
741    * For more info see \ref MEDCouplingArraySteps1.
742    *  \param [in] array - the C array to be used as raw data of \a this.
743    *  \param [in] ownership - if \a true, \a array will be deallocated at destruction of \a this.
744    *  \param [in] type - specifies how to deallocate \a array. If \a type == MEDCoupling::CPP_DEALLOC,
745    *                     \c delete [] \c array; will be called. If \a type == MEDCoupling::C_DEALLOC,
746    *                     \c free(\c array ) will be called.
747    *  \param [in] nbOfTuple - new number of tuples in \a this.
748    *  \param [in] nbOfCompo - new number of components in \a this.
749    */
750   template<class T>
751   void DataArrayTemplate<T>::useArray(const T *array, bool ownership, DeallocType type, std::size_t nbOfTuple, std::size_t nbOfCompo)
752   {
753     _info_on_compo.resize(nbOfCompo);
754     _mem.useArray(array,ownership,type,nbOfTuple*nbOfCompo);
755     declareAsNew();
756   }
757
758   template<class T>
759   void DataArrayTemplate<T>::useExternalArrayWithRWAccess(const T *array, std::size_t nbOfTuple, std::size_t nbOfCompo)
760   {
761     _info_on_compo.resize(nbOfCompo);
762     _mem.useExternalArrayWithRWAccess(array,nbOfTuple*nbOfCompo);
763     declareAsNew();
764   }
765
766   /*!
767    * Returns a value located at specified tuple and component.
768    * This method is equivalent to DataArrayTemplate<T>::getIJ() except that validity of
769    * parameters is checked. So this method is safe but expensive if used to go through
770    * all values of \a this.
771    *  \param [in] tupleId - index of tuple of interest.
772    *  \param [in] compoId - index of component of interest.
773    *  \return double - value located by \a tupleId and \a compoId.
774    *  \throw If \a this is not allocated.
775    *  \throw If condition <em>( 0 <= tupleId < this->getNumberOfTuples() )</em> is violated.
776    *  \throw If condition <em>( 0 <= compoId < this->getNumberOfComponents() )</em> is violated.
777    */
778   template<class T>
779   T DataArrayTemplate<T>::getIJSafe(std::size_t tupleId, std::size_t compoId) const
780   {
781     checkAllocated();
782     if(ToIdType(tupleId)>=getNumberOfTuples())
783       {
784         std::ostringstream oss; oss << Traits<T>::ArrayTypeName << "::getIJSafe : request for tupleId " << tupleId << " should be in [0," << getNumberOfTuples() << ") !";
785         throw INTERP_KERNEL::Exception(oss.str().c_str());
786       }
787     if(compoId>=getNumberOfComponents())
788       {
789         std::ostringstream oss; oss << Traits<T>::ArrayTypeName << "::getIJSafe : request for compoId " << compoId << " should be in [0," << getNumberOfComponents() << ") !";
790         throw INTERP_KERNEL::Exception(oss.str().c_str());
791       }
792     return _mem[tupleId*_info_on_compo.size()+compoId];
793   }
794
795   /*!
796    * This method \b do \b not modify content of \a this. It only modify its memory footprint if the allocated memory is to high regarding real data to store.
797    *
798    * \sa DataArray::getHeapMemorySizeWithoutChildren, DataArrayTemplate<T>::reserve
799    */
800   template<class T>
801   void DataArrayTemplate<T>::pack() const
802   {
803     _mem.pack();
804   }
805
806   /*!
807    * Checks if raw data is allocated. Read more on the raw data
808    * in \ref MEDCouplingArrayBasicsTuplesAndCompo "DataArrays infos" for more information.
809    *  \return bool - \a true if the raw data is allocated, \a false else.
810    */
811   template<class T>
812   bool DataArrayTemplate<T>::isAllocated() const
813   {
814     return getConstPointer()!=0;
815   }
816
817   /*!
818    * Checks if raw data is allocated and throws an exception if it is not the case.
819    *  \throw If the raw data is not allocated.
820    */
821   template<class T>
822   void DataArrayTemplate<T>::checkAllocated() const
823   {
824     if(!isAllocated())
825       {
826         std::ostringstream oss; oss << Traits<T>::ArrayTypeName << "::checkAllocated : Array is defined but not allocated ! Call alloc or setValues method first !";
827         throw INTERP_KERNEL::Exception(oss.str().c_str());
828       }
829   }
830
831   /*!
832    * This method deallocated \a this without modification of information relative to the components.
833    * After call of this method, DataArrayDouble::isAllocated will return false.
834    * If \a this is already not allocated, \a this is let unchanged.
835    */
836   template<class T>
837   void DataArrayTemplate<T>::desallocate()
838   {
839     _mem.destroy();
840   }
841
842   /*!
843    * This method reserve nbOfElems elements in memory ( nbOfElems*sizeof(T) ) \b without impacting the number of tuples in \a this.
844    * If \a this has already been allocated, this method checks that \a this has only one component. If not an INTERP_KERNEL::Exception will be thrown.
845    * If \a this has not already been allocated, number of components is set to one.
846    * This method allows to reduce number of reallocations on invocation of DataArrayDouble::pushBackSilent and DataArrayDouble::pushBackValsSilent on \a this.
847    *
848    * \sa DataArrayDouble::pack, DataArrayDouble::pushBackSilent, DataArrayDouble::pushBackValsSilent
849    */
850   template<class T>
851   void DataArrayTemplate<T>::reserve(std::size_t nbOfElems)
852   {
853     std::size_t nbCompo(getNumberOfComponents());
854     if(nbCompo==1)
855       {
856         _mem.reserve(nbOfElems);
857       }
858     else if(nbCompo==0)
859       {
860         _mem.reserve(nbOfElems);
861         _info_on_compo.resize(1);
862       }
863     else
864       {
865         std::ostringstream oss; oss << Traits<T>::ArrayTypeName << "::reserve : not available for DataArrayDouble with number of components different than 1 !";
866         throw INTERP_KERNEL::Exception(oss.str().c_str());
867       }
868   }
869
870   /*!
871    * This method adds at the end of \a this the single value \a val. This method do \b not update its time label to avoid useless incrementation
872    * of counter. So the caller is expected to call TimeLabel::declareAsNew on \a this at the end of the push session.
873    *
874    * \param [in] val the value to be added in \a this
875    * \throw If \a this has already been allocated with number of components different from one.
876    * \sa DataArrayDouble::pushBackValsSilent
877    */
878   template<class T>
879   void DataArrayTemplate<T>::pushBackSilent(T val)
880   {
881     std::size_t nbCompo(getNumberOfComponents());
882     if(nbCompo==1)
883       _mem.pushBack(val);
884     else if(nbCompo==0)
885       {
886         _info_on_compo.resize(1);
887         _mem.pushBack(val);
888       }
889     else
890       {
891         std::ostringstream oss; oss << Traits<T>::ArrayTypeName << "::pushBackSilent : not available for DataArrayDouble with number of components different than 1 !";
892         throw INTERP_KERNEL::Exception(oss.str().c_str());
893       }
894   }
895
896   /*!
897    * This method adds at the end of \a this a series of values [\c valsBg,\c valsEnd). This method do \b not update its time label to avoid useless incrementation
898    * of counter. So the caller is expected to call TimeLabel::declareAsNew on \a this at the end of the push session.
899    *
900    *  \param [in] valsBg - an array of values to push at the end of \c this.
901    *  \param [in] valsEnd - specifies the end of the array \a valsBg, so that
902    *              the last value of \a valsBg is \a valsEnd[ -1 ].
903    * \throw If \a this has already been allocated with number of components different from one.
904    * \sa DataArrayDouble::pushBackSilent
905    */
906   template<class T>
907   void DataArrayTemplate<T>::pushBackValsSilent(const T *valsBg, const T *valsEnd)
908   {
909     std::size_t nbCompo(getNumberOfComponents());
910     if(nbCompo==1)
911       _mem.insertAtTheEnd(valsBg,valsEnd);
912     else if(nbCompo==0)
913       {
914         _info_on_compo.resize(1);
915         _mem.insertAtTheEnd(valsBg,valsEnd);
916       }
917     else
918       {
919         std::ostringstream oss; oss << Traits<T>::ArrayTypeName << "::pushBackValsSilent : not available for DataArrayDouble with number of components different than 1 !";
920         throw INTERP_KERNEL::Exception(oss.str().c_str());
921       }
922   }
923
924   /*!
925    * This method returns silently ( without updating time label in \a this ) the last value, if any and suppress it.
926    * \throw If \a this is already empty.
927    * \throw If \a this has number of components different from one.
928    */
929   template<class T>
930   T DataArrayTemplate<T>::popBackSilent()
931   {
932     if(getNumberOfComponents()==1)
933       return _mem.popBack();
934     else
935       {
936         std::ostringstream oss; oss << Traits<T>::ArrayTypeName << "::popBackSilent : not available for DataArrayDouble with number of components different than 1 !";
937         throw INTERP_KERNEL::Exception(oss.str().c_str());
938       }
939   }
940
941   /*!
942    * Allocates the raw data in memory. If exactly same memory as needed already
943    * allocated, it is not re-allocated.
944    *  \param [in] nbOfTuple - number of tuples of data to allocate.
945    *  \param [in] nbOfCompo - number of components of data to allocate.
946    *  \throw If \a nbOfTuple < 0 or \a nbOfCompo < 0.
947    */
948   template<class T>
949   void DataArrayTemplate<T>::allocIfNecessary(std::size_t nbOfTuple, std::size_t nbOfCompo)
950   {
951     if(isAllocated())
952       {
953         if(ToIdType(nbOfTuple)!=getNumberOfTuples() || nbOfCompo!=getNumberOfComponents())
954           alloc(nbOfTuple,nbOfCompo);
955       }
956     else
957       alloc(nbOfTuple,nbOfCompo);
958   }
959
960   /*!
961    * Checks the number of tuples.
962    *  \return bool - \a true if getNumberOfTuples() == 0, \a false else.
963    *  \throw If \a this is not allocated.
964    */
965   template<class T>
966   bool DataArrayTemplate<T>::empty() const
967   {
968     checkAllocated();
969     return getNumberOfTuples()==0;
970   }
971
972   /*!
973    * Copies all the data from another DataArrayDouble. For more info see
974    * \ref MEDCouplingArrayBasicsCopyDeepAssign.
975    *  \param [in] other - another instance of DataArrayDouble to copy data from.
976    *  \throw If the \a other is not allocated.
977    */
978   template<class T>
979   void DataArrayTemplate<T>::deepCopyFrom(const DataArrayTemplate<T>& other)
980   {
981     other.checkAllocated();
982     mcIdType nbOfTuples(other.getNumberOfTuples());
983     std::size_t nbOfComp(other.getNumberOfComponents());
984     allocIfNecessary(nbOfTuples,nbOfComp);
985     std::size_t nbOfElems(nbOfTuples*nbOfComp);
986     T *pt(getPointer());
987     const T *ptI(other.begin());
988     for(std::size_t i=0;i<nbOfElems;i++)
989       pt[i]=ptI[i];
990     copyStringInfoFrom(other);
991   }
992
993   /*!
994    * Reverse the array values.
995    *  \throw If \a this->getNumberOfComponents() < 1.
996    *  \throw If \a this is not allocated.
997    */
998   template<class T>
999   void DataArrayTemplate<T>::reverse()
1000   {
1001     checkAllocated();
1002     _mem.reverse(getNumberOfComponents());
1003     declareAsNew();
1004   }
1005
1006   /*!
1007    * Assign \a val to all values in \a this array. To know more on filling arrays see
1008    * \ref MEDCouplingArrayFill.
1009    *  \param [in] val - the value to fill with.
1010    *  \throw If \a this is not allocated.
1011    */
1012   template<class T>
1013   void DataArrayTemplate<T>::fillWithValue(T val)
1014   {
1015     checkAllocated();
1016     _mem.fillWithValue(val);
1017     declareAsNew();
1018   }
1019
1020   /*!
1021    * Changes number of tuples in the array. If the new number of tuples is smaller
1022    * than the current number the array is truncated, otherwise the array is extended.
1023    *  \param [in] nbOfTuples - new number of tuples.
1024    *  \throw If \a this is not allocated.
1025    *  \throw If \a nbOfTuples is negative.
1026    */
1027   template<class T>
1028   void DataArrayTemplate<T>::reAlloc(std::size_t nbOfTuples)
1029   {
1030     checkAllocated();
1031     _mem.reAlloc(getNumberOfComponents()*nbOfTuples);
1032     declareAsNew();
1033   }
1034
1035   /*!
1036    * Permutes values of \a this array as required by \a old2New array. The values are
1037    * permuted so that \c new[ \a old2New[ i ]] = \c old[ i ]. Number of tuples remains
1038    * the same as in \c this one.
1039    * If a permutation reduction is needed, subArray() or selectByTupleId() should be used.
1040    * For more info on renumbering see \ref numbering.
1041    *  \param [in] old2New - C array of length equal to \a this->getNumberOfTuples()
1042    *     giving a new position for i-th old value.
1043    */
1044   template<class T>
1045   void DataArrayTemplate<T>::renumberInPlace(const mcIdType *old2New)
1046   {
1047     checkAllocated();
1048     mcIdType nbTuples(getNumberOfTuples());
1049     std::size_t nbOfCompo(getNumberOfComponents());
1050     T *tmp(new T[nbTuples*nbOfCompo]);
1051     const T *iptr(begin());
1052     for(mcIdType i=0;i<nbTuples;i++)
1053       {
1054         mcIdType v=old2New[i];
1055         if(v>=0 && v<nbTuples)
1056           std::copy(iptr+nbOfCompo*i,iptr+nbOfCompo*(i+1),tmp+nbOfCompo*v);
1057         else
1058           {
1059             std::ostringstream oss; oss << Traits<T>::ArrayTypeName << "::renumberInPlace : At place #" << i << " value is " << v << " ! Should be in [0," << nbTuples << ") !";
1060             throw INTERP_KERNEL::Exception(oss.str().c_str());
1061           }
1062       }
1063     std::copy(tmp,tmp+nbTuples*nbOfCompo,getPointer());
1064     delete [] tmp;
1065     declareAsNew();
1066   }
1067
1068
1069   /*!
1070    * Permutes values of \a this array as required by \a new2Old array. The values are
1071    * permuted so that \c new[ i ] = \c old[ \a new2Old[ i ]]. Number of tuples remains
1072    * the same as in \c this one.
1073    * For more info on renumbering see \ref numbering.
1074    *  \param [in] new2Old - C array of length equal to \a this->getNumberOfTuples()
1075    *     giving a previous position of i-th new value.
1076    */
1077   template<class T>
1078   void DataArrayTemplate<T>::renumberInPlaceR(const mcIdType *new2Old)
1079   {
1080     checkAllocated();
1081     mcIdType nbTuples(getNumberOfTuples());
1082     std::size_t nbOfCompo(getNumberOfComponents());
1083     T *tmp(new T[nbTuples*nbOfCompo]);
1084     const T *iptr(begin());
1085     for(mcIdType i=0;i<nbTuples;i++)
1086       {
1087         mcIdType v=new2Old[i];
1088         if(v>=0 && v<nbTuples)
1089           std::copy(iptr+nbOfCompo*v,iptr+nbOfCompo*(v+1),tmp+nbOfCompo*i);
1090         else
1091           {
1092             std::ostringstream oss; oss << Traits<T>::ArrayTypeName << "::renumberInPlaceR : At place #" << i << " value is " << v << " ! Should be in [0," << nbTuples << ") !";
1093             throw INTERP_KERNEL::Exception(oss.str().c_str());
1094           }
1095       }
1096     std::copy(tmp,tmp+nbTuples*nbOfCompo,getPointer());
1097     delete [] tmp;
1098     declareAsNew();
1099   }
1100
1101   /*!
1102    * Sorts values of the array. \b Warning, this method is not const, it alterates \a this content.
1103    *
1104    *  \param [in] asc - \a true means ascending order, \a false, descending.
1105    *  \throw If \a this is not allocated.
1106    *  \throw If \a this->getNumberOfComponents() != 1.
1107    *  \sa copySorted
1108    */
1109   template<class T>
1110   void DataArrayTemplate<T>::sort(bool asc)
1111   {
1112     checkAllocated();
1113     if(getNumberOfComponents()!=1)
1114       {
1115         std::ostringstream oss; oss << Traits<T>::ArrayTypeName << "::sort : only supported with 'this' array with ONE component !";
1116         throw INTERP_KERNEL::Exception(oss.str().c_str());
1117       }
1118     _mem.sort(asc);
1119     declareAsNew();
1120   }
1121
1122   /*!
1123    * Sorts values of the array and put the result in a newly allocated returned array.
1124    * This method does not alterate \a this content.
1125    *
1126    *  \param [in] asc - \a true means ascending order, \a false, descending.
1127    *  \throw If \a this is not allocated.
1128    *  \throw If \a this->getNumberOfComponents() != 1.
1129    *  \sa sort
1130    */
1131   template<class T>
1132   typename Traits<T>::ArrayTypeCh *DataArrayTemplate<T>::copySortedImpl(bool asc) const
1133   {
1134     MCAuto<typename Traits<T>::ArrayTypeCh> ret(static_cast<typename Traits<T>::ArrayTypeCh *>(this->deepCopy()));
1135     ret->sort(asc);
1136     return ret.retn();
1137   }
1138
1139   /*!
1140    * Returns a copy of \a this array with values permuted as required by \a old2New array.
1141    * The values are permuted so that  \c new[ \a old2New[ i ]] = \c old[ i ].
1142    * Number of tuples in the result array remains the same as in \c this one.
1143    * If a permutation reduction is needed, renumberAndReduce() should be used.
1144    * For more info on renumbering see \ref numbering.
1145    *  \param [in] old2New - C array of length equal to \a this->getNumberOfTuples()
1146    *          giving a new position for i-th old value.
1147    *  \return DataArrayDouble * - the new instance of DataArrayDouble that the caller
1148    *          is to delete using decrRef() as it is no more needed.
1149    *  \throw If \a this is not allocated.
1150    */
1151   template<class T>
1152   typename Traits<T>::ArrayType *DataArrayTemplate<T>::renumber(const mcIdType *old2New) const
1153   {
1154     checkAllocated();
1155     mcIdType nbTuples(getNumberOfTuples());
1156     std::size_t nbOfCompo(getNumberOfComponents());
1157     MCAuto<DataArray> ret0(buildNewEmptyInstance());
1158     MCAuto< typename Traits<T>::ArrayType > ret(DynamicCastSafe<DataArray,typename Traits<T>::ArrayType>(ret0));
1159     ret->alloc(nbTuples,nbOfCompo);
1160     ret->copyStringInfoFrom(*this);
1161     const T *iptr(begin());
1162     T *optr(ret->getPointer());
1163     for(mcIdType i=0;i<nbTuples;i++)
1164       std::copy(iptr+nbOfCompo*i,iptr+nbOfCompo*(i+1),optr+nbOfCompo*old2New[i]);
1165     ret->copyStringInfoFrom(*this);
1166     return ret.retn();
1167   }
1168
1169   /*!
1170    * Returns a copy of \a this array with values permuted as required by \a new2Old array.
1171    * The values are permuted so that  \c new[ i ] = \c old[ \a new2Old[ i ]]. Number of
1172    * tuples in the result array remains the same as in \c this one.
1173    * If a permutation reduction is needed, subArray() or selectByTupleId() should be used.
1174    * For more info on renumbering see \ref numbering.
1175    *  \param [in] new2Old - C array of length equal to \a this->getNumberOfTuples()
1176    *     giving a previous position of i-th new value.
1177    *  \return DataArrayDouble * - the new instance of DataArrayDouble that the caller
1178    *          is to delete using decrRef() as it is no more needed.
1179    */
1180   template<class T>
1181   typename Traits<T>::ArrayType *DataArrayTemplate<T>::renumberR(const mcIdType *new2Old) const
1182   {
1183     checkAllocated();
1184     mcIdType nbTuples(getNumberOfTuples());
1185     std::size_t nbOfCompo(getNumberOfComponents());
1186     MCAuto<DataArray> ret0(buildNewEmptyInstance());
1187     MCAuto< typename Traits<T>::ArrayType > ret(DynamicCastSafe<DataArray,typename Traits<T>::ArrayType>(ret0));
1188     ret->alloc(nbTuples,nbOfCompo);
1189     ret->copyStringInfoFrom(*this);
1190     const T *iptr(getConstPointer());
1191     T *optr(ret->getPointer());
1192     for(mcIdType i=0;i<nbTuples;i++)
1193       std::copy(iptr+nbOfCompo*new2Old[i],iptr+nbOfCompo*(new2Old[i]+1),optr+i*nbOfCompo);
1194     ret->copyStringInfoFrom(*this);
1195     return ret.retn();
1196   }
1197
1198   /*!
1199    * Returns a shorten and permuted copy of \a this array. The new DataArrayDouble is
1200    * of size \a newNbOfTuple and it's values are permuted as required by \a old2New array.
1201    * The values are permuted so that  \c new[ \a old2New[ i ]] = \c old[ i ] for all
1202    * \a old2New[ i ] >= 0. In other words every i-th tuple in \a this array, for which
1203    * \a old2New[ i ] is negative, is missing from the result array.
1204    * For more info on renumbering see \ref numbering.
1205    *  \param [in] old2New - C array of length equal to \a this->getNumberOfTuples()
1206    *     giving a new position for i-th old tuple and giving negative position for
1207    *     for i-th old tuple that should be omitted.
1208    *  \return DataArrayDouble * - the new instance of DataArrayDouble that the caller
1209    *          is to delete using decrRef() as it is no more needed.
1210    */
1211   template<class T>
1212   typename Traits<T>::ArrayType *DataArrayTemplate<T>::renumberAndReduce(const mcIdType *old2New, mcIdType newNbOfTuple) const
1213   {
1214     checkAllocated();
1215     mcIdType nbTuples(getNumberOfTuples());
1216     std::size_t nbOfCompo(getNumberOfComponents());
1217     MCAuto<DataArray> ret0(buildNewEmptyInstance());
1218     MCAuto< typename Traits<T>::ArrayType > ret(DynamicCastSafe<DataArray,typename Traits<T>::ArrayType>(ret0));
1219     ret->alloc(newNbOfTuple,nbOfCompo);
1220     const T *iptr=getConstPointer();
1221     T *optr=ret->getPointer();
1222     for(mcIdType i=0;i<nbTuples;i++)
1223       {
1224         mcIdType w=old2New[i];
1225         if(w>=0)
1226           std::copy(iptr+i*nbOfCompo,iptr+(i+1)*nbOfCompo,optr+w*nbOfCompo);
1227       }
1228     ret->copyStringInfoFrom(*this);
1229     return ret.retn();
1230   }
1231
1232   /*!
1233    * Returns a shorten and permuted copy of \a this array. The new DataArrayDouble is
1234    * of size \a new2OldEnd - \a new2OldBg and it's values are permuted as required by
1235    * \a new2OldBg array.
1236    * The values are permuted so that  \c new[ i ] = \c old[ \a new2OldBg[ i ]].
1237    * This method is equivalent to renumberAndReduce() except that convention in input is
1238    * \c new2old and \b not \c old2new.
1239    * For more info on renumbering see \ref numbering.
1240    *  \param [in] new2OldBg - pointer to the beginning of a permutation array that gives a
1241    *              tuple index in \a this array to fill the i-th tuple in the new array.
1242    *  \param [in] new2OldEnd - specifies the end of the permutation array that starts at
1243    *              \a new2OldBg, so that pointer to a tuple index (\a pi) varies as this:
1244    *              \a new2OldBg <= \a pi < \a new2OldEnd.
1245    *  \return DataArrayDouble * - the new instance of DataArrayDouble that the caller
1246    *          is to delete using decrRef() as it is no more needed.
1247    */
1248   template<class T>
1249   typename Traits<T>::ArrayType *DataArrayTemplate<T>::mySelectByTupleId(const mcIdType *new2OldBg, const mcIdType *new2OldEnd) const
1250   {
1251     checkAllocated();
1252     MCAuto<DataArray> ret0(buildNewEmptyInstance());
1253     MCAuto< typename Traits<T>::ArrayType > ret(DynamicCastSafe<DataArray,typename Traits<T>::ArrayType>(ret0));
1254     std::size_t nbComp(getNumberOfComponents());
1255     ret->alloc(std::distance(new2OldBg,new2OldEnd),nbComp);
1256     ret->copyStringInfoFrom(*this);
1257     T *pt(ret->getPointer());
1258     const T *srcPt(getConstPointer());
1259     std::size_t i(0);
1260     for(const mcIdType *w=new2OldBg;w!=new2OldEnd;w++,i++)
1261       std::copy(srcPt+(*w)*nbComp,srcPt+((*w)+1)*nbComp,pt+i*nbComp);
1262     ret->copyStringInfoFrom(*this);
1263     return ret.retn();
1264   }
1265
1266   template<class T>
1267   typename Traits<T>::ArrayType *DataArrayTemplate<T>::mySelectByTupleId(const DataArrayIdType& di) const
1268   {
1269     return this->mySelectByTupleId(di.begin(),di.end());
1270   }
1271
1272   template<class T>
1273   MCAuto<typename Traits<T>::ArrayTypeCh> DataArrayTemplate<T>::selectPartDef(const PartDefinition *pd) const
1274   {
1275     if(!pd)
1276       throw INTERP_KERNEL::Exception("DataArrayTemplate<T>::selectPartDef : null input pointer !");
1277     MCAuto<typename Traits<T>::ArrayTypeCh> ret(Traits<T>::ArrayTypeCh::New());
1278     const SlicePartDefinition *spd(dynamic_cast<const SlicePartDefinition *>(pd));
1279     if(spd)
1280       {
1281         mcIdType a,b,c;
1282         spd->getSlice(a,b,c);
1283         if(a==0 && b==getNumberOfTuples() && c==1)
1284           {
1285             DataArrayTemplate<T> *directRet(const_cast<DataArrayTemplate<T> *>(this));
1286             directRet->incrRef();
1287             MCAuto<DataArrayTemplate<T> > ret2(directRet);
1288             return DynamicCastSafe<DataArrayTemplate<T>,typename Traits<T>::ArrayTypeCh>(ret2);
1289           }
1290         else
1291           {
1292             MCAuto<DataArray> ret2(selectByTupleIdSafeSlice(a,b,c));
1293             return DynamicCastSafe<DataArray,typename Traits<T>::ArrayTypeCh>(ret2);
1294           }
1295       }
1296     const DataArrayPartDefinition *dpd(dynamic_cast<const DataArrayPartDefinition *>(pd));
1297     if(dpd)
1298       {
1299         MCAuto<DataArrayIdType> arr(dpd->toDAI());
1300         MCAuto<DataArray> ret2(selectByTupleIdSafe(arr->begin(),arr->end()));
1301         return DynamicCastSafe<DataArray,typename Traits<T>::ArrayTypeCh>(ret2);
1302
1303       }
1304     throw INTERP_KERNEL::Exception("DataArrayTemplate<T>::selectPartDef : unrecognized part def !");
1305   }
1306
1307   /*!
1308    * Returns a shorten and permuted copy of \a this array. The new DataArrayDouble is
1309    * of size \a new2OldEnd - \a new2OldBg and it's values are permuted as required by
1310    * \a new2OldBg array.
1311    * The values are permuted so that  \c new[ i ] = \c old[ \a new2OldBg[ i ]].
1312    * This method is equivalent to renumberAndReduce() except that convention in input is
1313    * \c new2old and \b not \c old2new.
1314    * This method is equivalent to selectByTupleId() except that it prevents coping data
1315    * from behind the end of \a this array.
1316    * For more info on renumbering see \ref numbering.
1317    *  \param [in] new2OldBg - pointer to the beginning of a permutation array that gives a
1318    *              tuple index in \a this array to fill the i-th tuple in the new array.
1319    *  \param [in] new2OldEnd - specifies the end of the permutation array that starts at
1320    *              \a new2OldBg, so that pointer to a tuple index (\a pi) varies as this:
1321    *              \a new2OldBg <= \a pi < \a new2OldEnd.
1322    *  \return DataArrayDouble * - the new instance of DataArrayDouble that the caller
1323    *          is to delete using decrRef() as it is no more needed.
1324    *  \throw If \a new2OldEnd - \a new2OldBg > \a this->getNumberOfTuples().
1325    */
1326   template<class T>
1327   typename Traits<T>::ArrayType *DataArrayTemplate<T>::mySelectByTupleIdSafe(const mcIdType *new2OldBg, const mcIdType *new2OldEnd) const
1328   {
1329     checkAllocated();
1330     MCAuto<DataArray> ret0(buildNewEmptyInstance());
1331     MCAuto< typename Traits<T>::ArrayType > ret(DynamicCastSafe<DataArray,typename Traits<T>::ArrayType>(ret0));
1332     std::size_t nbComp(getNumberOfComponents());
1333     mcIdType oldNbOfTuples(getNumberOfTuples());
1334     ret->alloc(std::distance(new2OldBg,new2OldEnd),nbComp);
1335     ret->copyStringInfoFrom(*this);
1336     T *pt(ret->getPointer());
1337     const T *srcPt(getConstPointer());
1338     mcIdType i(0);
1339     for(const mcIdType *w=new2OldBg;w!=new2OldEnd;w++,i++)
1340       if(*w>=0 && *w<oldNbOfTuples)
1341         std::copy(srcPt+(*w)*nbComp,srcPt+((*w)+1)*nbComp,pt+i*nbComp);
1342       else
1343         {
1344           std::ostringstream oss; oss << Traits<T>::ArrayTypeName << "::selectByTupleIdSafe : some ids has been detected to be out of [0,this->getNumberOfTuples) !";
1345           throw INTERP_KERNEL::Exception(oss.str().c_str());
1346         }
1347     ret->copyStringInfoFrom(*this);
1348     return ret.retn();
1349   }
1350
1351   /*!
1352    * Changes the number of components within \a this array so that its raw data **does
1353    * not** change, instead splitting this data into tuples changes.
1354    *  \warning This method erases all (name and unit) component info set before!
1355    *  \param [in] newNbOfCompo - number of components for \a this array to have.
1356    *  \throw If \a this is not allocated
1357    *  \throw If getNbOfElems() % \a newNbOfCompo != 0.
1358    *  \throw If \a newNbOfCompo is lower than 1.
1359    *  \throw If the rearrange method would lead to a number of tuples higher than 2147483647 (maximal capacity of int32 !).
1360    *  \warning This method erases all (name and unit) component info set before!
1361    */
1362   template<class T>
1363   void DataArrayTemplate<T>::rearrange(std::size_t newNbOfCompo)
1364   {
1365     checkAllocated();
1366     if(newNbOfCompo<1)
1367       {
1368         std::ostringstream oss; oss << Traits<T>::ArrayTypeName << "::rearrange : input newNbOfCompo must be > 0 !";
1369         throw INTERP_KERNEL::Exception(oss.str().c_str());
1370       }
1371     std::size_t nbOfElems=getNbOfElems();
1372     if(nbOfElems%newNbOfCompo!=0)
1373       {
1374         std::ostringstream oss; oss << Traits<T>::ArrayTypeName << "::rearrange : nbOfElems%newNbOfCompo!=0 !";
1375         throw INTERP_KERNEL::Exception(oss.str().c_str());
1376       }
1377     if(nbOfElems/newNbOfCompo>(std::size_t)std::numeric_limits<mcIdType>::max())
1378       {
1379         std::ostringstream oss; oss << Traits<T>::ArrayTypeName << "::rearrange : the rearrangement leads to too high number of tuples (> 2147483647) !";
1380         throw INTERP_KERNEL::Exception(oss.str().c_str());
1381       }
1382     _info_on_compo.clear();
1383     _info_on_compo.resize(newNbOfCompo);
1384     declareAsNew();
1385   }
1386
1387   /*!
1388    * Changes the number of components within \a this array to be equal to its number
1389    * of tuples, and inversely its number of tuples to become equal to its number of
1390    * components. So that its raw data **does not** change, instead splitting this
1391    * data into tuples changes.
1392    *  \warning This method erases all (name and unit) component info set before!
1393    *  \warning Do not confuse this method with fromNoInterlace() and toNoInterlace()!
1394    *  \throw If \a this is not allocated.
1395    *  \sa rearrange()
1396    */
1397   template<class T>
1398   void DataArrayTemplate<T>::transpose()
1399   {
1400     checkAllocated();
1401     rearrange(getNumberOfTuples());
1402   }
1403
1404   /*!
1405    * Returns a shorten or extended copy of \a this array. If \a newNbOfComp is less
1406    * than \a this->getNumberOfComponents() then the result array is shorten as each tuple
1407    * is truncated to have \a newNbOfComp components, keeping first components. If \a
1408    * newNbOfComp is more than \a this->getNumberOfComponents() then the result array is
1409    * expanded as each tuple is populated with \a dftValue to have \a newNbOfComp
1410    * components.
1411    *  \param [in] newNbOfComp - number of components for the new array to have.
1412    *  \param [in] dftValue - value assigned to new values added to the new array.
1413    *  \return DataArrayDouble * - the new instance of DataArrayDouble that the caller
1414    *          is to delete using decrRef() as it is no more needed.
1415    *  \throw If \a this is not allocated.
1416    */
1417   template<class T>
1418   typename Traits<T>::ArrayType *DataArrayTemplate<T>::changeNbOfComponents(std::size_t newNbOfComp, T dftValue) const
1419   {
1420     checkAllocated();
1421     MCAuto<DataArray> ret0(buildNewEmptyInstance());
1422     MCAuto< typename Traits<T>::ArrayType > ret(DynamicCastSafe<DataArray,typename Traits<T>::ArrayType>(ret0));
1423     ret->alloc(getNumberOfTuples(),newNbOfComp);
1424     const T *oldc(getConstPointer());
1425     T *nc(ret->getPointer());
1426     mcIdType nbOfTuples=getNumberOfTuples();
1427     std::size_t oldNbOfComp=getNumberOfComponents();
1428     std::size_t dim(std::min(oldNbOfComp,newNbOfComp));
1429     for(mcIdType i=0;i<nbOfTuples;i++)
1430       {
1431         std::size_t j=0;
1432         for(;j<dim;j++)
1433           nc[newNbOfComp*i+j]=oldc[i*oldNbOfComp+j];
1434         for(;j<newNbOfComp;j++)
1435           nc[newNbOfComp*i+j]=dftValue;
1436       }
1437     ret->setName(getName());
1438     for(std::size_t i=0;i<dim;i++)
1439       ret->setInfoOnComponent(i,getInfoOnComponent(i));
1440     ret->setName(getName());
1441     return ret.retn();
1442   }
1443
1444   /*!
1445    * Returns a copy of \a this array composed of selected components.
1446    * The new DataArrayDouble has the same number of tuples but includes components
1447    * specified by \a compoIds parameter. So that getNbOfElems() of the result array
1448    * can be either less, same or more than \a this->getNbOfElems().
1449    *  \param [in] compoIds - sequence of zero based indices of components to include
1450    *              into the new array.
1451    *  \return DataArrayDouble * - the new instance of DataArrayDouble that the caller
1452    *          is to delete using decrRef() as it is no more needed.
1453    *  \throw If \a this is not allocated.
1454    *  \throw If a component index (\a i) is not valid:
1455    *         \a i < 0 || \a i >= \a this->getNumberOfComponents().
1456    *
1457    *  \if ENABLE_EXAMPLES
1458    *  \ref py_mcdataarraydouble_KeepSelectedComponents "Here is a Python example".
1459    *  \endif
1460    */
1461   template<class T>
1462   typename Traits<T>::ArrayType *DataArrayTemplate<T>::myKeepSelectedComponents(const std::vector<std::size_t>& compoIds) const
1463   {
1464     checkAllocated();
1465     MCAuto<DataArray> ret0(buildNewEmptyInstance());
1466     MCAuto< typename Traits<T>::ArrayType > ret(DynamicCastSafe<DataArray,typename Traits<T>::ArrayType>(ret0));
1467     std::size_t newNbOfCompo=compoIds.size();
1468     std::size_t oldNbOfCompo=getNumberOfComponents();
1469     for(std::vector<std::size_t>::const_iterator it=compoIds.begin();it!=compoIds.end();it++)
1470       if((*it)>=oldNbOfCompo)  // (*it) >= 0 (it is a size_t)
1471         {
1472           std::ostringstream oss; oss << Traits<T>::ArrayTypeName << "::keepSelectedComponents : invalid requested component : " << *it << " whereas it should be in [0," << oldNbOfCompo << ") !";
1473           throw INTERP_KERNEL::Exception(oss.str().c_str());
1474         }
1475     mcIdType nbOfTuples(getNumberOfTuples());
1476     ret->alloc(nbOfTuples,newNbOfCompo);
1477     ret->copyPartOfStringInfoFrom(*this,compoIds);
1478     const T *oldc(getConstPointer());
1479     T *nc(ret->getPointer());
1480     for(mcIdType i=0;i<nbOfTuples;i++)
1481       for(std::size_t j=0;j<newNbOfCompo;j++,nc++)
1482         *nc=oldc[i*oldNbOfCompo+compoIds[j]];
1483     return ret.retn();
1484   }
1485
1486   /*!
1487    * Returns a shorten copy of \a this array. The new DataArrayDouble contains all
1488    * tuples starting from the \a tupleIdBg-th tuple and including all tuples located before
1489    * the \a tupleIdEnd-th one. This methods has a similar behavior as std::string::substr().
1490    * This method is a specialization of selectByTupleIdSafeSlice().
1491    *  \param [in] tupleIdBg - index of the first tuple to copy from \a this array.
1492    *  \param [in] tupleIdEnd - index of the tuple before which the tuples to copy are located.
1493    *          If \a tupleIdEnd == -1, all the tuples till the end of \a this array are copied.
1494    *  \return DataArrayDouble * - the new instance of DataArrayDouble that the caller
1495    *          is to delete using decrRef() as it is no more needed.
1496    *  \throw If \a tupleIdBg < 0.
1497    *  \throw If \a tupleIdBg > \a this->getNumberOfTuples().
1498    *  \throw If \a tupleIdEnd != -1 && \a tupleIdEnd < \a this->getNumberOfTuples().
1499    *  \sa DataArrayDouble::selectByTupleIdSafeSlice
1500    */
1501   template<class T>
1502   typename Traits<T>::ArrayType *DataArrayTemplate<T>::subArray(mcIdType tupleIdBg, mcIdType tupleIdEnd) const
1503   {
1504     checkAllocated();
1505     mcIdType nbt=getNumberOfTuples();
1506     if(tupleIdBg<0)
1507       {
1508         std::ostringstream oss; oss << Traits<T>::ArrayTypeName << "::subArray : The tupleIdBg parameter must be greater than 0 !";
1509         throw INTERP_KERNEL::Exception(oss.str().c_str());
1510       }
1511     if(tupleIdBg>nbt)
1512       {
1513         std::ostringstream oss; oss << Traits<T>::ArrayTypeName << ":subArray : The tupleIdBg parameter is greater than number of tuples !";
1514         throw INTERP_KERNEL::Exception(oss.str().c_str());
1515       }
1516     mcIdType trueEnd=tupleIdEnd;
1517     if(tupleIdEnd!=-1)
1518       {
1519         if(tupleIdEnd>nbt)
1520           {
1521             std::ostringstream oss; oss << Traits<T>::ArrayTypeName << ":subArray : The tupleIdBg parameter is greater than number of tuples !";
1522             throw INTERP_KERNEL::Exception(oss.str().c_str());
1523           }
1524       }
1525     else
1526       trueEnd=nbt;
1527     std::size_t nbComp=getNumberOfComponents();
1528     MCAuto<DataArray> ret0(buildNewEmptyInstance());
1529     MCAuto< typename Traits<T>::ArrayType > ret(DynamicCastSafe<DataArray,typename Traits<T>::ArrayType>(ret0));
1530     ret->alloc(trueEnd-tupleIdBg,nbComp);
1531     ret->copyStringInfoFrom(*this);
1532     std::copy(getConstPointer()+tupleIdBg*nbComp,getConstPointer()+trueEnd*nbComp,ret->getPointer());
1533     return ret.retn();
1534   }
1535
1536   /*!
1537    * Returns a shorten copy of \a this array. The new DataArrayDouble contains every
1538    * (\a bg + \c i * \a step)-th tuple of \a this array located before the \a end2-th
1539    * tuple. Indices of the selected tuples are the same as ones returned by the Python
1540    * command \c range( \a bg, \a end2, \a step ).
1541    * This method is equivalent to selectByTupleIdSafe() except that the input array is
1542    * not constructed explicitly.
1543    * For more info on renumbering see \ref numbering.
1544    *  \param [in] bg - index of the first tuple to copy from \a this array.
1545    *  \param [in] end2 - index of the tuple before which the tuples to copy are located.
1546    *  \param [in] step - index increment to get index of the next tuple to copy.
1547    *  \return DataArrayDouble * - the new instance of DataArrayDouble that the caller
1548    *          is to delete using decrRef() as it is no more needed.
1549    *  \sa DataArrayDouble::subArray.
1550    */
1551   template<class T>
1552   typename Traits<T>::ArrayType *DataArrayTemplate<T>::mySelectByTupleIdSafeSlice(mcIdType bg, mcIdType end2, mcIdType step) const
1553   {
1554     checkAllocated();
1555     MCAuto<DataArray> ret0(buildNewEmptyInstance());
1556     MCAuto< typename Traits<T>::ArrayType > ret(DynamicCastSafe<DataArray,typename Traits<T>::ArrayType>(ret0));
1557     std::size_t nbComp(getNumberOfComponents());
1558     std::ostringstream oss; oss << Traits<T>::ArrayTypeName << "::selectByTupleIdSafeSlice : ";
1559     mcIdType newNbOfTuples(GetNumberOfItemGivenBESRelative(bg,end2,step,oss.str()));
1560     ret->alloc(newNbOfTuples,nbComp);
1561     T *pt(ret->getPointer());
1562     const T *srcPt(getConstPointer()+bg*nbComp);
1563     for(mcIdType i=0;i<newNbOfTuples;i++,srcPt+=step*nbComp)
1564       std::copy(srcPt,srcPt+nbComp,pt+i*nbComp);
1565     ret->copyStringInfoFrom(*this);
1566     return ret.retn();
1567   }
1568
1569   /*!
1570    * Copy all values from another DataArrayDouble into specified tuples and components
1571    * of \a this array. Textual data is not copied.
1572    * The tree parameters defining set of indices of tuples and components are similar to
1573    * the tree parameters of the Python function \c range(\c start,\c stop,\c step).
1574    *  \param [in] a - the array to copy values from.
1575    *  \param [in] bgTuples - index of the first tuple of \a this array to assign values to.
1576    *  \param [in] endTuples - index of the tuple before which the tuples to assign to
1577    *              are located.
1578    *  \param [in] stepTuples - index increment to get index of the next tuple to assign to.
1579    *  \param [in] bgComp - index of the first component of \a this array to assign values to.
1580    *  \param [in] endComp - index of the component before which the components to assign
1581    *              to are located.
1582    *  \param [in] stepComp - index increment to get index of the next component to assign to.
1583    *  \param [in] strictCompoCompare - if \a true (by default), then \a a->getNumberOfComponents()
1584    *              must be equal to the number of columns to assign to, else an
1585    *              exception is thrown; if \a false, then it is only required that \a
1586    *              a->getNbOfElems() equals to number of values to assign to (this condition
1587    *              must be respected even if \a strictCompoCompare is \a true). The number of
1588    *              values to assign to is given by following Python expression:
1589    *              \a nbTargetValues =
1590    *              \c len(\c range(\a bgTuples,\a endTuples,\a stepTuples)) *
1591    *              \c len(\c range(\a bgComp,\a endComp,\a stepComp)).
1592    *  \throw If \a a is NULL.
1593    *  \throw If \a a is not allocated.
1594    *  \throw If \a this is not allocated.
1595    *  \throw If parameters specifying tuples and components to assign to do not give a
1596    *            non-empty range of increasing indices.
1597    *  \throw If \a a->getNbOfElems() != \a nbTargetValues.
1598    *  \throw If \a strictCompoCompare == \a true && \a a->getNumberOfComponents() !=
1599    *            \c len(\c range(\a bgComp,\a endComp,\a stepComp)).
1600    *
1601    *  \if ENABLE_EXAMPLES
1602    *  \ref py_mcdataarraydouble_setpartofvalues1 "Here is a Python example".
1603    *  \endif
1604    */
1605   template<class T>
1606   void DataArrayTemplate<T>::setPartOfValues1(const typename Traits<T>::ArrayType *a, mcIdType bgTuples, mcIdType endTuples, mcIdType stepTuples, mcIdType bgComp, mcIdType endComp, mcIdType stepComp, bool strictCompoCompare)
1607   {
1608     if(!a)
1609       {
1610         std::ostringstream oss; oss << Traits<T>::ArrayTypeName << "::setPartOfValues1 : input DataArrayDouble is NULL !";
1611         throw INTERP_KERNEL::Exception(oss.str().c_str());
1612       }
1613     const char msg[]="DataArrayTemplate::setPartOfValues1";
1614     checkAllocated();
1615     a->checkAllocated();
1616     mcIdType newNbOfTuples(DataArray::GetNumberOfItemGivenBES(bgTuples,endTuples,stepTuples,msg));
1617     mcIdType newNbOfComp(DataArray::GetNumberOfItemGivenBES(bgComp,endComp,stepComp,msg));
1618     std::size_t nbComp(getNumberOfComponents());
1619     mcIdType nbOfTuples(getNumberOfTuples());
1620     DataArray::CheckValueInRangeEx(nbOfTuples,bgTuples,endTuples,"invalid tuple value");
1621     DataArray::CheckValueInRangeEx(ToIdType(nbComp),bgComp,endComp,"invalid component value");
1622     bool assignTech(true);
1623     if(a->getNbOfElems()==newNbOfTuples*newNbOfComp)
1624       {
1625         if(strictCompoCompare)
1626           a->checkNbOfTuplesAndComp(newNbOfTuples,newNbOfComp,msg);
1627       }
1628     else
1629       {
1630         a->checkNbOfTuplesAndComp(1,newNbOfComp,msg);
1631         assignTech=false;
1632       }
1633     const T *srcPt(a->getConstPointer());
1634     T *pt(getPointer()+bgTuples*nbComp+bgComp);
1635     if(assignTech)
1636       {
1637         for(mcIdType i=0;i<newNbOfTuples;i++,pt+=stepTuples*nbComp)
1638           for(mcIdType j=0;j<newNbOfComp;j++,srcPt++)
1639             pt[j*stepComp]=*srcPt;
1640       }
1641     else
1642       {
1643         for(mcIdType i=0;i<newNbOfTuples;i++,pt+=stepTuples*nbComp)
1644           {
1645             const T*srcPt2=srcPt;
1646             for(mcIdType j=0;j<newNbOfComp;j++,srcPt2++)
1647               pt[j*stepComp]=*srcPt2;
1648           }
1649       }
1650   }
1651
1652   /*!
1653  * Assign a given value to values at specified tuples and components of \a this array.
1654  * The tree parameters defining set of indices of tuples and components are similar to
1655  * the tree parameters of the Python function \c range(\c start,\c stop,\c step)..
1656  *  \param [in] a - the value to assign.
1657  *  \param [in] bgTuples - index of the first tuple of \a this array to assign to.
1658  *  \param [in] endTuples - index of the tuple before which the tuples to assign to
1659  *              are located.
1660  *  \param [in] stepTuples - index increment to get index of the next tuple to assign to.
1661  *  \param [in] bgComp - index of the first component of \a this array to assign to.
1662  *  \param [in] endComp - index of the component before which the components to assign
1663  *              to are located.
1664  *  \param [in] stepComp - index increment to get index of the next component to assign to.
1665  *  \throw If \a this is not allocated.
1666  *  \throw If parameters specifying tuples and components to assign to, do not give a
1667  *            non-empty range of increasing indices or indices are out of a valid range
1668  *            for \c this array.
1669  *
1670  *  \if ENABLE_EXAMPLES
1671  *  \ref py_mcdataarraydouble_setpartofvaluessimple1 "Here is a Python example".
1672  *  \endif
1673  */
1674   template<class T>
1675   void DataArrayTemplate<T>::setPartOfValuesSimple1(T a, mcIdType bgTuples, mcIdType endTuples, mcIdType stepTuples, mcIdType bgComp, mcIdType endComp, mcIdType stepComp)
1676   {
1677     const char msg[]="DataArrayTemplate::setPartOfValuesSimple1";
1678     checkAllocated();
1679     mcIdType newNbOfTuples(DataArray::GetNumberOfItemGivenBES(bgTuples,endTuples,stepTuples,msg));
1680     mcIdType newNbOfComp(DataArray::GetNumberOfItemGivenBES(bgComp,endComp,stepComp,msg));
1681     std::size_t nbComp(getNumberOfComponents());
1682     mcIdType nbOfTuples(getNumberOfTuples());
1683     DataArray::CheckValueInRangeEx(nbOfTuples,bgTuples,endTuples,"invalid tuple value");
1684     DataArray::CheckValueInRangeEx(ToIdType(nbComp),bgComp,endComp,"invalid component value");
1685     T *pt=getPointer()+bgTuples*nbComp+bgComp;
1686     for(mcIdType i=0;i<newNbOfTuples;i++,pt+=stepTuples*nbComp)
1687       for(mcIdType j=0;j<newNbOfComp;j++)
1688         pt[j*stepComp]=a;
1689   }
1690
1691   /*!
1692    * Copy all values from another DataArrayDouble (\a a) into specified tuples and
1693    * components of \a this array. Textual data is not copied.
1694    * The tuples and components to assign to are defined by C arrays of indices.
1695    * There are two *modes of usage*:
1696    * - If \a a->getNbOfElems() equals to number of values to assign to, then every value
1697    *   of \a a is assigned to its own location within \a this array.
1698    * - If \a a includes one tuple, then all values of \a a are assigned to the specified
1699    *   components of every specified tuple of \a this array. In this mode it is required
1700    *   that \a a->getNumberOfComponents() equals to the number of specified components.
1701    *
1702    *  \param [in] a - the array to copy values from.
1703    *  \param [in] bgTuples - pointer to an array of tuple indices of \a this array to
1704    *              assign values of \a a to.
1705    *  \param [in] endTuples - specifies the end of the array \a bgTuples, so that
1706    *              pointer to a tuple index <em>(pi)</em> varies as this:
1707    *              \a bgTuples <= \a pi < \a endTuples.
1708    *  \param [in] bgComp - pointer to an array of component indices of \a this array to
1709    *              assign values of \a a to.
1710    *  \param [in] endComp - specifies the end of the array \a bgTuples, so that
1711    *              pointer to a component index <em>(pi)</em> varies as this:
1712    *              \a bgComp <= \a pi < \a endComp.
1713    *  \param [in] strictCompoCompare - this parameter is checked only if the
1714    *               *mode of usage* is the first; if it is \a true (default),
1715    *               then \a a->getNumberOfComponents() must be equal
1716    *               to the number of specified columns, else this is not required.
1717    *  \throw If \a a is NULL.
1718    *  \throw If \a a is not allocated.
1719    *  \throw If \a this is not allocated.
1720    *  \throw If any index of tuple/component given by <em>bgTuples / bgComp</em> is
1721    *         out of a valid range for \a this array.
1722    *  \throw In the first *mode of usage*, if <em>strictCompoCompare == true </em> and
1723    *         if <em> a->getNumberOfComponents() != (endComp - bgComp) </em>.
1724    *  \throw In the second *mode of usage*, if \a a->getNumberOfTuples() != 1 or
1725    *         <em> a->getNumberOfComponents() != (endComp - bgComp)</em>.
1726    *
1727    *  \if ENABLE_EXAMPLES
1728    *  \ref py_mcdataarraydouble_setpartofvalues2 "Here is a Python example".
1729    *  \endif
1730    */
1731   template<class T>
1732   void DataArrayTemplate<T>::setPartOfValues2(const typename Traits<T>::ArrayType *a, const mcIdType *bgTuples, const mcIdType *endTuples, const mcIdType *bgComp, const mcIdType *endComp, bool strictCompoCompare)
1733   {
1734     if(!a)
1735       throw INTERP_KERNEL::Exception("DataArrayDouble::setPartOfValues2 : input DataArrayDouble is NULL !");
1736     const char msg[]="DataArrayTemplate::setPartOfValues2";
1737     checkAllocated();
1738     a->checkAllocated();
1739     std::size_t nbComp(getNumberOfComponents());
1740     mcIdType nbOfTuples(getNumberOfTuples());
1741     for(const mcIdType *z=bgComp;z!=endComp;z++)
1742       DataArray::CheckValueInRange(ToIdType(nbComp),*z,"invalid component id");
1743     mcIdType newNbOfTuples(ToIdType(std::distance(bgTuples,endTuples)));
1744     mcIdType newNbOfComp(ToIdType(std::distance(bgComp,endComp)));
1745     bool assignTech(true);
1746     if(a->getNbOfElems()==newNbOfTuples*newNbOfComp)
1747       {
1748         if(strictCompoCompare)
1749           a->checkNbOfTuplesAndComp(newNbOfTuples,newNbOfComp,msg);
1750       }
1751     else
1752       {
1753         a->checkNbOfTuplesAndComp(1,newNbOfComp,msg);
1754         assignTech=false;
1755       }
1756     T *pt(getPointer());
1757     const T *srcPt(a->getConstPointer());
1758     if(assignTech)
1759       {
1760         for(const mcIdType *w=bgTuples;w!=endTuples;w++)
1761           {
1762             DataArray::CheckValueInRange(nbOfTuples,*w,"invalid tuple id");
1763             for(const mcIdType *z=bgComp;z!=endComp;z++,srcPt++)
1764               {
1765                 pt[(std::size_t)(*w)*nbComp+(*z)]=*srcPt;
1766               }
1767           }
1768       }
1769     else
1770       {
1771         for(const mcIdType *w=bgTuples;w!=endTuples;w++)
1772           {
1773             const T *srcPt2=srcPt;
1774             DataArray::CheckValueInRange(nbOfTuples,*w,"invalid tuple id");
1775             for(const mcIdType *z=bgComp;z!=endComp;z++,srcPt2++)
1776               {
1777                 pt[(std::size_t)(*w)*nbComp+(*z)]=*srcPt2;
1778               }
1779           }
1780       }
1781   }
1782
1783   /*!
1784    * Assign a given value to values at specified tuples and components of \a this array.
1785    * The tuples and components to assign to are defined by C arrays of indices.
1786    *  \param [in] a - the value to assign.
1787    *  \param [in] bgTuples - pointer to an array of tuple indices of \a this array to
1788    *              assign \a a to.
1789    *  \param [in] endTuples - specifies the end of the array \a bgTuples, so that
1790    *              pointer to a tuple index (\a pi) varies as this:
1791    *              \a bgTuples <= \a pi < \a endTuples.
1792    *  \param [in] bgComp - pointer to an array of component indices of \a this array to
1793    *              assign \a a to.
1794    *  \param [in] endComp - specifies the end of the array \a bgTuples, so that
1795    *              pointer to a component index (\a pi) varies as this:
1796    *              \a bgComp <= \a pi < \a endComp.
1797    *  \throw If \a this is not allocated.
1798    *  \throw If any index of tuple/component given by <em>bgTuples / bgComp</em> is
1799    *         out of a valid range for \a this array.
1800    *
1801    *  \if ENABLE_EXAMPLES
1802    *  \ref py_mcdataarraydouble_setpartofvaluessimple2 "Here is a Python example".
1803    *  \endif
1804    */
1805   template<class T>
1806   void DataArrayTemplate<T>::setPartOfValuesSimple2(T a, const mcIdType *bgTuples, const mcIdType *endTuples, const mcIdType *bgComp, const mcIdType *endComp)
1807   {
1808     checkAllocated();
1809     std::size_t nbComp=getNumberOfComponents();
1810     mcIdType nbOfTuples=getNumberOfTuples();
1811     for(const mcIdType *z=bgComp;z!=endComp;z++)
1812       DataArray::CheckValueInRange(ToIdType(nbComp),*z,"invalid component id");
1813     T *pt(getPointer());
1814     for(const mcIdType *w=bgTuples;w!=endTuples;w++)
1815       for(const mcIdType *z=bgComp;z!=endComp;z++)
1816         {
1817           DataArray::CheckValueInRange(nbOfTuples,*w,"invalid tuple id");
1818           pt[(std::size_t)(*w)*nbComp+(*z)]=a;
1819         }
1820   }
1821
1822   /*!
1823    * Copy all values from another DataArrayDouble (\a a) into specified tuples and
1824    * components of \a this array. Textual data is not copied.
1825    * The tuples to assign to are defined by a C array of indices.
1826    * The components to assign to are defined by three values similar to parameters of
1827    * the Python function \c range(\c start,\c stop,\c step).
1828    * There are two *modes of usage*:
1829    * - If \a a->getNbOfElems() equals to number of values to assign to, then every value
1830    *   of \a a is assigned to its own location within \a this array.
1831    * - If \a a includes one tuple, then all values of \a a are assigned to the specified
1832    *   components of every specified tuple of \a this array. In this mode it is required
1833    *   that \a a->getNumberOfComponents() equals to the number of specified components.
1834    *
1835    *  \param [in] a - the array to copy values from.
1836    *  \param [in] bgTuples - pointer to an array of tuple indices of \a this array to
1837    *              assign values of \a a to.
1838    *  \param [in] endTuples - specifies the end of the array \a bgTuples, so that
1839    *              pointer to a tuple index <em>(pi)</em> varies as this:
1840    *              \a bgTuples <= \a pi < \a endTuples.
1841    *  \param [in] bgComp - index of the first component of \a this array to assign to.
1842    *  \param [in] endComp - index of the component before which the components to assign
1843    *              to are located.
1844    *  \param [in] stepComp - index increment to get index of the next component to assign to.
1845    *  \param [in] strictCompoCompare - this parameter is checked only in the first
1846    *               *mode of usage*; if \a strictCompoCompare is \a true (default),
1847    *               then \a a->getNumberOfComponents() must be equal
1848    *               to the number of specified columns, else this is not required.
1849    *  \throw If \a a is NULL.
1850    *  \throw If \a a is not allocated.
1851    *  \throw If \a this is not allocated.
1852    *  \throw If any index of tuple given by \a bgTuples is out of a valid range for
1853    *         \a this array.
1854    *  \throw In the first *mode of usage*, if <em>strictCompoCompare == true </em> and
1855    *         if <em> a->getNumberOfComponents()</em> is unequal to the number of components
1856    *         defined by <em>(bgComp,endComp,stepComp)</em>.
1857    *  \throw In the second *mode of usage*, if \a a->getNumberOfTuples() != 1 or
1858    *         <em> a->getNumberOfComponents()</em> is unequal to the number of components
1859    *         defined by <em>(bgComp,endComp,stepComp)</em>.
1860    *  \throw If parameters specifying components to assign to, do not give a
1861    *            non-empty range of increasing indices or indices are out of a valid range
1862    *            for \c this array.
1863    *
1864    *  \if ENABLE_EXAMPLES
1865    *  \ref py_mcdataarraydouble_setpartofvalues3 "Here is a Python example".
1866    *  \endif
1867    */
1868   template<class T>
1869   void DataArrayTemplate<T>::setPartOfValues3(const typename Traits<T>::ArrayType *a, const mcIdType *bgTuples, const mcIdType *endTuples, mcIdType bgComp, mcIdType endComp, mcIdType stepComp, bool strictCompoCompare)
1870   {
1871     if(!a)
1872       throw INTERP_KERNEL::Exception("DataArrayTemplate::setPartOfValues3 : input DataArrayDouble is NULL !");
1873     const char msg[]="DataArrayTemplate::setPartOfValues3";
1874     checkAllocated();
1875     a->checkAllocated();
1876     mcIdType newNbOfComp=DataArray::GetNumberOfItemGivenBES(bgComp,endComp,stepComp,msg);
1877     std::size_t nbComp(getNumberOfComponents());
1878     mcIdType nbOfTuples(getNumberOfTuples());
1879     DataArray::CheckValueInRangeEx(ToIdType(nbComp),bgComp,endComp,"invalid component value");
1880     mcIdType newNbOfTuples=ToIdType(std::distance(bgTuples,endTuples));
1881     bool assignTech=true;
1882     if(a->getNbOfElems()==newNbOfTuples*newNbOfComp)
1883       {
1884         if(strictCompoCompare)
1885           a->checkNbOfTuplesAndComp(newNbOfTuples,newNbOfComp,msg);
1886       }
1887     else
1888       {
1889         a->checkNbOfTuplesAndComp(1,newNbOfComp,msg);
1890         assignTech=false;
1891       }
1892     T *pt(getPointer()+bgComp);
1893     const T *srcPt(a->getConstPointer());
1894     if(assignTech)
1895       {
1896         for(const mcIdType *w=bgTuples;w!=endTuples;w++)
1897           for(mcIdType j=0;j<newNbOfComp;j++,srcPt++)
1898             {
1899               DataArray::CheckValueInRange(nbOfTuples,*w,"invalid tuple id");
1900               pt[(std::size_t)(*w)*nbComp+j*stepComp]=*srcPt;
1901             }
1902       }
1903     else
1904       {
1905         for(const mcIdType *w=bgTuples;w!=endTuples;w++)
1906           {
1907             const T *srcPt2=srcPt;
1908             for(mcIdType j=0;j<newNbOfComp;j++,srcPt2++)
1909               {
1910                 DataArray::CheckValueInRange(nbOfTuples,*w,"invalid tuple id");
1911                 pt[(std::size_t)(*w)*nbComp+j*stepComp]=*srcPt2;
1912               }
1913           }
1914       }
1915   }
1916
1917   /*!
1918    * Assign a given value to values at specified tuples and components of \a this array.
1919    * The tuples to assign to are defined by a C array of indices.
1920    * The components to assign to are defined by three values similar to parameters of
1921    * the Python function \c range(\c start,\c stop,\c step).
1922    *  \param [in] a - the value to assign.
1923    *  \param [in] bgTuples - pointer to an array of tuple indices of \a this array to
1924    *              assign \a a to.
1925    *  \param [in] endTuples - specifies the end of the array \a bgTuples, so that
1926    *              pointer to a tuple index <em>(pi)</em> varies as this:
1927    *              \a bgTuples <= \a pi < \a endTuples.
1928    *  \param [in] bgComp - index of the first component of \a this array to assign to.
1929    *  \param [in] endComp - index of the component before which the components to assign
1930    *              to are located.
1931    *  \param [in] stepComp - index increment to get index of the next component to assign to.
1932    *  \throw If \a this is not allocated.
1933    *  \throw If any index of tuple given by \a bgTuples is out of a valid range for
1934    *         \a this array.
1935    *  \throw If parameters specifying components to assign to, do not give a
1936    *            non-empty range of increasing indices or indices are out of a valid range
1937    *            for \c this array.
1938    *
1939    *  \if ENABLE_EXAMPLES
1940    *  \ref py_mcdataarraydouble_setpartofvaluessimple3 "Here is a Python example".
1941    *  \endif
1942    */
1943   template<class T>
1944   void DataArrayTemplate<T>::setPartOfValuesSimple3(T a, const mcIdType *bgTuples, const mcIdType *endTuples, mcIdType bgComp, mcIdType endComp, mcIdType stepComp)
1945   {
1946     const char msg[]="DataArrayTemplate::setPartOfValuesSimple3";
1947     checkAllocated();
1948     std::size_t newNbOfComp(DataArray::GetNumberOfItemGivenBES(bgComp,endComp,stepComp,msg));
1949     std::size_t nbComp(getNumberOfComponents());
1950     mcIdType nbOfTuples(getNumberOfTuples());
1951     DataArray::CheckValueInRangeEx(ToIdType(nbComp),bgComp,endComp,"invalid component value");
1952     T *pt(getPointer()+bgComp);
1953     for(const mcIdType *w=bgTuples;w!=endTuples;w++)
1954       for(std::size_t j=0;j<newNbOfComp;j++)
1955         {
1956           DataArray::CheckValueInRange(nbOfTuples,*w,"invalid tuple id");
1957           pt[(std::size_t)(*w)*nbComp+j*stepComp]=a;
1958         }
1959   }
1960
1961   /*!
1962    * Copy all values from another DataArrayDouble into specified tuples and components
1963    * of \a this array. Textual data is not copied.
1964    * The tree parameters defining set of indices of tuples and components are similar to
1965    * the tree parameters of the Python function \c range(\c start,\c stop,\c step).
1966    *  \param [in] a - the array to copy values from.
1967    *  \param [in] bgTuples - index of the first tuple of \a this array to assign values to.
1968    *  \param [in] endTuples - index of the tuple before which the tuples to assign to
1969    *              are located.
1970    *  \param [in] stepTuples - index increment to get index of the next tuple to assign to.
1971    *  \param [in] bgComp - pointer to an array of component indices of \a this array to
1972    *              assign \a a to.
1973    *  \param [in] endComp - specifies the end of the array \a bgTuples, so that
1974    *              pointer to a component index (\a pi) varies as this:
1975    *              \a bgComp <= \a pi < \a endComp.
1976    *  \param [in] strictCompoCompare - if \a true (by default), then \a a->getNumberOfComponents()
1977    *              must be equal to the number of columns to assign to, else an
1978    *              exception is thrown; if \a false, then it is only required that \a
1979    *              a->getNbOfElems() equals to number of values to assign to (this condition
1980    *              must be respected even if \a strictCompoCompare is \a true). The number of
1981    *              values to assign to is given by following Python expression:
1982    *              \a nbTargetValues =
1983    *              \c len(\c range(\a bgTuples,\a endTuples,\a stepTuples)) *
1984    *              \c len(\c range(\a bgComp,\a endComp,\a stepComp)).
1985    *  \throw If \a a is NULL.
1986    *  \throw If \a a is not allocated.
1987    *  \throw If \a this is not allocated.
1988    *  \throw If parameters specifying tuples and components to assign to do not give a
1989    *            non-empty range of increasing indices.
1990    *  \throw If \a a->getNbOfElems() != \a nbTargetValues.
1991    *  \throw If \a strictCompoCompare == \a true && \a a->getNumberOfComponents() !=
1992    *            \c len(\c range(\a bgComp,\a endComp,\a stepComp)).
1993    *
1994    */
1995   template<class T>
1996   void DataArrayTemplate<T>::setPartOfValues4(const typename Traits<T>::ArrayType *a, mcIdType bgTuples, mcIdType endTuples, mcIdType stepTuples, const mcIdType *bgComp, const mcIdType *endComp, bool strictCompoCompare)
1997   {if(!a)
1998       throw INTERP_KERNEL::Exception("DataArrayTemplate::setPartOfValues4 : input DataArrayTemplate is NULL !");
1999     const char msg[]="DataArrayTemplate::setPartOfValues4";
2000     checkAllocated();
2001     a->checkAllocated();
2002     mcIdType newNbOfTuples(DataArray::GetNumberOfItemGivenBES(bgTuples,endTuples,stepTuples,msg));
2003     std::size_t newNbOfComp(std::distance(bgComp,endComp));
2004     std::size_t nbComp(getNumberOfComponents());
2005     for(const mcIdType *z=bgComp;z!=endComp;z++)
2006       DataArray::CheckValueInRange(ToIdType(nbComp),*z,"invalid component id");
2007     mcIdType nbOfTuples(getNumberOfTuples());
2008     DataArray::CheckValueInRangeEx(nbOfTuples,bgTuples,endTuples,"invalid tuple value");
2009     bool assignTech(true);
2010     if(a->getNbOfElems()==ToIdType(newNbOfTuples*newNbOfComp))
2011       {
2012         if(strictCompoCompare)
2013           a->checkNbOfTuplesAndComp(newNbOfTuples,newNbOfComp,msg);
2014       }
2015     else
2016       {
2017         a->checkNbOfTuplesAndComp(1,newNbOfComp,msg);
2018         assignTech=false;
2019       }
2020     const T *srcPt(a->getConstPointer());
2021     T *pt(getPointer()+bgTuples*nbComp);
2022     if(assignTech)
2023       {
2024         for(mcIdType i=0;i<newNbOfTuples;i++,pt+=stepTuples*nbComp)
2025           for(const mcIdType *z=bgComp;z!=endComp;z++,srcPt++)
2026             pt[*z]=*srcPt;
2027       }
2028     else
2029       {
2030       for(mcIdType i=0;i<newNbOfTuples;i++,pt+=stepTuples*nbComp)
2031         {
2032           const T *srcPt2(srcPt);
2033           for(const mcIdType *z=bgComp;z!=endComp;z++,srcPt2++)
2034             pt[*z]=*srcPt2;
2035         }
2036       }
2037   }
2038
2039   template<class T>
2040   void DataArrayTemplate<T>::setPartOfValuesSimple4(T a, mcIdType bgTuples, mcIdType endTuples, mcIdType stepTuples, const mcIdType *bgComp, const mcIdType *endComp)
2041   {
2042     const char msg[]="DataArrayTemplate::setPartOfValuesSimple4";
2043     checkAllocated();
2044     mcIdType newNbOfTuples(DataArray::GetNumberOfItemGivenBES(bgTuples,endTuples,stepTuples,msg));
2045     std::size_t nbComp(getNumberOfComponents());
2046     for(const mcIdType *z=bgComp;z!=endComp;z++)
2047       DataArray::CheckValueInRange(ToIdType(nbComp),*z,"invalid component id");
2048     mcIdType nbOfTuples(getNumberOfTuples());
2049     DataArray::CheckValueInRangeEx(nbOfTuples,bgTuples,endTuples,"invalid tuple value");
2050     T *pt=getPointer()+bgTuples*nbComp;
2051     for(mcIdType i=0;i<newNbOfTuples;i++,pt+=stepTuples*nbComp)
2052       for(const mcIdType *z=bgComp;z!=endComp;z++)
2053         pt[*z]=a;
2054   }
2055
2056   /*!
2057    * Copy some tuples from another DataArrayDouble into specified tuples
2058    * of \a this array. Textual data is not copied. Both arrays must have equal number of
2059    * components.
2060    * Both the tuples to assign and the tuples to assign to are defined by a DataArrayInt.
2061    * All components of selected tuples are copied.
2062    *  \param [in] a - the array to copy values from.
2063    *  \param [in] tuplesSelec - the array specifying both source tuples of \a a and
2064    *              target tuples of \a this. \a tuplesSelec has two components, and the
2065    *              first component specifies index of the source tuple and the second
2066    *              one specifies index of the target tuple.
2067    *  \throw If \a this is not allocated.
2068    *  \throw If \a a is NULL.
2069    *  \throw If \a a is not allocated.
2070    *  \throw If \a tuplesSelec is NULL.
2071    *  \throw If \a tuplesSelec is not allocated.
2072    *  \throw If <em>this->getNumberOfComponents() != a->getNumberOfComponents()</em>.
2073    *  \throw If \a tuplesSelec->getNumberOfComponents() != 2.
2074    *  \throw If any tuple index given by \a tuplesSelec is out of a valid range for
2075    *         the corresponding (\a this or \a a) array.
2076    */
2077   template<class T>
2078   void DataArrayTemplate<T>::setPartOfValuesAdv(const typename Traits<T>::ArrayType *a, const DataArrayIdType *tuplesSelec)
2079   {
2080     if(!a || !tuplesSelec)
2081       throw INTERP_KERNEL::Exception("DataArrayTemplate::setPartOfValuesAdv : input DataArrayTemplate is NULL !");
2082     checkAllocated();
2083     a->checkAllocated();
2084     tuplesSelec->checkAllocated();
2085     std::size_t nbOfComp(getNumberOfComponents());
2086     if(nbOfComp!=a->getNumberOfComponents())
2087       throw INTERP_KERNEL::Exception("DataArrayTemplate::setPartOfValuesAdv : This and a do not have the same number of components !");
2088     if(tuplesSelec->getNumberOfComponents()!=2)
2089       throw INTERP_KERNEL::Exception("DataArrayTemplate::setPartOfValuesAdv : Expecting to have a tuple selector DataArrayInt instance with exactly 2 components !");
2090     mcIdType thisNt(getNumberOfTuples());
2091     mcIdType aNt(a->getNumberOfTuples());
2092     T *valsToSet(getPointer());
2093     const T *valsSrc(a->getConstPointer());
2094     for(const mcIdType *tuple=tuplesSelec->begin();tuple!=tuplesSelec->end();tuple+=2)
2095     {
2096       if(tuple[1]>=0 && tuple[1]<aNt)
2097         {
2098           if(tuple[0]>=0 && tuple[0]<thisNt)
2099             std::copy(valsSrc+nbOfComp*tuple[1],valsSrc+nbOfComp*(tuple[1]+1),valsToSet+nbOfComp*tuple[0]);
2100           else
2101             {
2102               std::ostringstream oss; oss << "DataArrayTemplate::setPartOfValuesAdv : Tuple #" << std::distance(tuplesSelec->begin(),tuple)/2;
2103               oss << " of 'tuplesSelec' request of tuple id #" << tuple[0] << " in 'this' ! It should be in [0," << thisNt << ") !";
2104               throw INTERP_KERNEL::Exception(oss.str().c_str());
2105             }
2106         }
2107       else
2108         {
2109           std::ostringstream oss; oss << "DataArrayTemplate::setPartOfValuesAdv : Tuple #" << std::distance(tuplesSelec->begin(),tuple)/2;
2110           oss << " of 'tuplesSelec' request of tuple id #" << tuple[1] << " in 'a' ! It should be in [0," << aNt << ") !";
2111           throw INTERP_KERNEL::Exception(oss.str().c_str());
2112         }
2113     }
2114   }
2115
2116   /*!
2117    * Copy some tuples from another DataArrayDouble (\a aBase) into contiguous tuples
2118    * of \a this array. Textual data is not copied. Both arrays must have equal number of
2119    * components.
2120    * The tuples to assign to are defined by index of the first tuple, and
2121    * their number is defined by \a tuplesSelec->getNumberOfTuples().
2122    * The tuples to copy are defined by values of a DataArrayInt.
2123    * All components of selected tuples are copied.
2124    *  \param [in] tupleIdStart - index of the first tuple of \a this array to assign
2125    *              values to.
2126    *  \param [in] aBase - the array to copy values from.
2127    *  \param [in] tuplesSelec - the array specifying tuples of \a a to copy.
2128    *  \throw If \a this is not allocated.
2129    *  \throw If \a aBase is NULL.
2130    *  \throw If \a aBase is not allocated.
2131    *  \throw If \a tuplesSelec is NULL.
2132    *  \throw If \a tuplesSelec is not allocated.
2133    *  \throw If <em>this->getNumberOfComponents() != aBase->getNumberOfComponents()</em>.
2134    *  \throw If \a tuplesSelec->getNumberOfComponents() != 1.
2135    *  \throw If <em>tupleIdStart + tuplesSelec->getNumberOfTuples() > this->getNumberOfTuples().</em>
2136    *  \throw If any tuple index given by \a tuplesSelec is out of a valid range for
2137    *         \a aBase array.
2138  */
2139   template<class T>
2140   void DataArrayTemplate<T>::setContigPartOfSelectedValues(mcIdType tupleIdStart, const DataArray *aBase, const DataArrayIdType *tuplesSelec)
2141   {
2142     if(!aBase || !tuplesSelec)
2143       throw INTERP_KERNEL::Exception("DataArrayTemplate::setContigPartOfSelectedValues : input DataArray is NULL !");
2144     const typename Traits<T>::ArrayType *a(dynamic_cast<const typename Traits<T>::ArrayType *>(aBase));
2145     if(!a)
2146       throw INTERP_KERNEL::Exception("DataArrayTemplate::setContigPartOfSelectedValues : input DataArray aBase is not a DataArrayDouble !");
2147     checkAllocated();
2148     a->checkAllocated();
2149     tuplesSelec->checkAllocated();
2150     std::size_t nbOfComp(getNumberOfComponents());
2151     if(nbOfComp!=a->getNumberOfComponents())
2152       throw INTERP_KERNEL::Exception("DataArrayTemplate::setContigPartOfSelectedValues : This and a do not have the same number of components !");
2153     if(tuplesSelec->getNumberOfComponents()!=1)
2154       throw INTERP_KERNEL::Exception("DataArrayTemplate::setContigPartOfSelectedValues : Expecting to have a tuple selector DataArrayInt instance with exactly 1 component !");
2155     mcIdType thisNt(getNumberOfTuples());
2156     mcIdType aNt(a->getNumberOfTuples());
2157     mcIdType nbOfTupleToWrite(tuplesSelec->getNumberOfTuples());
2158     T *valsToSet(getPointer()+tupleIdStart*nbOfComp);
2159     if(tupleIdStart+nbOfTupleToWrite>thisNt)
2160       throw INTERP_KERNEL::Exception("DataArrayTemplate::setContigPartOfSelectedValues : invalid number range of values to write !");
2161     const T *valsSrc=a->getConstPointer();
2162     for(const mcIdType *tuple=tuplesSelec->begin();tuple!=tuplesSelec->end();tuple++,valsToSet+=nbOfComp)
2163       {
2164         if(*tuple>=0 && *tuple<aNt)
2165           {
2166             std::copy(valsSrc+nbOfComp*(*tuple),valsSrc+nbOfComp*(*tuple+1),valsToSet);
2167           }
2168         else
2169           {
2170             std::ostringstream oss; oss << Traits<T>::ArrayTypeName << "::setContigPartOfSelectedValues : Tuple #" << std::distance(tuplesSelec->begin(),tuple);
2171             oss << " of 'tuplesSelec' request of tuple id #" << *tuple << " in 'a' ! It should be in [0," << aNt << ") !";
2172             throw INTERP_KERNEL::Exception(oss.str().c_str());
2173           }
2174       }
2175   }
2176
2177   /*!
2178    * Copy some tuples from another DataArrayDouble (\a aBase) into contiguous tuples
2179    * of \a this array. Textual data is not copied. Both arrays must have equal number of
2180    * components.
2181    * The tuples to copy are defined by three values similar to parameters of
2182    * the Python function \c range(\c start,\c stop,\c step).
2183    * The tuples to assign to are defined by index of the first tuple, and
2184    * their number is defined by number of tuples to copy.
2185    * All components of selected tuples are copied.
2186    *  \param [in] tupleIdStart - index of the first tuple of \a this array to assign
2187    *              values to.
2188    *  \param [in] aBase - the array to copy values from.
2189    *  \param [in] bg - index of the first tuple to copy of the array \a aBase.
2190    *  \param [in] end2 - index of the tuple of \a aBase before which the tuples to copy
2191    *              are located.
2192    *  \param [in] step - index increment to get index of the next tuple to copy.
2193    *  \throw If \a this is not allocated.
2194    *  \throw If \a aBase is NULL.
2195    *  \throw If \a aBase is not allocated.
2196    *  \throw If <em>this->getNumberOfComponents() != aBase->getNumberOfComponents()</em>.
2197    *  \throw If <em>tupleIdStart + len(range(bg,end2,step)) > this->getNumberOfTuples().</em>
2198    *  \throw If parameters specifying tuples to copy, do not give a
2199    *            non-empty range of increasing indices or indices are out of a valid range
2200    *            for the array \a aBase.
2201    */
2202   template<class T>
2203   void DataArrayTemplate<T>::setContigPartOfSelectedValuesSlice(mcIdType tupleIdStart, const DataArray *aBase, mcIdType bg, mcIdType end2, mcIdType step)
2204   {
2205     if(!aBase)
2206       {
2207         std::ostringstream oss; oss << Traits<T>::ArrayTypeName << "::setContigPartOfSelectedValuesSlice : input DataArray is NULL !";
2208         throw INTERP_KERNEL::Exception(oss.str().c_str());
2209       }
2210     const typename Traits<T>::ArrayType *a(dynamic_cast<const typename Traits<T>::ArrayType *>(aBase));
2211     if(!a)
2212       throw INTERP_KERNEL::Exception("DataArrayTemplate::setContigPartOfSelectedValuesSlice : input DataArray aBase is not a DataArrayDouble !");
2213     checkAllocated();
2214     a->checkAllocated();
2215     std::size_t nbOfComp(getNumberOfComponents());
2216     const char msg[]="DataArrayDouble::setContigPartOfSelectedValuesSlice";
2217     mcIdType nbOfTupleToWrite(DataArray::GetNumberOfItemGivenBES(bg,end2,step,msg));
2218     if(nbOfComp!=a->getNumberOfComponents())
2219       throw INTERP_KERNEL::Exception("DataArrayTemplate::setContigPartOfSelectedValuesSlice : This and a do not have the same number of components !");
2220     mcIdType thisNt(getNumberOfTuples());
2221     mcIdType aNt(a->getNumberOfTuples());
2222     T *valsToSet(getPointer()+tupleIdStart*nbOfComp);
2223     if(tupleIdStart+nbOfTupleToWrite>thisNt)
2224       throw INTERP_KERNEL::Exception("DataArrayTemplate::setContigPartOfSelectedValuesSlice : invalid number range of values to write !");
2225     if(end2>aNt)
2226       throw INTERP_KERNEL::Exception("DataArrayTemplate::setContigPartOfSelectedValuesSlice : invalid range of values to read !");
2227     const T *valsSrc(a->getConstPointer()+bg*nbOfComp);
2228     for(mcIdType i=0;i<nbOfTupleToWrite;i++,valsToSet+=nbOfComp,valsSrc+=step*nbOfComp)
2229       {
2230         std::copy(valsSrc,valsSrc+nbOfComp,valsToSet);
2231       }
2232   }
2233
2234   /*!
2235    * Returns a shorten copy of \a this array. The new DataArrayDouble contains ranges
2236    * of tuples specified by \a ranges parameter.
2237    * For more info on renumbering see \ref numbering.
2238    *  \param [in] ranges - std::vector of std::pair's each of which defines a range
2239    *              of tuples in [\c begin,\c end) format.
2240    *  \return DataArrayDouble * - the new instance of DataArrayDouble that the caller
2241    *          is to delete using decrRef() as it is no more needed.
2242    *  \throw If \a end < \a begin.
2243    *  \throw If \a end > \a this->getNumberOfTuples().
2244    *  \throw If \a this is not allocated.
2245    */
2246   template<class T>
2247   typename Traits<T>::ArrayType *DataArrayTemplate<T>::mySelectByTupleRanges(const std::vector<std::pair<mcIdType,mcIdType> >& ranges) const
2248   {
2249     checkAllocated();
2250     std::size_t nbOfComp(getNumberOfComponents());
2251     mcIdType nbOfTuplesThis(getNumberOfTuples());
2252     if(ranges.empty())
2253       {
2254         MCAuto<DataArray> ret0(buildNewEmptyInstance());
2255         MCAuto< typename Traits<T>::ArrayType > ret(DynamicCastSafe<DataArray,typename Traits<T>::ArrayType>(ret0));
2256         ret->alloc(0,nbOfComp);
2257         ret->copyStringInfoFrom(*this);
2258         return ret.retn();
2259       }
2260     mcIdType ref(ranges.front().first),nbOfTuples(0);
2261     bool isIncreasing(true);
2262     for(std::vector<std::pair<mcIdType,mcIdType> >::const_iterator it=ranges.begin();it!=ranges.end();it++)
2263       {
2264         if((*it).first<=(*it).second)
2265           {
2266             if((*it).first>=0 && (*it).second<=nbOfTuplesThis)
2267               {
2268                 nbOfTuples+=(*it).second-(*it).first;
2269                 if(isIncreasing)
2270                   isIncreasing=ref<=(*it).first;
2271                 ref=(*it).second;
2272               }
2273             else
2274               {
2275                 std::ostringstream oss; oss << "DataArrayTemplate::selectByTupleRanges : on range #" << std::distance(ranges.begin(),it);
2276                 oss << " (" << (*it).first << "," << (*it).second << ") is greater than number of tuples of this :" << nbOfTuples << " !";
2277                 throw INTERP_KERNEL::Exception(oss.str().c_str());
2278               }
2279           }
2280         else
2281           {
2282             std::ostringstream oss; oss << "DataArrayTemplate::selectByTupleRanges : on range #" << std::distance(ranges.begin(),it);
2283             oss << " (" << (*it).first << "," << (*it).second << ") end is before begin !";
2284             throw INTERP_KERNEL::Exception(oss.str().c_str());
2285           }
2286       }
2287     if(isIncreasing && nbOfTuplesThis==nbOfTuples)
2288       return static_cast<typename Traits<T>::ArrayType *>(deepCopy());
2289     MCAuto<DataArray> ret0(buildNewEmptyInstance());
2290     MCAuto< typename Traits<T>::ArrayType > ret(DynamicCastSafe<DataArray,typename Traits<T>::ArrayType>(ret0));
2291     ret->alloc(nbOfTuples,nbOfComp);
2292     ret->copyStringInfoFrom(*this);
2293     const T *src(getConstPointer());
2294     T *work(ret->getPointer());
2295     for(std::vector<std::pair<mcIdType,mcIdType> >::const_iterator it=ranges.begin();it!=ranges.end();it++)
2296       work=std::copy(src+(*it).first*nbOfComp,src+(*it).second*nbOfComp,work);
2297     return ret.retn();
2298   }
2299
2300   /*!
2301    * Returns the first value of \a this.
2302    *  \return double - the last value of \a this array.
2303    *  \throw If \a this is not allocated.
2304    *  \throw If \a this->getNumberOfComponents() != 1.
2305    *  \throw If \a this->getNumberOfTuples() < 1.
2306    */
2307   template<class T>
2308   T DataArrayTemplate<T>::front() const
2309   {
2310     checkAllocated();
2311     if(getNumberOfComponents()!=1)
2312       throw INTERP_KERNEL::Exception("DataArrayTemplate::front : number of components not equal to one !");
2313     mcIdType nbOfTuples=getNumberOfTuples();
2314     if(nbOfTuples<1)
2315       throw INTERP_KERNEL::Exception("DataArrayTemplate::front : number of tuples must be >= 1 !");
2316     return *(getConstPointer());
2317   }
2318
2319   /*!
2320    * Returns the last value of \a this.
2321    *  \return double - the last value of \a this array.
2322    *  \throw If \a this is not allocated.
2323    *  \throw If \a this->getNumberOfComponents() != 1.
2324    *  \throw If \a this->getNumberOfTuples() < 1.
2325    */
2326   template<class T>
2327   T DataArrayTemplate<T>::back() const
2328   {
2329     checkAllocated();
2330     if(getNumberOfComponents()!=1)
2331       throw INTERP_KERNEL::Exception("DataArrayTemplate::back : number of components not equal to one !");
2332     mcIdType nbOfTuples=getNumberOfTuples();
2333     if(nbOfTuples<1)
2334       throw INTERP_KERNEL::Exception("DataArrayTemplate::back : number of tuples must be >= 1 !");
2335     return *(getConstPointer()+nbOfTuples-1);
2336   }
2337
2338   /*!
2339    * Returns the maximal value and its location within \a this one-dimensional array.
2340    *  \param [out] tupleId - index of the tuple holding the maximal value.
2341    *  \return double - the maximal value among all values of \a this array.
2342    *  \throw If \a this->getNumberOfComponents() != 1
2343    *  \throw If \a this->getNumberOfTuples() < 1
2344    *  \sa getMaxAbsValue, getMinValue
2345    */
2346   template<class T>
2347   T DataArrayTemplate<T>::getMaxValue(mcIdType& tupleId) const
2348   {
2349     checkAllocated();
2350     if(getNumberOfComponents()!=1)
2351       throw INTERP_KERNEL::Exception("DataArrayDouble::getMaxValue : must be applied on DataArrayDouble with only one component, you can call 'rearrange' method before or call 'getMaxValueInArray' method !");
2352     mcIdType nbOfTuples=getNumberOfTuples();
2353     if(nbOfTuples<=0)
2354       throw INTERP_KERNEL::Exception("DataArrayDouble::getMaxValue : array exists but number of tuples must be > 0 !");
2355     const T *vals(getConstPointer());
2356     const T *loc(std::max_element(vals,vals+nbOfTuples));
2357     tupleId=ToIdType(std::distance(vals,loc));
2358     return *loc;
2359   }
2360
2361   /*!
2362    * Returns the maximal value within \a this array that is allowed to have more than
2363    *  one component.
2364    *  \return double - the maximal value among all values of \a this array.
2365    *  \throw If \a this is not allocated.
2366    *  \sa getMaxAbsValueInArray, getMinValueInArray
2367    */
2368   template<class T>
2369   T DataArrayTemplate<T>::getMaxValueInArray() const
2370   {
2371     checkAllocated();
2372     const T *loc(std::max_element(begin(),end()));
2373     return *loc;
2374   }
2375
2376   /*!
2377    * Returns the maximal absolute value in \a this and the first occurrence location associated to it.
2378    * \return the element in this (positive or negative) having the max abs value in \a this.
2379    *  \throw If \a this is not allocated.
2380    *  \throw If \a this is non one component array.
2381    *  \throw If \a this is empty.
2382    */
2383   template<class T>
2384   T DataArrayTemplate<T>::getMaxAbsValue(std::size_t& tupleId) const
2385   {
2386     checkAllocated();
2387     if(getNumberOfComponents()!=1)
2388       throw INTERP_KERNEL::Exception("DataArrayDouble::getMaxAbsValue : must be applied on DataArrayDouble with only one component, you can call 'rearrange' method before or call 'getMaxValueInArray' method !");
2389     mcIdType nbTuples(this->getNumberOfTuples());
2390     if(nbTuples==0)
2391       throw INTERP_KERNEL::Exception("DataArrayTemplate<T>::getMaxAbsValue : empty array !");
2392     T ret((T)-1);
2393     tupleId=0;
2394     const T *pt(begin());
2395     for(mcIdType i=0;i<nbTuples;i++,pt++)
2396       {
2397         T cand((T)std::abs(*pt));
2398         if(cand>ret)
2399           {
2400             ret=cand;
2401             tupleId=i;
2402           }
2403       }
2404     return this->getIJ(ToIdType(tupleId),0);
2405   }
2406
2407   /*!
2408    * Returns the maximal absolute value in \a this.
2409    *  \throw If \a this is not allocated.
2410    *  \throw If \a this is non one component array.
2411    *  \throw If \a this is empty.
2412    */
2413   template<class T>
2414   T DataArrayTemplate<T>::getMaxAbsValueInArray() const
2415   {
2416     std::size_t dummy;
2417     return getMaxAbsValue(dummy);
2418   }
2419
2420   /*!
2421    * Returns the minimal value and its location within \a this one-dimensional array.
2422    *  \param [out] tupleId - index of the tuple holding the minimal value.
2423    *  \return double - the minimal value among all values of \a this array.
2424    *  \throw If \a this->getNumberOfComponents() != 1
2425    *  \throw If \a this->getNumberOfTuples() < 1
2426    */
2427   template<class T>
2428   T DataArrayTemplate<T>::getMinValue(mcIdType& tupleId) const
2429   {
2430     checkAllocated();
2431     if(getNumberOfComponents()!=1)
2432       throw INTERP_KERNEL::Exception("DataArrayDouble::getMinValue : must be applied on DataArrayDouble with only one component, you can call 'rearrange' method before call 'getMinValueInArray' method !");
2433     mcIdType nbOfTuples=getNumberOfTuples();
2434     if(nbOfTuples<=0)
2435       throw INTERP_KERNEL::Exception("DataArrayDouble::getMinValue : array exists but number of tuples must be > 0 !");
2436     const T *vals(getConstPointer());
2437     const T *loc(std::min_element(vals,vals+nbOfTuples));
2438     tupleId=ToIdType(std::distance(vals,loc));
2439     return *loc;
2440   }
2441
2442   /*!
2443    * Returns the minimal value within \a this array that is allowed to have more than
2444    *  one component.
2445    *  \return double - the minimal value among all values of \a this array.
2446    *  \throw If \a this is not allocated.
2447    */
2448   template<class T>
2449   T DataArrayTemplate<T>::getMinValueInArray() const
2450   {
2451     checkAllocated();
2452     const T *loc=std::min_element(begin(),end());
2453     return *loc;
2454   }
2455
2456   template<class T>
2457   void DataArrayTemplate<T>::circularPermutation(mcIdType nbOfShift)
2458   {
2459     checkAllocated();
2460     std::size_t nbOfCompo(getNumberOfComponents());
2461     mcIdType nbTuples(getNumberOfTuples());
2462     mcIdType effNbSh(EffectiveCircPerm(nbOfShift,nbTuples));
2463     if(effNbSh==0)
2464       return ;
2465     T *work(getPointer());
2466     if(effNbSh<nbTuples-effNbSh)
2467       {
2468         typename INTERP_KERNEL::AutoPtr<T> buf(new T[effNbSh*nbOfCompo]);
2469         std::copy(work,work+effNbSh*nbOfCompo,(T *)buf);
2470         std::copy(work+effNbSh*nbOfCompo,work+nbTuples*nbOfCompo,work);// ze big shift
2471         std::copy((T *)buf,(T *)buf+effNbSh*nbOfCompo,work+(nbTuples-effNbSh)*nbOfCompo);
2472       }
2473     else
2474       {
2475         typename INTERP_KERNEL::AutoPtr<T> buf(new T[(nbTuples-effNbSh)*nbOfCompo]);
2476         std::copy(work+effNbSh*nbOfCompo,work+nbTuples*nbOfCompo,(T *)buf);
2477         std::copy(work,work+effNbSh*nbOfCompo,work+(nbTuples-effNbSh)*nbOfCompo);// ze big shift
2478         std::copy((T*)buf,(T *)buf+(nbTuples-effNbSh)*nbOfCompo,work);
2479       }
2480   }
2481
2482   template<class T>
2483   void DataArrayTemplate<T>::circularPermutationPerTuple(mcIdType nbOfShift)
2484   {
2485     checkAllocated();
2486     std::size_t nbOfCompo(getNumberOfComponents());
2487     mcIdType nbTuples(getNumberOfTuples());
2488     mcIdType effNbSh(EffectiveCircPerm(nbOfShift,ToIdType(nbOfCompo)));
2489     if(effNbSh==0)
2490       return ;
2491     T *work(getPointer());
2492     if(effNbSh<ToIdType(nbOfCompo)-effNbSh)
2493       {
2494         typename INTERP_KERNEL::AutoPtr<T> buf(new T[effNbSh]);
2495         for(mcIdType i=0;i<nbTuples;i++,work+=nbOfCompo)
2496           {
2497             std::copy(work,work+effNbSh,(T *)buf);
2498             std::copy(work+effNbSh,work+nbOfCompo,work);// ze big shift
2499             std::copy((T *)buf,(T *)buf+effNbSh,work+(nbOfCompo-effNbSh));
2500           }
2501       }
2502     else
2503       {
2504         typename INTERP_KERNEL::AutoPtr<T> buf(new T[nbOfCompo-effNbSh]);
2505         for(mcIdType i=0;i<nbTuples;i++,work+=nbOfCompo)
2506           {
2507             std::copy(work+effNbSh,work+nbOfCompo,(T *)buf);
2508             std::copy(work,work+effNbSh,work+(nbOfCompo-effNbSh));// ze big shift
2509             std::copy((T*)buf,(T *)buf+(nbOfCompo-effNbSh),work);
2510           }
2511       }
2512     std::vector<std::string> sts(nbOfCompo);
2513     for(std::size_t i=0;i<nbOfCompo;i++)
2514       sts[i]=_info_on_compo[(i+effNbSh)%nbOfCompo];
2515     setInfoOnComponents(sts);
2516   }
2517
2518   template<class T>
2519   void DataArrayTemplate<T>::reversePerTuple()
2520   {
2521     checkAllocated();
2522     std::size_t nbOfCompo(getNumberOfComponents());
2523     mcIdType nbTuples(getNumberOfTuples());
2524     if(nbOfCompo<=1)
2525       return ;
2526     T *work(getPointer());
2527     for(mcIdType i=0;i<nbTuples;i++,work+=nbOfCompo)
2528       std::reverse(work,work+nbOfCompo);
2529     std::reverse(_info_on_compo.begin(),_info_on_compo.end());
2530   }
2531
2532   /*!
2533    * Assign pointer to one array to a pointer to another appay. Reference counter of
2534    * \a arrayToSet is incremented / decremented.
2535    *  \param [in] newArray - the pointer to array to assign to \a arrayToSet.
2536    *  \param [in,out] arrayToSet - the pointer to array to assign to.
2537    */
2538   template<class T>
2539   void DataArrayTemplate<T>::SetArrayIn(typename Traits<T>::ArrayType *newArray, typename Traits<T>::ArrayType* &arrayToSet)
2540   {
2541     if(newArray!=arrayToSet)
2542       {
2543         if(arrayToSet)
2544           arrayToSet->decrRef();
2545         arrayToSet=newArray;
2546         if(arrayToSet)
2547           arrayToSet->incrRef();
2548       }
2549   }
2550
2551     /*!
2552    * Assign zero to all values in \a this array. To know more on filling arrays see
2553    * \ref MEDCouplingArrayFill.
2554    * \throw If \a this is not allocated.
2555    */
2556   template<class T>
2557   void DataArrayTemplate<T>::fillWithZero()
2558   {
2559     fillWithValue((T)0);
2560   }
2561
2562   //////////////////////////////
2563
2564   namespace
2565   {
2566     // local static function to copy arrays without warnings
2567     template <class TIn, class TOut>
2568     static void copyCast (const TIn *begin, const TIn *end, TOut* dest)
2569     {
2570       for (const TIn *src = begin; src != end; ++src, ++dest)
2571         *dest=static_cast<TOut>(*src);
2572     }
2573   }
2574
2575   template<class T>
2576   template<class U>
2577   MCAuto< typename Traits<U>::ArrayType > DataArrayTemplateClassic<T>::convertToOtherTypeOfArr() const
2578   {
2579     this->checkAllocated();
2580     MCAuto<typename Traits<U>::ArrayType> ret(Traits<U>::ArrayType::New());
2581     ret->alloc(this->getNumberOfTuples(),this->getNumberOfComponents());
2582     std::size_t nbOfVals(this->getNbOfElems());
2583     const T *src(this->begin());
2584     U *dest(ret->getPointer());
2585     // to make Visual C++ happy : instead of std::size_t nbOfVals=getNbOfElems(); std::copy(src,src+nbOfVals,dest);
2586     copyCast(src, src+nbOfVals, dest);
2587     //std::copy(src,src+nbOfVals,dest);
2588     ret->copyStringInfoFrom(*this);
2589     return ret;
2590   }
2591
2592   /*!
2593    * Creates a new DataArrayDouble and assigns all (textual and numerical) data of \a this
2594    * array to the new one.
2595    *  \return DataArrayDouble * - the new instance of DataArrayInt.
2596    */
2597   template<class T>
2598   MCAuto<DataArrayDouble> DataArrayTemplateClassic<T>::convertToDblArr() const
2599   {
2600     return convertToOtherTypeOfArr<double>();
2601   }
2602
2603   /*!
2604    * Creates a new DataArrayInt and assigns all (textual and numerical) data of \a this
2605    * array to the new one.
2606    *  \return DataArrayInt * - the new instance of DataArrayInt.
2607    */
2608   template<class T>
2609   MCAuto<DataArrayInt> DataArrayTemplateClassic<T>::convertToIntArr() const
2610   {
2611     return convertToOtherTypeOfArr<int>();
2612   }
2613
2614   /*!
2615    * Creates a new DataArrayInt64 and assigns all (textual and numerical) data of \a this
2616    * array to the new one.
2617    *  \return DataArrayInt * - the new instance of DataArrayInt64.
2618    */
2619   template<class T>
2620   MCAuto<DataArrayInt64> DataArrayTemplateClassic<T>::convertToInt64Arr() const
2621   {
2622     return convertToOtherTypeOfArr<Int64>();
2623   }
2624   /*!
2625    * Creates a new DataArrayFloat and assigns all (textual and numerical) data of \a this
2626    * array to the new one.
2627    *  \return DataArrayFloat * - the new instance of DataArrayInt.
2628    */
2629   template<class T>
2630   MCAuto<DataArrayFloat> DataArrayTemplateClassic<T>::convertToFloatArr() const
2631   {
2632     return convertToOtherTypeOfArr<float>();
2633   }
2634
2635   /*!
2636    * Apply a linear function to a given component of \a this array, so that
2637    * an array element <em>(x)</em> becomes \f$ a * x + b \f$.
2638    *  \param [in] a - the first coefficient of the function.
2639    *  \param [in] b - the second coefficient of the function.
2640    *  \param [in] compoId - the index of component to modify.
2641    *  \throw If \a this is not allocated, or \a compoId is not in [0,\c this->getNumberOfComponents() ).
2642    */
2643   template<class T>
2644   void DataArrayTemplateClassic<T>::applyLin(T a, T b, std::size_t compoId)
2645   {
2646     this->checkAllocated();
2647     std::size_t nbOfComp=this->getNumberOfComponents();
2648     if(compoId>=nbOfComp)
2649       {
2650         std::ostringstream oss; oss << "DataArrayDouble::applyLin : The compoId requested (" << compoId << ") is not valid ! Must be in [0," << nbOfComp << ") !";
2651         throw INTERP_KERNEL::Exception(oss.str().c_str());
2652       }
2653     T *ptr(this->getPointer()+compoId);
2654     mcIdType nbOfTuple=this->getNumberOfTuples();
2655     for(mcIdType i=0;i<nbOfTuple;i++,ptr+=nbOfComp)
2656       *ptr=a*(*ptr)+b;
2657     this->declareAsNew();
2658   }
2659
2660   /*!
2661    * Apply a linear function to all elements of \a this array, so that
2662    * an element _x_ becomes \f$ a * x + b \f$.
2663    *  \param [in] a - the first coefficient of the function.
2664    *  \param [in] b - the second coefficient of the function.
2665    *  \throw If \a this is not allocated.
2666    */
2667   template<class T>
2668   void DataArrayTemplateClassic<T>::applyLin(T a, T b)
2669   {
2670     this->checkAllocated();
2671     T *ptr(this->getPointer());
2672     std::size_t nbOfElems(this->getNbOfElems());
2673     for(std::size_t i=0;i<nbOfElems;i++,ptr++)
2674       *ptr=a*(*ptr)+b;
2675     this->declareAsNew();
2676   }
2677
2678   /*!
2679    * Returns a full copy of \a this array except that sign of all elements is reversed.
2680    *  \return DataArrayDouble * - the new instance of DataArrayDouble containing the
2681    *          same number of tuples and component as \a this array.
2682    *          The caller is to delete this result array using decrRef() as it is no more
2683    *          needed.
2684    *  \throw If \a this is not allocated.
2685    */
2686   template<class T>
2687   typename Traits<T>::ArrayType *DataArrayTemplateClassic<T>::negate() const
2688   {
2689     this->checkAllocated();
2690     MCAuto<typename Traits<T>::ArrayType> newArr(Traits<T>::ArrayType::New());
2691     mcIdType nbOfTuples(this->getNumberOfTuples());
2692     std::size_t nbOfComp(this->getNumberOfComponents());
2693     newArr->alloc(nbOfTuples,nbOfComp);
2694     const T *cptr(this->begin());
2695     std::transform(cptr,cptr+nbOfTuples*nbOfComp,newArr->getPointer(),std::negate<T>());
2696     newArr->copyStringInfoFrom(*this);
2697     return newArr.retn();
2698   }
2699
2700   template<class T>
2701   template<class FCT>
2702   void DataArrayTemplateClassic<T>::somethingEqual(const typename Traits<T>::ArrayType *other)
2703   {
2704     if(!other)
2705       throw INTERP_KERNEL::Exception("DataArray<T>::SomethingEqual : input DataArray<T> instance is NULL !");
2706     const char *msg="Nb of tuples mismatch for DataArrayDouble::multiplyEqual !";
2707     this->checkAllocated();
2708     other->checkAllocated();
2709     mcIdType nbOfTuple(this->getNumberOfTuples());
2710     mcIdType nbOfTuple2(other->getNumberOfTuples());
2711     std::size_t nbOfComp(this->getNumberOfComponents());
2712     std::size_t nbOfComp2(other->getNumberOfComponents());
2713     if(nbOfTuple==nbOfTuple2)
2714       {
2715         if(nbOfComp==nbOfComp2)
2716           {
2717             std::transform(this->begin(),this->end(),other->begin(),this->getPointer(),FCT());
2718           }
2719         else if(nbOfComp2==1)
2720           {
2721             T *ptr(this->getPointer());
2722             const T *ptrc(other->begin());
2723             for(mcIdType i=0;i<nbOfTuple;i++)
2724               std::transform(ptr+i*nbOfComp,ptr+(i+1)*nbOfComp,ptr+i*nbOfComp,std::bind(FCT(),std::placeholders::_1,*ptrc++));
2725           }
2726         else
2727           throw INTERP_KERNEL::Exception(msg);
2728       }
2729     else if(nbOfTuple2==1)
2730       {
2731         if(nbOfComp2==nbOfComp)
2732           {
2733             T *ptr(this->getPointer());
2734             const T *ptrc(other->begin());
2735             for(mcIdType i=0;i<nbOfTuple;i++)
2736               std::transform(ptr+i*nbOfComp,ptr+(i+1)*nbOfComp,ptrc,ptr+i*nbOfComp,FCT());
2737           }
2738         else
2739           throw INTERP_KERNEL::Exception(msg);
2740       }
2741     else
2742       throw INTERP_KERNEL::Exception(msg);
2743     this->declareAsNew();
2744   }
2745
2746   /*!
2747    * Adds values of another DataArrayDouble to values of \a this one. There are 3
2748    * valid cases.
2749    * 1.  The arrays have same number of tuples and components. Then each value of
2750    *   \a other array is added to the corresponding value of \a this array, i.e.:
2751    *   _a_ [ i, j ] += _other_ [ i, j ].
2752    * 2.  The arrays have same number of tuples and \a other array has one component. Then
2753    *   _a_ [ i, j ] += _other_ [ i, 0 ].
2754    * 3.  The arrays have same number of components and \a other array has one tuple. Then
2755    *   _a_ [ i, j ] += _a2_ [ 0, j ].
2756    *
2757    *  \param [in] other - an array to add to \a this one.
2758    *  \throw If \a other is NULL.
2759    *  \throw If \a this->getNumberOfTuples() != \a other->getNumberOfTuples() and
2760    *         \a this->getNumberOfComponents() != \a other->getNumberOfComponents() and
2761    *         \a other has number of both tuples and components not equal to 1.
2762    */
2763   template<class T>
2764   void DataArrayTemplateClassic<T>::addEqual(const typename Traits<T>::ArrayType *other)
2765   {
2766     this->somethingEqual< std::plus<T> >(other);
2767   }
2768
2769   /*!
2770    * Subtract values of another DataArrayDouble from values of \a this one. There are 3
2771    * valid cases.
2772    * 1.  The arrays have same number of tuples and components. Then each value of
2773    *   \a other array is subtracted from the corresponding value of \a this array, i.e.:
2774    *   _a_ [ i, j ] -= _other_ [ i, j ].
2775    * 2.  The arrays have same number of tuples and \a other array has one component. Then
2776    *   _a_ [ i, j ] -= _other_ [ i, 0 ].
2777    * 3.  The arrays have same number of components and \a other array has one tuple. Then
2778    *   _a_ [ i, j ] -= _a2_ [ 0, j ].
2779    *
2780    *  \param [in] other - an array to subtract from \a this one.
2781    *  \throw If \a other is NULL.
2782    *  \throw If \a this->getNumberOfTuples() != \a other->getNumberOfTuples() and
2783    *         \a this->getNumberOfComponents() != \a other->getNumberOfComponents() and
2784    *         \a other has number of both tuples and components not equal to 1.
2785    */
2786   template<class T>
2787   void DataArrayTemplateClassic<T>::substractEqual(const typename Traits<T>::ArrayType *other)
2788   {
2789     this->somethingEqual< std::minus<T> >(other);
2790   }
2791
2792   /*!
2793    * Multiply values of another DataArrayDouble to values of \a this one. There are 3
2794    * valid cases.
2795    * 1.  The arrays have same number of tuples and components. Then each value of
2796    *   \a other array is multiplied to the corresponding value of \a this array, i.e.
2797    *   _this_ [ i, j ] *= _other_ [ i, j ].
2798    * 2.  The arrays have same number of tuples and \a other array has one component. Then
2799    *   _this_ [ i, j ] *= _other_ [ i, 0 ].
2800    * 3.  The arrays have same number of components and \a other array has one tuple. Then
2801    *   _this_ [ i, j ] *= _a2_ [ 0, j ].
2802    *
2803    *  \param [in] other - an array to multiply to \a this one.
2804    *  \throw If \a other is NULL.
2805    *  \throw If \a this->getNumberOfTuples() != \a other->getNumberOfTuples() and
2806    *         \a this->getNumberOfComponents() != \a other->getNumberOfComponents() and
2807    *         \a other has number of both tuples and components not equal to 1.
2808    */
2809   template<class T>
2810   void DataArrayTemplateClassic<T>::multiplyEqual(const typename Traits<T>::ArrayType *other)
2811   {
2812     this->somethingEqual< std::multiplies<T> >(other);
2813   }
2814
2815   /*!
2816    * Divide values of \a this array by values of another DataArrayDouble. There are 3
2817    * valid cases.
2818    * 1.  The arrays have same number of tuples and components. Then each value of
2819    *    \a this array is divided by the corresponding value of \a other one, i.e.:
2820    *   _a_ [ i, j ] /= _other_ [ i, j ].
2821    * 2.  The arrays have same number of tuples and \a other array has one component. Then
2822    *   _a_ [ i, j ] /= _other_ [ i, 0 ].
2823    * 3.  The arrays have same number of components and \a other array has one tuple. Then
2824    *   _a_ [ i, j ] /= _a2_ [ 0, j ].
2825    *
2826    *  \warning No check of division by zero is performed!
2827    *  \param [in] other - an array to divide \a this one by.
2828    *  \throw If \a other is NULL.
2829    *  \throw If \a this->getNumberOfTuples() != \a other->getNumberOfTuples() and
2830    *         \a this->getNumberOfComponents() != \a other->getNumberOfComponents() and
2831    *         \a other has number of both tuples and components not equal to 1.
2832    */
2833   template<class T>
2834   void DataArrayTemplateClassic<T>::divideEqual(const typename Traits<T>::ArrayType *other)
2835   {
2836     this->somethingEqual< std::divides<T> >(other);
2837   }
2838
2839   template<class T, class FCT>
2840   typename Traits<T>::ArrayType *DivSub(const typename Traits<T>::ArrayType *a1, const typename Traits<T>::ArrayType *a2)
2841   {
2842     if(!a1 || !a2)
2843       throw INTERP_KERNEL::Exception("DivSub : input DataArrayDouble instance is NULL !");
2844     mcIdType nbOfTuple1(a1->getNumberOfTuples());
2845     mcIdType nbOfTuple2(a2->getNumberOfTuples());
2846     std::size_t nbOfComp1(a1->getNumberOfComponents());
2847     std::size_t nbOfComp2(a2->getNumberOfComponents());
2848     if(nbOfTuple2==nbOfTuple1)
2849       {
2850         if(nbOfComp1==nbOfComp2)
2851           {
2852             MCAuto<typename Traits<T>::ArrayType> ret(Traits<T>::ArrayType::New());
2853             ret->alloc(nbOfTuple2,nbOfComp1);
2854             std::transform(a1->begin(),a1->end(),a2->begin(),ret->getPointer(),FCT());
2855             ret->copyStringInfoFrom(*a1);
2856             return ret.retn();
2857           }
2858         else if(nbOfComp2==1)
2859           {
2860             MCAuto<typename Traits<T>::ArrayType> ret(Traits<T>::ArrayType::New());
2861             ret->alloc(nbOfTuple1,nbOfComp1);
2862             const T *a2Ptr(a2->begin()),*a1Ptr(a1->begin());
2863             T *res(ret->getPointer());
2864             for(mcIdType i=0;i<nbOfTuple1;i++)
2865               res=std::transform(a1Ptr+i*nbOfComp1,a1Ptr+(i+1)*nbOfComp1,res,std::bind(FCT(),std::placeholders::_1,a2Ptr[i]));
2866             ret->copyStringInfoFrom(*a1);
2867             return ret.retn();
2868           }
2869         else
2870           {
2871             a1->checkNbOfComps(nbOfComp2,"Nb of components mismatch for array Divide !");
2872             return 0;
2873           }
2874       }
2875     else if(nbOfTuple2==1)
2876       {
2877         a1->checkNbOfComps(nbOfComp2,"Nb of components mismatch for array Divide !");
2878         MCAuto<typename Traits<T>::ArrayType> ret(Traits<T>::ArrayType::New());
2879         ret->alloc(nbOfTuple1,nbOfComp1);
2880         const T *a1ptr=a1->begin(),*a2ptr(a2->begin());
2881         T *pt(ret->getPointer());
2882         for(mcIdType i=0;i<nbOfTuple1;i++)
2883           pt=std::transform(a1ptr+i*nbOfComp1,a1ptr+(i+1)*nbOfComp1,a2ptr,pt,FCT());
2884         ret->copyStringInfoFrom(*a1);
2885         return ret.retn();
2886       }
2887     else
2888       {
2889         a1->checkNbOfTuples(nbOfTuple2,"Nb of tuples mismatch for array Divide !");//will always throw an exception
2890         return 0;
2891       }
2892   }
2893
2894   /*!
2895    * Returns a new DataArrayDouble that is a subtraction of two given arrays. There are 3
2896    * valid cases.
2897    * 1.  The arrays have same number of tuples and components. Then each value of
2898    *   the result array (_a_) is a subtraction of the corresponding values of \a a1 and
2899    *   \a a2, i.e.: _a_ [ i, j ] = _a1_ [ i, j ] - _a2_ [ i, j ].
2900    * 2.  The arrays have same number of tuples and one array, say _a2_, has one
2901    *   component. Then
2902    *   _a_ [ i, j ] = _a1_ [ i, j ] - _a2_ [ i, 0 ].
2903    * 3.  The arrays have same number of components and one array, say _a2_, has one
2904    *   tuple. Then
2905    *   _a_ [ i, j ] = _a1_ [ i, j ] - _a2_ [ 0, j ].
2906    *
2907    * Info on components is copied either from the first array (in the first case) or from
2908    * the array with maximal number of elements (getNbOfElems()).
2909    *  \param [in] a1 - an array to subtract from.
2910    *  \param [in] a2 - an array to subtract.
2911    *  \return DataArrayDouble * - the new instance of DataArrayDouble.
2912    *          The caller is to delete this result array using decrRef() as it is no more
2913    *          needed.
2914    *  \throw If either \a a1 or \a a2 is NULL.
2915    *  \throw If \a a1->getNumberOfTuples() != \a a2->getNumberOfTuples() and
2916    *         \a a1->getNumberOfComponents() != \a a2->getNumberOfComponents() and
2917    *         none of them has number of tuples or components equal to 1.
2918    */
2919   template<class T>
2920   typename Traits<T>::ArrayType *DataArrayTemplateClassic<T>::Substract(const typename Traits<T>::ArrayType *a1, const typename Traits<T>::ArrayType *a2)
2921   {
2922     return DivSub< T,std::minus<T> >(a1,a2);
2923   }
2924
2925   /*!
2926    * Returns a new DataArrayDouble that is a division of two given arrays. There are 3
2927    * valid cases.
2928    * 1.  The arrays have same number of tuples and components. Then each value of
2929    *   the result array (_a_) is a division of the corresponding values of \a a1 and
2930    *   \a a2, i.e.: _a_ [ i, j ] = _a1_ [ i, j ] / _a2_ [ i, j ].
2931    * 2.  The arrays have same number of tuples and one array, say _a2_, has one
2932    *   component. Then
2933    *   _a_ [ i, j ] = _a1_ [ i, j ] / _a2_ [ i, 0 ].
2934    * 3.  The arrays have same number of components and one array, say _a2_, has one
2935    *   tuple. Then
2936    *   _a_ [ i, j ] = _a1_ [ i, j ] / _a2_ [ 0, j ].
2937    *
2938    * Info on components is copied either from the first array (in the first case) or from
2939    * the array with maximal number of elements (getNbOfElems()).
2940    *  \warning No check of division by zero is performed!
2941    *  \param [in] a1 - a numerator array.
2942    *  \param [in] a2 - a denominator array.
2943    *  \return DataArrayDouble * - the new instance of DataArrayDouble.
2944    *          The caller is to delete this result array using decrRef() as it is no more
2945    *          needed.
2946    *  \throw If either \a a1 or \a a2 is NULL.
2947    *  \throw If \a a1->getNumberOfTuples() != \a a2->getNumberOfTuples() and
2948    *         \a a1->getNumberOfComponents() != \a a2->getNumberOfComponents() and
2949    *         none of them has number of tuples or components equal to 1.
2950    */
2951   template<class T>
2952   typename Traits<T>::ArrayType *DataArrayTemplateClassic<T>::Divide(const typename Traits<T>::ArrayType *a1, const typename Traits<T>::ArrayType *a2)
2953   {
2954     return DivSub< T,std::divides<T> >(a1,a2);
2955   }
2956
2957   template<class T, class FCT>
2958   typename Traits<T>::ArrayType *MulAdd(const typename Traits<T>::ArrayType *a1, const typename Traits<T>::ArrayType *a2)
2959   {
2960     if(!a1 || !a2)
2961       throw INTERP_KERNEL::Exception("DataArrayDouble::MulAdd : input DataArrayDouble instance is NULL !");
2962     mcIdType nbOfTuple(a1->getNumberOfTuples());
2963     mcIdType nbOfTuple2(a2->getNumberOfTuples());
2964     std::size_t nbOfComp(a1->getNumberOfComponents());
2965     std::size_t nbOfComp2(a2->getNumberOfComponents());
2966     MCAuto<typename Traits<T>::ArrayType> ret=0;
2967     if(nbOfTuple==nbOfTuple2)
2968       {
2969         if(nbOfComp==nbOfComp2)
2970           {
2971             ret=Traits<T>::ArrayType::New();
2972             ret->alloc(nbOfTuple,nbOfComp);
2973             std::transform(a1->begin(),a1->end(),a2->begin(),ret->getPointer(),FCT());
2974             ret->copyStringInfoFrom(*a1);
2975           }
2976         else
2977           {
2978             std::size_t nbOfCompMin,nbOfCompMax;
2979             const typename Traits<T>::ArrayType *aMin, *aMax;
2980             if(nbOfComp>nbOfComp2)
2981               {
2982                 nbOfCompMin=nbOfComp2; nbOfCompMax=nbOfComp;
2983                 aMin=a2; aMax=a1;
2984               }
2985             else
2986               {
2987                 nbOfCompMin=nbOfComp; nbOfCompMax=nbOfComp2;
2988                 aMin=a1; aMax=a2;
2989               }
2990             if(nbOfCompMin==1)
2991               {
2992                 ret=Traits<T>::ArrayType::New();
2993                 ret->alloc(nbOfTuple,nbOfCompMax);
2994                 const T *aMinPtr(aMin->begin());
2995                 const T *aMaxPtr(aMax->begin());
2996                 T *res=ret->getPointer();
2997                 for(mcIdType i=0;i<nbOfTuple;i++)
2998                   res=std::transform(aMaxPtr+i*nbOfCompMax,aMaxPtr+(i+1)*nbOfCompMax,res,std::bind(FCT(),std::placeholders::_1,aMinPtr[i]));
2999                 ret->copyStringInfoFrom(*aMax);
3000               }
3001             else
3002               throw INTERP_KERNEL::Exception("Nb of components mismatch for array MulAdd !");
3003           }
3004       }
3005     else if((nbOfTuple==1 && nbOfTuple2>1) || (nbOfTuple>1 && nbOfTuple2==1))
3006       {
3007         if(nbOfComp==nbOfComp2)
3008           {
3009             mcIdType nbOfTupleMax=std::max(nbOfTuple,nbOfTuple2);
3010             const typename Traits<T>::ArrayType *aMin(nbOfTuple>nbOfTuple2?a2:a1);
3011             const typename Traits<T>::ArrayType *aMax(nbOfTuple>nbOfTuple2?a1:a2);
3012             const T *aMinPtr(aMin->begin()),*aMaxPtr(aMax->begin());
3013             ret=Traits<T>::ArrayType::New();
3014             ret->alloc(nbOfTupleMax,nbOfComp);
3015             T *res(ret->getPointer());
3016             for(mcIdType i=0;i<nbOfTupleMax;i++)
3017               res=std::transform(aMaxPtr+i*nbOfComp,aMaxPtr+(i+1)*nbOfComp,aMinPtr,res,FCT());
3018             ret->copyStringInfoFrom(*aMax);
3019           }
3020         else
3021           throw INTERP_KERNEL::Exception("Nb of components mismatch for array MulAdd !");
3022       }
3023     else
3024       throw INTERP_KERNEL::Exception("Nb of tuples mismatch for array MulAdd !");
3025     return ret.retn();
3026   }
3027
3028   /*!
3029    * Returns a new DataArrayDouble that is a product of two given arrays. There are 3
3030    * valid cases.
3031    * 1.  The arrays have same number of tuples and components. Then each value of
3032    *   the result array (_a_) is a product of the corresponding values of \a a1 and
3033    *   \a a2, i.e. _a_ [ i, j ] = _a1_ [ i, j ] * _a2_ [ i, j ].
3034    * 2.  The arrays have same number of tuples and one array, say _a2_, has one
3035    *   component. Then
3036    *   _a_ [ i, j ] = _a1_ [ i, j ] * _a2_ [ i, 0 ].
3037    * 3.  The arrays have same number of components and one array, say _a2_, has one
3038    *   tuple. Then
3039    *   _a_ [ i, j ] = _a1_ [ i, j ] * _a2_ [ 0, j ].
3040    *
3041    * Info on components is copied either from the first array (in the first case) or from
3042    * the array with maximal number of elements (getNbOfElems()).
3043    *  \param [in] a1 - a factor array.
3044    *  \param [in] a2 - another factor array.
3045    *  \return DataArrayDouble * - the new instance of DataArrayDouble.
3046    *          The caller is to delete this result array using decrRef() as it is no more
3047    *          needed.
3048    *  \throw If either \a a1 or \a a2 is NULL.
3049    *  \throw If \a a1->getNumberOfTuples() != \a a2->getNumberOfTuples() and
3050    *         \a a1->getNumberOfComponents() != \a a2->getNumberOfComponents() and
3051    *         none of them has number of tuples or components equal to 1.
3052    */
3053   template<class T>
3054   typename Traits<T>::ArrayType *DataArrayTemplateClassic<T>::Multiply(const typename Traits<T>::ArrayType *a1, const typename Traits<T>::ArrayType *a2)
3055   {
3056     return MulAdd< T , std::multiplies<T> >(a1,a2);
3057   }
3058
3059   /*!
3060    * Returns a new DataArrayDouble that is a sum of two given arrays. There are 3
3061    * valid cases.
3062    * 1.  The arrays have same number of tuples and components. Then each value of
3063    *   the result array (_a_) is a sum of the corresponding values of \a a1 and \a a2,
3064    *   i.e.: _a_ [ i, j ] = _a1_ [ i, j ] + _a2_ [ i, j ].
3065    * 2.  The arrays have same number of tuples and one array, say _a2_, has one
3066    *   component. Then
3067    *   _a_ [ i, j ] = _a1_ [ i, j ] + _a2_ [ i, 0 ].
3068    * 3.  The arrays have same number of components and one array, say _a2_, has one
3069    *   tuple. Then
3070    *   _a_ [ i, j ] = _a1_ [ i, j ] + _a2_ [ 0, j ].
3071    *
3072    * Info on components is copied either from the first array (in the first case) or from
3073    * the array with maximal number of elements (getNbOfElems()).
3074    *  \param [in] a1 - an array to sum up.
3075    *  \param [in] a2 - another array to sum up.
3076    *  \return DataArrayDouble * - the new instance of DataArrayDouble.
3077    *          The caller is to delete this result array using decrRef() as it is no more
3078    *          needed.
3079    *  \throw If either \a a1 or \a a2 is NULL.
3080    *  \throw If \a a1->getNumberOfTuples() != \a a2->getNumberOfTuples() and
3081    *         \a a1->getNumberOfComponents() != \a a2->getNumberOfComponents() and
3082    *         none of them has number of tuples or components equal to 1.
3083    */
3084   template<class T>
3085   typename Traits<T>::ArrayType *DataArrayTemplateClassic<T>::Add(const typename Traits<T>::ArrayType *a1, const typename Traits<T>::ArrayType *a2)
3086   {
3087     return MulAdd< T , std::plus<T> >(a1,a2);
3088   }
3089
3090   /*!
3091    * Returns either a \a deep or \a shallow copy of this array. For more info see
3092    * \ref MEDCouplingArrayBasicsCopyDeep and \ref MEDCouplingArrayBasicsCopyShallow.
3093    *  \param [in] dCpy - if \a true, a deep copy is returned, else, a shallow one.
3094    *  \return DataArrayDouble * - either a new instance of DataArrayDouble (if \a dCpy
3095    *          == \a true) or \a this instance (if \a dCpy == \a false).
3096    */
3097   template<class T>
3098   typename Traits<T>::ArrayType *DataArrayTemplateClassic<T>::PerformCopyOrIncrRef(bool dCpy, const typename Traits<T>::ArrayType& self)
3099   {
3100     if(dCpy)
3101       return self.deepCopy();
3102     else
3103       {
3104         self.incrRef();
3105         return const_cast<typename Traits<T>::ArrayType *>(&self);
3106       }
3107   }
3108
3109   template<class T>
3110   struct GreatEqual
3111   {
3112     GreatEqual(T v):_v(v) { }
3113     bool operator()(T v) const { return v>=_v; }
3114     T _v;
3115   };
3116
3117   template<class T>
3118   struct GreaterThan
3119   {
3120     GreaterThan(T v):_v(v) { }
3121     bool operator()(T v) const { return v>_v; }
3122     T _v;
3123   };
3124
3125   template<class T>
3126   struct LowerEqual
3127   {
3128     LowerEqual(T v):_v(v) { }
3129     bool operator()(T v) const { return v<=_v; }
3130     T _v;
3131   };
3132
3133   template<class T>
3134   struct LowerThan
3135   {
3136     LowerThan(T v):_v(v) { }
3137     bool operator()(T v) const { return v<_v; }
3138     T _v;
3139   };
3140
3141   template<class T>
3142   struct InRange
3143   {
3144     InRange(T a, T b):_a(a),_b(b) { }
3145     bool operator()(T v) const { return v>=_a && v<_b; }
3146     T _a,_b;
3147   };
3148
3149 template<class T>
3150 struct NotInRange
3151 {
3152   NotInRange(T a, T b):_a(a),_b(b) { }
3153   bool operator()(T v) const { return v<_a || v>=_b; }
3154   T _a,_b;
3155 };
3156
3157   /*!
3158    * This method works only on data array with one component. This method returns a newly allocated array storing stored ascendantly of tuple ids in \a this so that this[id]<0.
3159    *
3160    * \return a newly allocated data array that the caller should deal with.
3161    * \sa DataArrayInt::findIdsInRange
3162    */
3163   template<class T>
3164   DataArrayIdType *DataArrayTemplateClassic<T>::findIdsStrictlyNegative() const
3165   {
3166     LowerThan<T> lt((T)0);
3167     MCAuto<DataArrayIdType> ret(findIdsAdv(lt));
3168     return ret.retn();
3169   }
3170
3171   template<class T>
3172   MCAuto<DataArrayIdType> DataArrayTemplateClassic<T>::findIdsGreaterOrEqualTo(T val) const
3173   {
3174     GreatEqual<T> ge(val);
3175     return findIdsAdv(ge);
3176   }
3177
3178   template<class T>
3179   MCAuto<DataArrayIdType> DataArrayTemplateClassic<T>::findIdsGreaterThan(T val) const
3180   {
3181     GreaterThan<T> gt(val);
3182     return findIdsAdv(gt);
3183   }
3184
3185   template<class T>
3186   MCAuto<DataArrayIdType> DataArrayTemplateClassic<T>::findIdsLowerOrEqualTo(T val) const
3187   {
3188     LowerEqual<T> le(val);
3189     return findIdsAdv(le);
3190   }
3191
3192   template<class T>
3193   MCAuto<DataArrayIdType> DataArrayTemplateClassic<T>::findIdsLowerThan(T val) const
3194   {
3195     LowerThan<T> lt(val);
3196     return findIdsAdv(lt);
3197   }
3198
3199   /*!
3200    * Returns a new DataArrayDouble by aggregating two given arrays, so that (1) the number
3201    * of components in the result array is a sum of the number of components of given arrays
3202    * and (2) the number of tuples in the result array is same as that of each of given
3203    * arrays. In other words the i-th tuple of result array includes all components of
3204    * i-th tuples of all given arrays.
3205    * Number of tuples in the given arrays must be  the same.
3206    *  \param [in] a1 - an array to include in the result array.
3207    *  \param [in] a2 - another array to include in the result array.
3208    *  \return DataArrayDouble * - the new instance of DataArrayDouble.
3209    *          The caller is to delete this result array using decrRef() as it is no more
3210    *          needed.
3211    *  \throw If both \a a1 and \a a2 are NULL.
3212    *  \throw If any given array is not allocated.
3213    *  \throw If \a a1->getNumberOfTuples() != \a a2->getNumberOfTuples()
3214    */
3215   template<class T>
3216   typename Traits<T>::ArrayType *DataArrayTemplateClassic<T>::Meld(const typename Traits<T>::ArrayType *a1, const typename Traits<T>::ArrayType *a2)
3217   {
3218     std::vector<const typename Traits<T>::ArrayType *> arr(2);
3219     arr[0]=a1; arr[1]=a2;
3220     return Meld(arr);
3221   }
3222
3223   /*!
3224    * Returns a new DataArrayDouble by aggregating all given arrays, so that (1) the number
3225    * of components in the result array is a sum of the number of components of given arrays
3226    * and (2) the number of tuples in the result array is same as that of each of given
3227    * arrays. In other words the i-th tuple of result array includes all components of
3228    * i-th tuples of all given arrays.
3229    * Number of tuples in the given arrays must be  the same.
3230    *  \param [in] arr - a sequence of arrays to include in the result array.
3231    *  \return DataArrayDouble * - the new instance of DataArrayDouble.
3232    *          The caller is to delete this result array using decrRef() as it is no more
3233    *          needed.
3234    *  \throw If all arrays within \a arr are NULL.
3235    *  \throw If any given array is not allocated.
3236    *  \throw If getNumberOfTuples() of arrays within \a arr is different.
3237    */
3238   template<class T>
3239   typename Traits<T>::ArrayType *DataArrayTemplateClassic<T>::Meld(const std::vector<const typename Traits<T>::ArrayType *>& arr)
3240   {
3241     std::vector<const typename Traits<T>::ArrayType *> a;
3242     for(typename std::vector<const typename Traits<T>::ArrayType *>::const_iterator it4=arr.begin();it4!=arr.end();it4++)
3243       if(*it4)
3244         a.push_back(*it4);
3245     if(a.empty())
3246       throw INTERP_KERNEL::Exception("DataArrayDouble::Meld : input list must contain at least one NON EMPTY DataArrayDouble !");
3247     typename std::vector<const typename Traits<T>::ArrayType *>::const_iterator it;
3248     for(it=a.begin();it!=a.end();it++)
3249       (*it)->checkAllocated();
3250     it=a.begin();
3251     mcIdType nbOfTuples((*it)->getNumberOfTuples());
3252     std::vector<std::size_t> nbc(a.size());
3253     std::vector<const T *> pts(a.size());
3254     nbc[0]=(*it)->getNumberOfComponents();
3255     pts[0]=(*it++)->getConstPointer();
3256     for(mcIdType i=1;it!=a.end();it++,i++)
3257       {
3258         if(nbOfTuples!=(*it)->getNumberOfTuples())
3259           throw INTERP_KERNEL::Exception("DataArrayDouble::Meld : mismatch of number of tuples !");
3260         nbc[i]=(*it)->getNumberOfComponents();
3261         pts[i]=(*it)->getConstPointer();
3262       }
3263     std::size_t totalNbOfComp=std::accumulate(nbc.begin(),nbc.end(),(std::size_t)0);
3264     typename Traits<T>::ArrayType *ret(Traits<T>::ArrayType::New());
3265     ret->alloc(nbOfTuples,totalNbOfComp);
3266     T *retPtr(ret->getPointer());
3267     for(mcIdType i=0;i<nbOfTuples;i++)
3268       for(std::size_t j=0;j<a.size();j++)
3269         {
3270           retPtr=std::copy(pts[j],pts[j]+nbc[j],retPtr);
3271           pts[j]+=nbc[j];
3272         }
3273     std::size_t k=0;
3274     for(std::size_t i=0;i<a.size();i++)
3275       for(std::size_t j=0;j<nbc[i];j++,k++)
3276         ret->setInfoOnComponent(k,a[i]->getInfoOnComponent(j));
3277     return ret;
3278   }
3279
3280   /*!
3281    * Returns a new DataArrayDouble holding the same values as \a this array but differently
3282    * arranged in memory. If \a this array holds 2 components of 3 values:
3283    * \f$ x_0,x_1,x_2,y_0,y_1,y_2 \f$, then the result array holds these values arranged
3284    * as follows: \f$ x_0,y_0,x_1,y_1,x_2,y_2 \f$.
3285    *  \warning Do not confuse this method with transpose()!
3286    *  \return DataArrayDouble * - the new instance of DataArrayDouble that the caller
3287    *          is to delete using decrRef() as it is no more needed.
3288    *  \throw If \a this is not allocated.
3289    */
3290   template<class T>
3291   typename Traits<T>::ArrayType *DataArrayTemplateClassic<T>::fromNoInterlace() const
3292   {
3293     if(this->_mem.isNull())
3294       throw INTERP_KERNEL::Exception("DataArrayDouble::fromNoInterlace : Not defined array !");
3295     T *tab(this->_mem.fromNoInterlace(this->getNumberOfComponents()));
3296     MCAuto<typename Traits<T>::ArrayType> ret(Traits<T>::ArrayType::New());
3297     ret->useArray(tab,true,DeallocType::C_DEALLOC,this->getNumberOfTuples(),this->getNumberOfComponents());
3298     return ret.retn();
3299   }
3300
3301   /*!
3302    * Returns a new DataArrayDouble holding the same values as \a this array but differently
3303    * arranged in memory. If \a this array holds 2 components of 3 values:
3304    * \f$ x_0,y_0,x_1,y_1,x_2,y_2 \f$, then the result array holds these values arranged
3305    * as follows: \f$ x_0,x_1,x_2,y_0,y_1,y_2 \f$.
3306    *  \warning Do not confuse this method with transpose()!
3307    *  \return DataArrayDouble * - the new instance of DataArrayDouble that the caller
3308    *          is to delete using decrRef() as it is no more needed.
3309    *  \throw If \a this is not allocated.
3310    */
3311   template<class T>
3312   typename Traits<T>::ArrayType *DataArrayTemplateClassic<T>::toNoInterlace() const
3313   {
3314     if(this->_mem.isNull())
3315       throw INTERP_KERNEL::Exception("DataArrayDouble::toNoInterlace : Not defined array !");
3316     T *tab(this->_mem.toNoInterlace(this->getNumberOfComponents()));
3317     MCAuto<typename Traits<T>::ArrayType> ret(Traits<T>::ArrayType::New());
3318     ret->useArray(tab,true,DeallocType::C_DEALLOC,this->getNumberOfTuples(),this->getNumberOfComponents());
3319     return ret.retn();
3320   }
3321
3322   /*!
3323    * Appends components of another array to components of \a this one, tuple by tuple.
3324    * So that the number of tuples of \a this array remains the same and the number of
3325    * components increases.
3326    *  \param [in] other - the DataArrayDouble to append to \a this one.
3327    *  \throw If \a this is not allocated.
3328    *  \throw If \a this and \a other arrays have different number of tuples.
3329    *
3330    *  \if ENABLE_EXAMPLES
3331    *  \ref cpp_mcdataarraydouble_meldwith "Here is a C++ example".
3332    *
3333    *  \ref py_mcdataarraydouble_meldwith "Here is a Python example".
3334    *  \endif
3335    */
3336   template<class T>
3337   void DataArrayTemplateClassic<T>::meldWith(const typename Traits<T>::ArrayType *other)
3338   {
3339     this->checkAllocated();
3340     other->checkAllocated();
3341     mcIdType nbOfTuples(this->getNumberOfTuples());
3342     if(nbOfTuples!=other->getNumberOfTuples())
3343       throw INTERP_KERNEL::Exception("DataArrayDouble::meldWith : mismatch of number of tuples !");
3344     std::size_t nbOfComp1=this->getNumberOfComponents();
3345     std::size_t nbOfComp2=other->getNumberOfComponents();
3346     T *newArr=(T *)malloc((nbOfTuples*(nbOfComp1+nbOfComp2))*sizeof(T));
3347     T *w=newArr;
3348     const T *inp1(this->begin()),*inp2(other->begin());
3349     for(mcIdType i=0;i<nbOfTuples;i++,inp1+=nbOfComp1,inp2+=nbOfComp2)
3350       {
3351         w=std::copy(inp1,inp1+nbOfComp1,w);
3352         w=std::copy(inp2,inp2+nbOfComp2,w);
3353       }
3354     this->useArray(newArr,true,DeallocType::C_DEALLOC,nbOfTuples,nbOfComp1+nbOfComp2);
3355     std::vector<std::size_t> compIds(nbOfComp2);
3356     for(std::size_t i=0;i<nbOfComp2;i++)
3357       compIds[i]=nbOfComp1+i;
3358     this->copyPartOfStringInfoFrom2(compIds,*other);
3359   }
3360
3361   /*!
3362    *
3363    * \param [in] nbTimes specifies the nb of times each tuples in \a this will be duplicated contiguouly in returned DataArrayDouble instance.
3364    *             \a nbTimes  should be at least equal to 1.
3365    * \return a newly allocated DataArrayDouble having one component and number of tuples equal to \a nbTimes * \c this->getNumberOfTuples.
3366    * \throw if \a this is not allocated or if \a this has not number of components set to one or if \a nbTimes is lower than 1.
3367    */
3368   template<class T>
3369   typename Traits<T>::ArrayType *DataArrayTemplateClassic<T>::duplicateEachTupleNTimes(mcIdType nbTimes) const
3370   {
3371     this->checkAllocated();
3372     if(this->getNumberOfComponents()!=1)
3373       throw INTERP_KERNEL::Exception("DataArrayDouble::duplicateEachTupleNTimes : this should have only one component !");
3374     if(nbTimes<1)
3375       throw INTERP_KERNEL::Exception("DataArrayDouble::duplicateEachTupleNTimes : nb times should be >= 1 !");
3376     mcIdType nbTuples=this->getNumberOfTuples();
3377     const T *inPtr(this->begin());
3378     MCAuto<typename Traits<T>::ArrayType> ret(Traits<T>::ArrayType::New()); ret->alloc(nbTimes*nbTuples,1);
3379     T *retPtr(ret->getPointer());
3380     for(mcIdType i=0;i<nbTuples;i++,inPtr++)
3381       {
3382         T val(*inPtr);
3383         for(mcIdType j=0;j<nbTimes;j++,retPtr++)
3384           *retPtr=val;
3385       }
3386     ret->copyStringInfoFrom(*this);
3387     return ret.retn();
3388   }
3389
3390   template<class T>
3391   void DataArrayTemplateClassic<T>::aggregate(const typename Traits<T>::ArrayType *other)
3392   {
3393     if(!other)
3394       throw INTERP_KERNEL::Exception("DataArrayDouble::aggregate : null pointer !");
3395     if(this->getNumberOfComponents()!=other->getNumberOfComponents())
3396       throw INTERP_KERNEL::Exception("DataArrayDouble::aggregate : mismatch number of components !");
3397     this->_mem.insertAtTheEnd(other->begin(),other->end());
3398   }
3399
3400   /*!
3401    * Converts every value of \a this array to its absolute value.
3402    * \b WARNING this method is non const. If a new DataArrayDouble instance should be built containing the result of abs DataArrayDouble::computeAbs
3403    * should be called instead.
3404    *
3405    * \throw If \a this is not allocated.
3406    * \sa DataArrayDouble::computeAbs
3407    */
3408   template<class T>
3409   void DataArrayTemplateClassic<T>::abs()
3410   {
3411     this->checkAllocated();
3412     T *ptr(this->getPointer());
3413     std::size_t nbOfElems(this->getNbOfElems());
3414     std::transform(ptr,ptr+nbOfElems,ptr,[](T c){return std::abs(c);});
3415     this->declareAsNew();
3416   }
3417
3418   /*!
3419    * This method builds a new instance of \a this object containing the result of std::abs applied of all elements in \a this.
3420    * This method is a const method (that do not change any values in \a this) contrary to  DataArrayDouble::abs method.
3421    *
3422    * \return DataArrayDouble * - the new instance of DataArrayDouble containing the
3423    *         same number of tuples and component as \a this array.
3424    *         The caller is to delete this result array using decrRef() as it is no more
3425    *         needed.
3426    * \throw If \a this is not allocated.
3427    * \sa DataArrayDouble::abs
3428    */
3429   template<class T>
3430   typename Traits<T>::ArrayType *DataArrayTemplateClassic<T>::computeAbs() const
3431   {
3432     this->checkAllocated();
3433     MCAuto<typename Traits<T>::ArrayType> newArr(Traits<T>::ArrayType::New());
3434     mcIdType nbOfTuples(this->getNumberOfTuples());
3435     std::size_t nbOfComp(this->getNumberOfComponents());
3436     newArr->alloc(nbOfTuples,nbOfComp);
3437     std::transform(this->begin(),this->end(),newArr->getPointer(),[](T c){return std::abs(c);});
3438     newArr->copyStringInfoFrom(*this);
3439     return newArr.retn();
3440   }
3441
3442   /*!
3443    * Returns either a \a deep or \a shallow copy of this array. For more info see
3444    * \ref MEDCouplingArrayBasicsCopyDeep and \ref MEDCouplingArrayBasicsCopyShallow.
3445    *  \param [in] dCpy - if \a true, a deep copy is returned, else, a shallow one.
3446    *  \return DataArrayDouble * - either a new instance of DataArrayDouble (if \a dCpy
3447    *          == \a true) or \a this instance (if \a dCpy == \a false).
3448    */
3449   template<class T>
3450   typename Traits<T>::ArrayType *DataArrayTemplateClassic<T>::performCopyOrIncrRef(bool dCpy) const
3451   {
3452     const typename Traits<T>::ArrayType *thisC(static_cast<const typename Traits<T>::ArrayType *>(this));
3453     return DataArrayTemplateClassic<T>::PerformCopyOrIncrRef(dCpy,*thisC);
3454   }
3455
3456   /*!
3457    * Computes for each tuple the sum of number of components values in the tuple and return it.
3458    *
3459    * \return DataArrayDouble * - the new instance of DataArrayDouble containing the
3460    *          same number of tuples as \a this array and one component.
3461    *          The caller is to delete this result array using decrRef() as it is no more
3462    *          needed.
3463    *  \throw If \a this is not allocated.
3464    */
3465   template<class T>
3466   typename Traits<T>::ArrayType *DataArrayTemplateClassic<T>::sumPerTuple() const
3467   {
3468     this->checkAllocated();
3469     std::size_t nbOfComp(this->getNumberOfComponents());
3470     mcIdType nbOfTuple(this->getNumberOfTuples());
3471     MCAuto<typename Traits<T>::ArrayType> ret(Traits<T>::ArrayType::New());
3472     ret->alloc(nbOfTuple,1);
3473     const T *src(this->begin());
3474     T *dest(ret->getPointer());
3475     for(mcIdType i=0;i<nbOfTuple;i++,dest++,src+=nbOfComp)
3476       *dest=std::accumulate(src,src+nbOfComp,(T)0);
3477     return ret.retn();
3478   }
3479
3480   /*!
3481    * Set all values in \a this array so that the i-th element equals to \a init + i
3482    * (i starts from zero). To know more on filling arrays see \ref MEDCouplingArrayFill.
3483    *  \param [in] init - value to assign to the first element of array.
3484    *  \throw If \a this->getNumberOfComponents() != 1
3485    *  \throw If \a this is not allocated.
3486    */
3487   template<class T>
3488   void DataArrayTemplateClassic<T>::iota(T init)
3489   {
3490     this->checkAllocated();
3491     if(this->getNumberOfComponents()!=1)
3492       throw INTERP_KERNEL::Exception("DataArrayDouble::iota : works only for arrays with only one component, you can call 'rearrange' method before !");
3493     T *ptr(this->getPointer());
3494     mcIdType ntuples(this->getNumberOfTuples());
3495     for(mcIdType i=0;i<ntuples;i++)
3496       ptr[i]=init+(T)i;
3497     this->declareAsNew();
3498   }
3499
3500   template<class T>
3501   struct ImplReprTraits { static void SetPrecision(std::ostream& oss) { } };
3502
3503   template<>
3504   struct ImplReprTraits<double> {  static void SetPrecision(std::ostream& oss) { oss.precision(17); } };
3505
3506   template<>
3507   struct ImplReprTraits<float> {  static void SetPrecision(std::ostream& oss) { oss.precision(7); } };
3508
3509   template<class T>
3510   void DataArrayTemplateClassic<T>::reprStream(std::ostream& stream) const
3511   {
3512     stream << "Name of " << Traits<T>::ReprStr << " array : \"" << this->_name << "\"\n";
3513     reprWithoutNameStream(stream);
3514   }
3515
3516   template<class T>
3517   void DataArrayTemplateClassic<T>::reprZipStream(std::ostream& stream) const
3518   {
3519     stream << "Name of " << Traits<T>::ReprStr << " array : \"" << this->_name << "\"\n";
3520     reprZipWithoutNameStream(stream);
3521   }
3522
3523   template<class T>
3524   void DataArrayTemplateClassic<T>::reprNotTooLongStream(std::ostream& stream) const
3525   {
3526     stream << "Name of "<< Traits<T>::ReprStr << " array : \"" << this->_name << "\"\n";
3527     reprNotTooLongWithoutNameStream(stream);
3528   }
3529
3530   template<class T>
3531   void DataArrayTemplateClassic<T>::reprWithoutNameStream(std::ostream& stream) const
3532   {
3533     DataArray::reprWithoutNameStream(stream);
3534     ImplReprTraits<T>::SetPrecision(stream);
3535     this->_mem.repr(ToIdType(this->getNumberOfComponents()),stream);
3536   }
3537
3538   template<class T>
3539   void DataArrayTemplateClassic<T>::reprZipWithoutNameStream(std::ostream& stream) const
3540   {
3541     DataArray::reprWithoutNameStream(stream);
3542     ImplReprTraits<T>::SetPrecision(stream);
3543     this->_mem.reprZip(ToIdType(this->getNumberOfComponents()),stream);
3544   }
3545
3546   template<class T>
3547   void DataArrayTemplateClassic<T>::reprNotTooLongWithoutNameStream(std::ostream& stream) const
3548   {
3549     DataArray::reprWithoutNameStream(stream);
3550     ImplReprTraits<T>::SetPrecision(stream);
3551     this->_mem.reprNotTooLong(ToIdType(this->getNumberOfComponents()),stream);
3552   }
3553
3554   /*!
3555    * This method is close to repr method except that when \a this has more than 1000 tuples, all tuples are not
3556    * printed out to avoid to consume too much space in interpretor.
3557    * \sa repr
3558    */
3559   template<class T>
3560   std::string DataArrayTemplateClassic<T>::reprNotTooLong() const
3561   {
3562     std::ostringstream ret;
3563     reprNotTooLongStream(ret);
3564     return ret.str();
3565   }
3566
3567   /*!
3568    * Returns a textual and human readable representation of \a this instance of
3569    * DataArrayInt. This text is shown when a DataArrayInt is printed in Python.
3570    * \return std::string - text describing \a this DataArrayInt.
3571    *
3572    * \sa reprNotTooLong, reprZip
3573    */
3574   template<class T>
3575   std::string DataArrayTemplateClassic<T>::repr() const
3576   {
3577     std::ostringstream ret;
3578     DataArrayTemplateClassic<T>::reprStream(ret);
3579     return ret.str();
3580   }
3581
3582   template<class T>
3583   std::string DataArrayTemplateClassic<T>::reprZip() const
3584   {
3585     std::ostringstream ret;
3586     DataArrayTemplateClassic<T>::reprZipStream(ret);
3587     return ret.str();
3588   }
3589
3590   /////////////////////////////////
3591
3592   /*!
3593    * Checks if all values in \a this array are equal to \a val at precision \a eps.
3594    *  \param [in] val - value to check equality of array values to.
3595    *  \param [in] eps - precision to check the equality.
3596    *  \return bool - \a true if all values are in range (_val_ - _eps_; _val_ + _eps_),
3597    *                 \a false else.
3598    *  \throw If \a this->getNumberOfComponents() != 1
3599    *  \throw If \a this is not allocated.
3600    */
3601   template<class T>
3602   bool DataArrayTemplateFP<T>::isUniform(T val, T eps) const
3603   {
3604     this->checkAllocated();
3605     if(this->getNumberOfComponents()!=1)
3606       throw INTERP_KERNEL::Exception("DataArrayDouble::isUniform : must be applied on DataArrayDouble with only one component, you can call 'rearrange' method before !");
3607     const T *w(this->begin()),*end2(this->end());
3608     const T vmin(val-eps),vmax(val+eps);
3609     for(;w!=end2;w++)
3610       if(*w<vmin || *w>vmax)
3611         return false;
3612     return true;
3613   }
3614
3615   /////////////////////////////////
3616
3617   /*!
3618    * Returns the only one value in \a this, if and only if number of elements
3619    * (nb of tuples * nb of components) is equal to 1, and that \a this is allocated.
3620    *  \return double - the sole value stored in \a this array.
3621    *  \throw If at least one of conditions stated above is not fulfilled.
3622    */
3623   template <class T>
3624   T DataArrayDiscrete<T>::intValue() const
3625   {
3626     if(this->isAllocated())
3627       {
3628         if(this->getNbOfElems()==1)
3629           {
3630             return *this->getConstPointer();
3631           }
3632         else
3633           throw INTERP_KERNEL::Exception("DataArrayInt::intValue : DataArrayInt instance is allocated but number of elements is not equal to 1 !");
3634       }
3635     else
3636       throw INTERP_KERNEL::Exception("DataArrayInt::intValue : DataArrayInt instance is not allocated !");
3637   }
3638
3639   /*!
3640    * Equivalent to DataArrayInt::isEqual except that if false the reason of
3641    * mismatch is given.
3642    *
3643    * \param [in] other the instance to be compared with \a this
3644    * \param [out] reason In case of inequality returns the reason.
3645    * \sa DataArrayInt::isEqual
3646    */
3647   template<class T>
3648   bool DataArrayDiscrete<T>::isEqualIfNotWhy(const DataArrayDiscrete<T>& other, std::string& reason) const
3649   {
3650     if(!this->areInfoEqualsIfNotWhy(other,reason))
3651       return false;
3652     return this->_mem.isEqual(other._mem,0,reason);
3653   }
3654
3655   /*!
3656    * Checks if \a this and another DataArrayInt are fully equal. For more info see
3657    * \ref MEDCouplingArrayBasicsCompare.
3658    *  \param [in] other - an instance of DataArrayInt to compare with \a this one.
3659    *  \return bool - \a true if the two arrays are equal, \a false else.
3660    */
3661   template<class T>
3662   bool DataArrayDiscrete<T>::isEqual(const DataArrayDiscrete<T>& other) const
3663   {
3664     std::string tmp;
3665     return isEqualIfNotWhy(other,tmp);
3666   }
3667
3668   /*!
3669    * Returns a new instance of DataArrayInt. The caller is to delete this array
3670    * using decrRef() as it is no more needed.
3671    */
3672   template<class T>
3673   typename Traits<T>::ArrayType *DataArrayDiscrete<T>::New()
3674   {
3675     return new typename Traits<T>::ArrayType;
3676   }
3677
3678   /*!
3679    * Checks if values of \a this and another DataArrayInt are equal. For more info see
3680    * \ref MEDCouplingArrayBasicsCompare.
3681    *  \param [in] other - an instance of DataArrayInt to compare with \a this one.
3682    *  \return bool - \a true if the values of two arrays are equal, \a false else.
3683    */
3684   template<class T>
3685   bool DataArrayDiscrete<T>::isEqualWithoutConsideringStr(const DataArrayDiscrete<T>& other) const
3686   {
3687     std::string tmp;
3688     return this->_mem.isEqual(other._mem,0,tmp);
3689   }
3690
3691   /*!
3692    * Checks if values of \a this and another DataArrayInt are equal. Comparison is
3693    * performed on sorted value sequences.
3694    * For more info see\ref MEDCouplingArrayBasicsCompare.
3695    *  \param [in] other - an instance of DataArrayInt to compare with \a this one.
3696    *  \return bool - \a true if the sorted values of two arrays are equal, \a false else.
3697    */
3698   template<class T>
3699   bool DataArrayDiscrete<T>::isEqualWithoutConsideringStrAndOrder(const typename Traits<T>::ArrayType& other) const
3700   {
3701     MCAuto<typename Traits<T>::ArrayType> a((static_cast<const typename Traits<T>::ArrayType *>(this))->deepCopy());
3702     MCAuto<typename Traits<T>::ArrayType> b((static_cast<const typename Traits<T>::ArrayType *>(&other))->deepCopy());
3703     a->sort();
3704     b->sort();
3705     return a->isEqualWithoutConsideringStr(*b);
3706   }
3707
3708   template<class T>
3709   template<class ALG>
3710   void DataArrayDiscrete<T>::switchOnTupleAlg(T val, std::vector<bool>& vec, ALG algo) const
3711   {
3712     this->checkAllocated();
3713     if(this->getNumberOfComponents()!=1)
3714       throw INTERP_KERNEL::Exception("DataArrayInt::switchOnTupleEqualTo : number of components of this should be equal to one !");
3715     mcIdType nbOfTuples(this->getNumberOfTuples());
3716     if(nbOfTuples!=ToIdType(vec.size()))
3717       throw INTERP_KERNEL::Exception("DataArrayInt::switchOnTupleEqualTo : number of tuples of this should be equal to size of input vector of bool !");
3718     const T *pt(this->begin());
3719     for(mcIdType i=0;i<nbOfTuples;i++)
3720       if(algo(pt[i],val))
3721         vec[i]=true;
3722   }
3723
3724   /*!
3725    * This method assumes that \a this has one component and is allocated. This method scans all tuples in \a this and for all tuple equal to \a val
3726    * put True to the corresponding entry in \a vec.
3727    * \a vec is expected to be with the same size than the number of tuples of \a this.
3728    *
3729    *  \sa DataArrayInt::switchOnTupleNotEqualTo.
3730    */
3731   template<class T>
3732   void DataArrayDiscrete<T>::switchOnTupleEqualTo(T val, std::vector<bool>& vec) const
3733   {
3734     switchOnTupleAlg(val,vec,std::equal_to<T>());
3735   }
3736
3737   /*!
3738    * This method assumes that \a this has one component and is allocated. This method scans all tuples in \a this and for all tuple different from \a val
3739    * put True to the corresponding entry in \a vec.
3740    * \a vec is expected to be with the same size than the number of tuples of \a this.
3741    *
3742    *  \sa DataArrayInt::switchOnTupleEqualTo.
3743    */
3744   template<class T>
3745   void DataArrayDiscrete<T>::switchOnTupleNotEqualTo(T val, std::vector<bool>& vec) const
3746   {
3747     switchOnTupleAlg(val,vec,std::not_equal_to<T>());
3748   }
3749
3750   /*!
3751    * Compute for each element in \a this the occurence rank of that element. This method is typically useful of one-component array having a same element
3752    * appearing several times. If each element in \a this appears once an 1 component array containing only 0 will be returned.
3753    *
3754    * \b Example:
3755    * - \a this : [5, 3, 2, 1, 4, 5, 2, 1, 0, 11, 5, 4]
3756    * - \a return is : [0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 2, 1] because at pos #0 of \a this (ie value 5) is the first occurrence ->0. At pos #10 of \a this (ie value 5 also) is the third occurrence of 5 -> 2.
3757    *
3758    * \return DataArrayInt * - a new instance of DataArrayInt with same number of tuples than \a this. The caller is to delete this
3759    *          array using decrRef() as it is no more needed.
3760    * \throw If either this not allocated or not with one component.
3761    *
3762    * \sa DataArrayInt::FindPermutationFromFirstToSecond
3763    */
3764   template<class T>
3765   DataArrayIdType *DataArrayDiscrete<T>::occurenceRankInThis() const
3766   {
3767     constexpr char MSG0[] = "occurenceRankInThis :";
3768     this->checkAllocated();
3769     this->checkNbOfComps(1,MSG0);
3770     MCAuto<DataArrayIdType> ret(DataArrayIdType::New());
3771     ret->alloc(this->getNumberOfTuples(),1);
3772     mcIdType *retPtr(ret->getPointer());
3773     std::map<T,mcIdType> m;
3774     for(const T *pt = this->begin() ; pt != this->end() ; ++pt, ++retPtr )
3775     {
3776       auto it = m.find(*pt);
3777       if( it == m.end() )
3778       {
3779         *retPtr = 0;
3780         m[*pt] = 1;
3781       }
3782       else
3783       {
3784         *retPtr = (*it).second++;
3785       }
3786     }
3787     return ret.retn();
3788   }
3789
3790   /*!
3791    * Creates a new one-dimensional DataArrayInt of the same size as \a this and a given
3792    * one-dimensional arrays that must be of the same length. The result array describes
3793    * correspondence between \a this and \a other arrays, so that
3794    * <em> other.getIJ(i,0) == this->getIJ(ret->getIJ(i),0)</em>. If such a permutation is
3795    * not possible because some element in \a other is not in \a this, an exception is thrown.
3796    *  \param [in] other - an array to compute permutation to.
3797    *  \return DataArrayInt * - a new instance of DataArrayInt, which is a permutation array
3798    * from \a this to \a other. The caller is to delete this array using decrRef() as it is
3799    * no more needed.
3800    *  \throw If \a this->getNumberOfComponents() != 1.
3801    *  \throw If \a other->getNumberOfComponents() != 1.
3802    *  \throw If \a this->getNumberOfTuples() != \a other->getNumberOfTuples().
3803    *  \throw If \a other includes a value which is not in \a this array.
3804    *
3805    *  \if ENABLE_EXAMPLES
3806    *  \ref cpp_mcdataarrayint_buildpermutationarr "Here is a C++ example".
3807    *
3808    *  \ref py_mcdataarrayint_buildpermutationarr "Here is a Python example".
3809    *  \endif
3810    */
3811   template<class T>
3812   DataArrayIdType *DataArrayDiscrete<T>::buildPermutationArr(const DataArrayDiscrete<T>& other) const
3813   {
3814     this->checkAllocated();
3815     if(this->getNumberOfComponents()!=1 || other.getNumberOfComponents()!=1)
3816       throw INTERP_KERNEL::Exception("DataArrayInt::buildPermutationArr : 'this' and 'other' have to have exactly ONE component !");
3817     mcIdType nbTuple(this->getNumberOfTuples());
3818     other.checkAllocated();
3819     if(nbTuple!=other.getNumberOfTuples())
3820       throw INTERP_KERNEL::Exception("DataArrayInt::buildPermutationArr : 'this' and 'other' must have the same number of tuple !");
3821     MCAuto<DataArrayIdType> ret(DataArrayIdType::New());
3822     ret->alloc(nbTuple,1);
3823     ret->fillWithValue(-1);
3824     const T *pt(this->begin());
3825     std::map<mcIdType,mcIdType> mm;
3826     for(mcIdType i=0;i<nbTuple;i++)
3827       mm[ToIdType(pt[i])]=i;
3828     pt=other.begin();
3829     mcIdType *retToFill(ret->getPointer());
3830     for(mcIdType i=0;i<nbTuple;i++)
3831       {
3832         std::map<mcIdType,mcIdType>::const_iterator it=mm.find(ToIdType(pt[i]));
3833         if(it==mm.end())
3834           {
3835             std::ostringstream oss; oss << "DataArrayInt::buildPermutationArr : Arrays mismatch : element (" << pt[i] << ") in 'other' not findable in 'this' !";
3836             throw INTERP_KERNEL::Exception(oss.str().c_str());
3837           }
3838         retToFill[i]=(*it).second;
3839       }
3840     return ret.retn();
3841   }
3842
3843   /*!
3844    * Elements of \a partOfThis are expected to be included in \a this.
3845    * The returned array \a ret is so that this[ret]==partOfThis
3846    *
3847    * For example, if \a this array contents are [9,10,0,6,4,11,3,8] and if \a partOfThis contains [6,0,11,8]
3848    * the return array will contain [3,2,5,7].
3849    *
3850    * \a this is expected to be a 1 compo allocated array.
3851    * \param [in] partOfThis - A 1 compo allocated array
3852    * \return - A newly allocated array to be dealed by caller having the same number of tuples than \a partOfThis.
3853    * \throw if two same element is present twice in \a this
3854    * \throw if an element in \a partOfThis is \b NOT in \a this.
3855    */
3856   template<class T>
3857   DataArrayIdType *DataArrayDiscrete<T>::indicesOfSubPart(const DataArrayDiscrete<T>& partOfThis) const
3858   {
3859     if(this->getNumberOfComponents()!=1 || partOfThis.getNumberOfComponents()!=1)
3860       throw INTERP_KERNEL::Exception("DataArrayInt::indicesOfSubPart : this and input array must be one component array !");
3861     this->checkAllocated(); partOfThis.checkAllocated();
3862     mcIdType thisNbTuples(this->getNumberOfTuples()),nbTuples(partOfThis.getNumberOfTuples());
3863     const T *thisPt(this->begin()),*pt(partOfThis.begin());
3864     MCAuto<DataArrayIdType> ret(DataArrayIdType::New());
3865     ret->alloc(nbTuples,1);
3866     mcIdType *retPt(ret->getPointer());
3867     std::map<mcIdType,mcIdType> m;
3868     for(mcIdType i=0;i<thisNbTuples;i++,thisPt++)
3869       m[ToIdType(*thisPt)]=i;
3870     if(ToIdType(m.size())!=thisNbTuples)
3871       throw INTERP_KERNEL::Exception("DataArrayInt::indicesOfSubPart : some elements appears more than once !");
3872     for(mcIdType i=0;i<nbTuples;i++,retPt++,pt++)
3873       {
3874         std::map<mcIdType,mcIdType>::const_iterator it(m.find(ToIdType(*pt)));
3875         if(it!=m.end())
3876           *retPt=(*it).second;
3877         else
3878           {
3879             std::ostringstream oss; oss << "DataArrayInt::indicesOfSubPart : At pos #" << i << " of input array value is " << *pt << " not in this !";
3880             throw INTERP_KERNEL::Exception(oss.str());
3881           }
3882       }
3883     return ret.retn();
3884   }
3885
3886   /*!
3887    * Checks that \a this array is consistently **increasing** or **decreasing** in value.
3888    * If not an exception is thrown.
3889    *  \param [in] increasing - if \a true, the array values should be increasing.
3890    *  \throw If sequence of values is not strictly monotonic in agreement with \a
3891    *         increasing arg.
3892    *  \throw If \a this->getNumberOfComponents() != 1.
3893    *  \throw If \a this is not allocated.
3894    */
3895   template<class T>
3896   void DataArrayDiscrete<T>::checkMonotonic(bool increasing) const
3897   {
3898     if(!isMonotonic(increasing))
3899       {
3900         if (increasing)
3901           throw INTERP_KERNEL::Exception("DataArrayInt::checkMonotonic : 'this' is not INCREASING monotonic !");
3902         else
3903           throw INTERP_KERNEL::Exception("DataArrayInt::checkMonotonic : 'this' is not DECREASING monotonic !");
3904       }
3905   }
3906
3907   /*!
3908    * Checks that \a this array is consistently **increasing** or **decreasing** in value.
3909    *  \param [in] increasing - if \a true, array values should be increasing.
3910    *  \return bool - \a true if values change in accordance with \a increasing arg.
3911    *  \throw If \a this->getNumberOfComponents() != 1.
3912    *  \throw If \a this is not allocated.
3913    */
3914   template<class T>
3915   bool DataArrayDiscrete<T>::isMonotonic(bool increasing) const
3916   {
3917     this->checkAllocated();
3918     if(this->getNumberOfComponents()!=1)
3919       throw INTERP_KERNEL::Exception("DataArrayInt::isMonotonic : only supported with 'this' array with ONE component !");
3920     std::size_t nbOfElements(this->getNumberOfTuples());
3921     const T *ptr(this->begin());
3922     if(nbOfElements==0)
3923       return true;
3924     T ref(ptr[0]);
3925     if(increasing)
3926       {
3927         for(std::size_t i=1;i<nbOfElements;i++)
3928           {
3929             if(ptr[i]>=ref)
3930               ref=ptr[i];
3931             else
3932               return false;
3933           }
3934       }
3935     else
3936       {
3937         for(std::size_t i=1;i<nbOfElements;i++)
3938           {
3939             if(ptr[i]<=ref)
3940               ref=ptr[i];
3941             else
3942               return false;
3943           }
3944       }
3945     return true;
3946   }
3947
3948   /*!
3949    * This method check that array consistently INCREASING or DECREASING in value.
3950    */
3951   template<class T>
3952   bool DataArrayDiscrete<T>::isStrictlyMonotonic(bool increasing) const
3953   {
3954     this->checkAllocated();
3955     if(this->getNumberOfComponents()!=1)
3956       throw INTERP_KERNEL::Exception("DataArrayInt::isStrictlyMonotonic : only supported with 'this' array with ONE component !");
3957     std::size_t nbOfElements(this->getNumberOfTuples());
3958     const T *ptr(this->begin());
3959     if(nbOfElements==0)
3960       return true;
3961     T ref(ptr[0]);
3962     if(increasing)
3963       {
3964         for(std::size_t i=1;i<nbOfElements;i++)
3965           {
3966             if(ptr[i]>ref)
3967               ref=ptr[i];
3968             else
3969               return false;
3970           }
3971       }
3972     else
3973       {
3974         for(std::size_t i=1;i<nbOfElements;i++)
3975           {
3976             if(ptr[i]<ref)
3977               ref=ptr[i];
3978             else
3979               return false;
3980           }
3981       }
3982     return true;
3983   }
3984
3985   /*!
3986    * This method check that array consistently INCREASING or DECREASING in value.
3987    */
3988   template<class T>
3989   void DataArrayDiscrete<T>::checkStrictlyMonotonic(bool increasing) const
3990   {
3991     if(!isStrictlyMonotonic(increasing))
3992       {
3993         if (increasing)
3994           throw INTERP_KERNEL::Exception("DataArrayInt::checkStrictlyMonotonic : 'this' is not strictly INCREASING monotonic !");
3995         else
3996           throw INTERP_KERNEL::Exception("DataArrayInt::checkStrictlyMonotonic : 'this' is not strictly DECREASING monotonic !");
3997       }
3998   }
3999
4000   /*!
4001    * Returns an integer value characterizing \a this array, which is useful for a quick
4002    * comparison of many instances of DataArrayInt.
4003    *  \return mcIdType - the hash value.
4004    *  \throw If \a this is not allocated.
4005    */
4006   template<class T>
4007   mcIdType DataArrayDiscrete<T>::getHashCode() const
4008   {
4009     this->checkAllocated();
4010     mcIdType nbOfElems=ToIdType(this->getNbOfElems());
4011     mcIdType ret=nbOfElems*65536;
4012     mcIdType delta=3;
4013     if(nbOfElems>48)
4014       delta=nbOfElems/8;
4015     T ret0(0);
4016     const T *pt(this->begin());
4017     for(mcIdType i=0;i<nbOfElems;i+=delta)
4018       ret0+=pt[i] & 0x1FFF;
4019     return ToIdType(ret+ret0);
4020   }
4021
4022   template<class T>
4023   void DataArrayDiscrete<T>::reprCppStream(const std::string& varName, std::ostream& stream) const
4024   {
4025     mcIdType nbTuples(this->getNumberOfTuples());
4026     std::size_t nbComp(this->getNumberOfComponents());
4027     const T *data(this->getConstPointer());
4028     stream << Traits<T>::ArrayTypeName << " *" << varName << "=" << Traits<T>::ArrayTypeName << "::New();" << std::endl;
4029     if(nbTuples*nbComp>=1)
4030       {
4031         stream << "const mcIdType " << varName << "Data[" << nbTuples*nbComp << "]={";
4032         std::copy(data,data+nbTuples*nbComp-1,std::ostream_iterator<T>(stream,","));
4033         stream << data[nbTuples*nbComp-1] << "};" << std::endl;
4034         stream << varName << "->useArray(" << varName << "Data,false,CPP_DEALLOC," << nbTuples << "," << nbComp << ");" << std::endl;
4035       }
4036     else
4037       stream << varName << "->alloc(" << nbTuples << "," << nbComp << ");" << std::endl;
4038     stream << varName << "->setName(\"" << this->getName() << "\");" << std::endl;
4039   }
4040
4041   /*!
4042    * Method that gives a quick overvien of \a this for python.
4043    */
4044   template<class T>
4045   void DataArrayDiscrete<T>::reprQuickOverview(std::ostream& stream) const
4046   {
4047     static const std::size_t MAX_NB_OF_BYTE_IN_REPR=300;
4048     stream << Traits<T>::ArrayTypeName << " C++ instance at " << this << ". ";
4049     if(this->isAllocated())
4050       {
4051         std::size_t nbOfCompo(this->getNumberOfComponents());
4052         if(nbOfCompo>=1)
4053           {
4054             mcIdType nbOfTuples(this->getNumberOfTuples());
4055             stream << "Number of tuples : " << nbOfTuples << ". Number of components : " << nbOfCompo << "." << std::endl;
4056             reprQuickOverviewData(stream,MAX_NB_OF_BYTE_IN_REPR);
4057           }
4058         else
4059           stream << "Number of components : 0.";
4060       }
4061     else
4062       stream << "*** No data allocated ****";
4063   }
4064
4065   template<class T>
4066   void DataArrayDiscrete<T>::reprQuickOverviewData(std::ostream& stream, std::size_t maxNbOfByteInRepr) const
4067   {
4068     const T *data(this->begin());
4069     mcIdType nbOfTuples(this->getNumberOfTuples());
4070     std::size_t nbOfCompo(this->getNumberOfComponents());
4071     std::ostringstream oss2; oss2 << "[";
4072     std::string oss2Str(oss2.str());
4073     bool isFinished=true;
4074     for(mcIdType i=0;i<nbOfTuples && isFinished;i++)
4075       {
4076         if(nbOfCompo>1)
4077           {
4078             oss2 << "(";
4079             for(std::size_t j=0;j<nbOfCompo;j++,data++)
4080               {
4081                 oss2 << *data;
4082                 if(j!=nbOfCompo-1) oss2 << ", ";
4083               }
4084             oss2 << ")";
4085           }
4086         else
4087           oss2 << *data++;
4088         if(i!=nbOfTuples-1) oss2 << ", ";
4089         std::string oss3Str(oss2.str());
4090         if(oss3Str.length()<maxNbOfByteInRepr)
4091           oss2Str=oss3Str;
4092         else
4093           isFinished=false;
4094       }
4095     stream << oss2Str;
4096     if(!isFinished)
4097       stream << "... ";
4098     stream << "]";
4099   }
4100
4101   template<class T>
4102   void DataArrayDiscrete<T>::writeVTK(std::ostream& ofs, mcIdType indent, const std::string& type, const std::string& nameInFile, DataArrayByte *byteArr) const
4103   {
4104     static const char SPACE[4]={' ',' ',' ',' '};
4105     this->checkAllocated();
4106     std::string idt(indent,' ');
4107     ofs << idt << "<DataArray type=\"" << type << "\" Name=\"" << nameInFile << "\" NumberOfComponents=\"" << this->getNumberOfComponents() << "\"";
4108     if(byteArr)
4109       {
4110         ofs << " format=\"appended\" offset=\"" << byteArr->getNumberOfTuples() << "\">";
4111         if(std::string(type)==Traits<T>::VTKReprStr)
4112           {
4113             const char *data(reinterpret_cast<const char *>(this->begin()));
4114             std::size_t sz(this->getNbOfElems()*sizeof(T));
4115             byteArr->insertAtTheEnd(data,data+sz);
4116             byteArr->insertAtTheEnd(SPACE,SPACE+4);
4117           }
4118         else if(std::string(type)=="Int8")
4119           {
4120             INTERP_KERNEL::AutoPtr<char> tmp(new char[this->getNbOfElems()]);
4121             copyCast(this->begin(),this->end(),(char *)tmp);
4122             byteArr->insertAtTheEnd((char *)tmp,(char *)tmp+this->getNbOfElems());
4123             byteArr->insertAtTheEnd(SPACE,SPACE+4);
4124           }
4125         else if(std::string(type)=="UInt8")
4126           {
4127             INTERP_KERNEL::AutoPtr<unsigned char> tmp(new unsigned char[this->getNbOfElems()]);
4128             copyCast(this->begin(),this->end(),(unsigned char *)tmp);
4129             byteArr->insertAtTheEnd((unsigned char *)tmp,(unsigned char *)tmp+this->getNbOfElems());
4130             byteArr->insertAtTheEnd(SPACE,SPACE+4);
4131           }
4132         else
4133           {
4134             std::ostringstream oss;
4135             oss << Traits<T>::ArrayTypeName << "::writeVTK : Only " << Traits<T>::VTKReprStr << ", Int8 and UInt8 supported !";
4136             throw INTERP_KERNEL::Exception(oss.str());
4137           }
4138       }
4139     else
4140       {
4141         ofs << " RangeMin=\"" << this->getMinValueInArray() << "\" RangeMax=\"" << this->getMaxValueInArray() << "\" format=\"ascii\">\n" << idt;
4142         std::copy(this->begin(),this->end(),std::ostream_iterator<T>(ofs," "));
4143       }
4144       ofs << std::endl << idt << "</DataArray>\n";
4145   }
4146
4147   /*!
4148    * Modifies in place \a this one-dimensional array so that each value \a v = \a indArrBg[ \a v ],
4149    * i.e. a current value is used as in index to get a new value from \a indArrBg.
4150    *  \param [in] indArrBg - pointer to the first element of array of new values to assign
4151    *         to \a this array.
4152    *  \param [in] indArrEnd - specifies the end of the array \a indArrBg, so that
4153    *              the last value of \a indArrBg is \a indArrEnd[ -1 ].
4154    *  \throw If \a this->getNumberOfComponents() != 1
4155    *  \throw If any value of \a this can't be used as a valid index for
4156    *         [\a indArrBg, \a indArrEnd).
4157    *
4158    *  \sa changeValue, findIdForEach
4159    */
4160   template<class T>
4161   void DataArrayDiscrete<T>::transformWithIndArr(const T *indArrBg, const T *indArrEnd)
4162   {
4163     this->checkAllocated();
4164     if(this->getNumberOfComponents()!=1)
4165       throw INTERP_KERNEL::Exception("Call transformWithIndArr method on DataArrayInt with only one component, you can call 'rearrange' method before !");
4166     mcIdType nbElemsIn=ToIdType(std::distance(indArrBg,indArrEnd));
4167     mcIdType nbOfTuples(this->getNumberOfTuples());
4168     T *pt(this->getPointer());
4169     for(mcIdType i=0;i<nbOfTuples;i++,pt++)
4170       {
4171         if(*pt>=0 && *pt<nbElemsIn)
4172           *pt=indArrBg[*pt];
4173         else
4174           {
4175             std::ostringstream oss; oss << "DataArrayInt::transformWithIndArr : error on tuple #" << i << " of this value is " << *pt << ", should be in [0," << nbElemsIn << ") !";
4176             throw INTERP_KERNEL::Exception(oss.str());
4177           }
4178       }
4179     this->declareAsNew();
4180   }
4181
4182   template<class T>
4183   void DataArrayDiscrete<T>::transformWithIndArr(const MapKeyVal<T, T>& m)
4184   {
4185     this->checkAllocated();
4186     if(this->getNumberOfComponents()!=1)
4187       throw INTERP_KERNEL::Exception("Call transformWithIndArr method on DataArrayInt with only one component, you can call 'rearrange' method before !");
4188     const typename std::map<T,T>& dat(m.data());
4189     mcIdType nbOfTuples(this->getNumberOfTuples());
4190     T *pt(this->getPointer());
4191     for(mcIdType i=0;i<nbOfTuples;i++,pt++)
4192       {
4193         typename std::map<T,T>::const_iterator it(dat.find(*pt));
4194         if(it!=dat.end())
4195           *pt=(*it).second;
4196         else
4197           {
4198             std::ostringstream oss; oss << "DataArrayInt::transformWithIndArr : error on tuple #" << i << " of this value is " << *pt << " not in map !";
4199             throw INTERP_KERNEL::Exception(oss.str());
4200           }
4201       }
4202     this->declareAsNew();
4203   }
4204
4205   /*!
4206    * Creates a new DataArrayInt containing IDs (indices) of tuples holding value equal to a
4207    * given one. The ids are sorted in the ascending order.
4208    *  \param [in] val - the value to find within \a this.
4209    *  \return DataArrayInt * - a new instance of DataArrayInt. The caller is to delete this
4210    *          array using decrRef() as it is no more needed.
4211    *  \throw If \a this is not allocated.
4212    *  \throw If \a this->getNumberOfComponents() != 1.
4213    *  \sa DataArrayInt::findIdsEqualTuple
4214    */
4215   template<class T>
4216   DataArrayIdType *DataArrayDiscrete<T>::findIdsEqual(T val) const
4217   {
4218     this->checkAllocated();
4219     if(this->getNumberOfComponents()!=1)
4220       throw INTERP_KERNEL::Exception("DataArrayInt::findIdsEqual : the array must have only one component, you can call 'rearrange' method before !");
4221     const T *cptr(this->getConstPointer());
4222     MCAuto<DataArrayIdType> ret(DataArrayIdType::New()); ret->alloc(0,1);
4223     mcIdType nbOfTuples(this->getNumberOfTuples());
4224     for(mcIdType i=0;i<nbOfTuples;i++,cptr++)
4225       if(*cptr==val)
4226         ret->pushBackSilent(ToIdType(i));
4227     return ret.retn();
4228   }
4229
4230   /*!
4231    * Creates a one-dimensional DataArrayInt (\a res) whose contents are computed from
4232    * values of \a this (\a a) and the given (\a indArr) arrays as follows:
4233    * \a res[ \a indArr[ \a a[ i ]]] = i. I.e. for each value in place i \a v = \a a[ i ],
4234    * new value in place \a indArr[ \a v ] is i.
4235    *  \param [in] indArrBg - the array holding indices within the result array to assign
4236    *         indices of values of \a this array pointing to values of \a indArrBg.
4237    *  \param [in] indArrEnd - specifies the end of the array \a indArrBg, so that
4238    *              the last value of \a indArrBg is \a indArrEnd[ -1 ].
4239    *  \return DataArrayInt * - the new instance of DataArrayInt.
4240    *          The caller is to delete this result array using decrRef() as it is no more
4241    *          needed.
4242    *  \throw If \a this->getNumberOfComponents() != 1.
4243    *  \throw If any value of \a this array is not a valid index for \a indArrBg array.
4244    *  \throw If any value of \a indArrBg is not a valid index for \a this array.
4245    */
4246   template<class T>
4247   DataArrayIdType *DataArrayDiscrete<T>::transformWithIndArrR(const T *indArrBg, const T *indArrEnd) const
4248   {
4249     this->checkAllocated();
4250     if(this->getNumberOfComponents()!=1)
4251       throw INTERP_KERNEL::Exception("Call transformWithIndArrR method on DataArrayInt with only one component, you can call 'rearrange' method before !");
4252     mcIdType nbElemsIn=ToIdType(std::distance(indArrBg,indArrEnd));
4253     mcIdType nbOfTuples(this->getNumberOfTuples());
4254     const T *pt=this->getConstPointer();
4255     MCAuto<DataArrayIdType> ret=DataArrayIdType::New();
4256     ret->alloc(nbOfTuples,1);
4257     ret->fillWithValue(-1);
4258     mcIdType *tmp=ret->getPointer();
4259     for(mcIdType i=0;i<nbOfTuples;i++,pt++)
4260       {
4261         if(*pt>=0 && *pt<nbElemsIn)
4262           {
4263             T pos=indArrBg[*pt];
4264             if(pos>=0 && pos<nbOfTuples)
4265               tmp[ToIdType(pos)]=i;
4266             else
4267               {
4268                 std::ostringstream oss; oss << "DataArrayInt::transformWithIndArrR : error on tuple #" << i << " value of new pos is " << pos << " ( indArrBg[" << *pt << "]) ! Should be in [0," << nbOfTuples << ") !";
4269                 throw INTERP_KERNEL::Exception(oss.str().c_str());
4270               }
4271           }
4272         else
4273           {
4274             std::ostringstream oss; oss << "DataArrayInt::transformWithIndArrR : error on tuple #" << i << " value is " << *pt << " and indirectionnal array as a size equal to " << nbElemsIn << " !";
4275             throw INTERP_KERNEL::Exception(oss.str().c_str());
4276           }
4277       }
4278     return ret.retn();
4279   }
4280
4281   /*!
4282    * Computes distribution of values of \a this one-dimensional array between given value
4283    * ranges (casts). This method is typically useful for entity number splitting by types,
4284    * for example.
4285    *  \warning The values contained in \a arrBg should be sorted ascendently. No
4286    *           check of this is be done. If not, the result is not warranted.
4287    *  \param [in] arrBg - the array of ascending values defining the value ranges. The i-th
4288    *         value of \a arrBg (\a arrBg[ i ]) gives the lowest value of the i-th range,
4289    *         and the greatest value of the i-th range equals to \a arrBg[ i+1 ] - 1. \a
4290    *         arrBg containing \a n values defines \a n-1 ranges. The last value of \a arrBg
4291    *         should be more than every value in \a this array.
4292    *  \param [in] arrEnd - specifies the end of the array \a arrBg, so that
4293    *              the last value of \a arrBg is \a arrEnd[ -1 ].
4294    *  \param [out] castArr - a new instance of DataArrayInt, of same size as \a this array
4295    *         (same number of tuples and components), the caller is to delete
4296    *         using decrRef() as it is no more needed.
4297    *         This array contains indices of ranges for every value of \a this array. I.e.
4298    *         the i-th value of \a castArr gives the index of range the i-th value of \a this
4299    *         belongs to. Or, in other words, this parameter contains for each tuple in \a
4300    *         this in which cast it holds.
4301    *  \param [out] rankInsideCast - a new instance of DataArrayInt, of same size as \a this
4302    *         array, the caller is to delete using decrRef() as it is no more needed.
4303    *         This array contains ranks of values of \a this array within ranges
4304    *         they belongs to. I.e. the i-th value of \a rankInsideCast gives the rank of
4305    *         the i-th value of \a this array within the \a castArr[ i ]-th range, to which
4306    *         the i-th value of \a this belongs to. Or, in other words, this param contains
4307    *         for each tuple its rank inside its cast. The rank is computed as difference
4308    *         between the value and the lowest value of range.
4309    *  \param [out] castsPresent - a new instance of DataArrayInt, containing indices of
4310    *         ranges (casts) to which at least one value of \a this array belongs.
4311    *         Or, in other words, this param contains the casts that \a this contains.
4312    *         The caller is to delete this array using decrRef() as it is no more needed.
4313    *
4314    * \b Example: If \a this contains [6,5,0,3,2,7,8,1,4] and \a arrBg contains [0,4,9] then
4315    *            the output of this method will be :
4316    * - \a castArr       : [1,1,0,0,0,1,1,0,1]
4317    * - \a rankInsideCast: [2,1,0,3,2,3,4,1,0]
4318    * - \a castsPresent  : [0,1]
4319    *
4320    * I.e. values of \a this array belong to 2 ranges: #0 and #1. Value 6 belongs to the
4321    * range #1 and its rank within this range is 2; etc.
4322    *
4323    *  \throw If \a this->getNumberOfComponents() != 1.
4324    *  \throw If \a arrEnd - arrBg < 2.
4325    *  \throw If any value of \a this is not less than \a arrEnd[-1].
4326    */
4327   template<class T>
4328   void DataArrayDiscrete<T>::splitByValueRange(const T *arrBg, const T *arrEnd,
4329                                                DataArrayType *& castArr, DataArrayType *& rankInsideCast, DataArrayType *& castsPresent) const
4330   {
4331     this->checkAllocated();
4332     if(this->getNumberOfComponents()!=1)
4333       throw INTERP_KERNEL::Exception("Call splitByValueRange  method on DataArrayInt with only one component, you can call 'rearrange' method before !");
4334     mcIdType nbOfTuples=this->getNumberOfTuples();
4335     std::size_t nbOfCast=std::distance(arrBg,arrEnd);
4336     if(nbOfCast<2)
4337       throw INTERP_KERNEL::Exception("DataArrayInt::splitByValueRange : The input array giving the cast range values should be of size >=2 !");
4338     nbOfCast--;
4339     const T *work=this->getConstPointer();
4340     typedef std::reverse_iterator<const T *> rintstart;
4341     rintstart bg(arrEnd);//OK no problem because size of 'arr' is greater or equal 2
4342     rintstart end2(arrBg);
4343     MCAuto<DataArrayType> ret1=DataArrayType::New();
4344     MCAuto<DataArrayType> ret2=DataArrayType::New();
4345     MCAuto<DataArrayType> ret3=DataArrayType::New();
4346     ret1->alloc(nbOfTuples,1);
4347     ret2->alloc(nbOfTuples,1);
4348     T *ret1Ptr=ret1->getPointer();
4349     T *ret2Ptr=ret2->getPointer();
4350     std::set<T> castsDetected;
4351     for(mcIdType i=0;i<nbOfTuples;i++)
4352       {
4353         rintstart res=std::find_if(bg,end2,std::bind(std::less_equal<T>(),std::placeholders::_1,work[i]));
4354         std::size_t pos=std::distance(bg,res);
4355         std::size_t pos2=nbOfCast-pos;
4356         if(pos2<nbOfCast)
4357           {
4358             ret1Ptr[i]=static_cast<T>(pos2);
4359             ret2Ptr[i]=work[i]-arrBg[pos2];
4360             castsDetected.insert(ret1Ptr[i]);
4361           }
4362         else
4363           {
4364             std::ostringstream oss; oss << "DataArrayInt::splitByValueRange : At rank #" << i << " the value is " << work[i] << " should be in [0," << *bg << ") !";
4365             throw INTERP_KERNEL::Exception(oss.str().c_str());
4366           }
4367       }
4368     ret3->alloc(castsDetected.size(),1);
4369     std::copy(castsDetected.begin(),castsDetected.end(),ret3->getPointer());
4370     castArr=ret1.retn();
4371     rankInsideCast=ret2.retn();
4372     castsPresent=ret3.retn();
4373   }
4374
4375   /*!
4376    * This method look at \a this if it can be considered as a range defined by the 3-tuple ( \a strt , \a sttoopp , \a stteepp ).
4377    * If false is returned the tuple must be ignored. If true is returned \a this can be considered by a range( \a strt , \a sttoopp , \a stteepp ).
4378    * This method works only if \a this is allocated and single component. If not an exception will be thrown.
4379    *
4380    * \param [out] strt - the start of the range (included) if true is returned.
4381    * \param [out] sttoopp - the end of the range (not included) if true is returned.
4382    * \param [out] stteepp - the step of the range if true is returned.
4383    * \return the verdict of the check.
4384    *
4385    * \sa DataArray::GetNumberOfItemGivenBES
4386    */
4387   template<class T>
4388   bool DataArrayDiscrete<T>::isRange(T& strt, T& sttoopp, T& stteepp) const
4389   {
4390     this->checkAllocated();
4391     if(this->getNumberOfComponents()!=1)
4392       throw INTERP_KERNEL::Exception("DataArrayInt::isRange : this must be single component array !");
4393     mcIdType nbTuples(this->getNumberOfTuples());
4394     if(nbTuples==0)
4395       { strt=0; sttoopp=0; stteepp=1; return true; }
4396     const T *pt(this->begin());
4397     strt=*pt;
4398     if(nbTuples==1)
4399       { sttoopp=strt+1; stteepp=1; return true; }
4400     strt=*pt; sttoopp=pt[nbTuples-1];
4401     if(strt==sttoopp)
4402       return false;
4403     if(sttoopp>strt)
4404       {
4405         sttoopp++;
4406         T a(sttoopp-1-strt),tmp(strt);
4407         if(a%(nbTuples-1)!=0)
4408           return false;
4409         stteepp=a/(FromIdType<T>(nbTuples)-1);
4410         for(mcIdType i=0;i<nbTuples;i++,tmp+=stteepp)
4411           if(pt[i]!=tmp)
4412             return false;
4413         return true;
4414       }
4415     else
4416       {
4417         sttoopp--;
4418         T a(strt-sttoopp-1),tmp(strt);
4419         if(a%(nbTuples-1)!=0)
4420           return false;
4421         stteepp=-(a/(FromIdType<T>(nbTuples)-1));
4422         for(mcIdType i=0;i<nbTuples;i++,tmp+=stteepp)
4423           if(pt[i]!=tmp)
4424             return false;
4425         return true;
4426       }
4427   }
4428
4429   /*!
4430    * Creates a one-dimensional DataArrayInt of given length, whose contents are computed
4431    * from values of \a this array, which is supposed to contain a renumbering map in
4432    * "Old to New" mode. The result array contains a renumbering map in "New to Old" mode.
4433    * To know how to use the renumbering maps see \ref numbering.
4434    *  \param [in] newNbOfElem - the number of tuples in the result array.
4435    *  \return DataArrayInt * - the new instance of DataArrayInt.
4436    *          The caller is to delete this result array using decrRef() as it is no more
4437    *          needed.
4438    *
4439    *  \if ENABLE_EXAMPLES
4440    *  \ref cpp_mcdataarrayint_invertarrayo2n2n2o "Here is a C++ example".<br>
4441    *  \ref py_mcdataarrayint_invertarrayo2n2n2o  "Here is a Python example".
4442    *  \endif
4443    */
4444   template<class T>
4445   DataArrayIdType * DataArrayDiscrete<T>::invertArrayO2N2N2O(mcIdType newNbOfElem) const
4446   {
4447     MCAuto<DataArrayIdType> ret(DataArrayIdType::New());
4448     ret->alloc(newNbOfElem,1);
4449     mcIdType nbOfOldNodes(this->getNumberOfTuples());
4450     const T *old2New(this->begin());
4451     mcIdType *pt(ret->getPointer());
4452     for(mcIdType i=0;i!=nbOfOldNodes;i++)
4453       {
4454         T newp(old2New[i]);
4455         if(newp!=-1)
4456           {
4457             if(newp>=0 && newp<newNbOfElem)
4458               pt[newp]=i;
4459             else
4460               {
4461                 std::ostringstream oss; oss << "DataArrayInt::invertArrayO2N2N2O : At place #" << i << " the newplace is " << newp << " must be in [0," << newNbOfElem << ") !";
4462                 throw INTERP_KERNEL::Exception(oss.str().c_str());
4463               }
4464           }
4465       }
4466     return ret.retn();
4467   }
4468
4469   /*!
4470    * Creates a one-dimensional DataArrayInt of given length, whose contents are computed
4471    * from values of \a this array, which is supposed to contain a renumbering map in
4472    * "New to Old" mode. The result array contains a renumbering map in "Old to New" mode.
4473    * To know how to use the renumbering maps see \ref numbering.
4474    *  \param [in] oldNbOfElem - the number of tuples in the result array.
4475    *  \return DataArrayInt * - the new instance of DataArrayInt.
4476    *          The caller is to delete this result array using decrRef() as it is no more
4477    *          needed.
4478    *
4479    *  \if ENABLE_EXAMPLES
4480    *  \ref cpp_mcdataarrayint_invertarrayn2o2o2n "Here is a C++ example".
4481    *
4482    *  \ref py_mcdataarrayint_invertarrayn2o2o2n "Here is a Python example".
4483    *  \sa invertArrayN2O2O2NOptimized
4484    *  \endif
4485    */
4486   template <class T>
4487   DataArrayIdType *DataArrayDiscrete<T>::invertArrayN2O2O2N(mcIdType oldNbOfElem) const
4488   {
4489     this->checkAllocated();
4490     MCAuto<DataArrayIdType> ret=DataArrayIdType::New();
4491     ret->alloc(oldNbOfElem,1);
4492     const T *new2Old=this->getConstPointer();
4493     mcIdType *pt=ret->getPointer();
4494     std::fill(pt,pt+oldNbOfElem,-1);
4495     mcIdType nbOfNewElems(this->getNumberOfTuples());
4496     for(mcIdType i=0;i<nbOfNewElems;i++)
4497       {
4498         T v(new2Old[i]);
4499         if(v>=0 && v<oldNbOfElem)
4500           pt[v]=i;
4501         else
4502           {
4503             std::ostringstream oss; oss << "DataArrayInt::invertArrayN2O2O2N : in new id #" << i << " old value is " << v << " expected to be in [0," << oldNbOfElem << ") !";
4504             throw INTERP_KERNEL::Exception(oss.str().c_str());
4505           }
4506       }
4507     return ret.retn();
4508   }
4509
4510   /*!
4511    * This method is similar to DataArrayInt::invertArrayO2N2N2O except that
4512    * Example : If \a this contains [0,1,2,0,3,4,5,4,6,4] this method will return [0,1,2,4,5,6,8] whereas DataArrayInt::invertArrayO2N2N2O returns [3,1,2,4,9,6,8]
4513    */
4514   template <class T>
4515   DataArrayIdType *DataArrayDiscrete<T>::invertArrayO2N2N2OBis(mcIdType newNbOfElem) const
4516   {
4517     MCAuto<DataArrayIdType> ret=DataArrayIdType::New();
4518     ret->alloc(newNbOfElem,1);
4519     mcIdType nbOfOldNodes(this->getNumberOfTuples());
4520     const T *old2New=this->getConstPointer();
4521     mcIdType *pt=ret->getPointer();
4522     for(mcIdType i=nbOfOldNodes-1;i>=0;i--)
4523       {
4524         T newp(old2New[i]);
4525         if(newp!=-1)
4526           {
4527             if(newp>=0 && newp<newNbOfElem)
4528               pt[newp]=i;
4529             else
4530               {
4531                 std::ostringstream oss; oss << "DataArrayInt::invertArrayO2N2N2OBis : At place #" << i << " the newplace is " << newp << " must be in [0," << newNbOfElem << ") !";
4532                 throw INTERP_KERNEL::Exception(oss.str().c_str());
4533               }
4534           }
4535       }
4536     return ret.retn();
4537   }
4538
4539   /*!
4540    * Creates a map, whose contents are computed
4541    * from values of \a this array, which is supposed to contain a renumbering map in
4542    * "New to Old" mode. The result array contains a renumbering map in "Old to New" mode.
4543    * To know how to use the renumbering maps see \ref numbering.
4544    *  \return MapII  - the new instance of Map.
4545    *
4546    *  \if ENABLE_EXAMPLES
4547    *  \ref cpp_mcdataarrayint_invertarrayn2o2o2n "Here is a C++ example".
4548    *
4549    *  \ref py_mcdataarrayint_invertarrayn2o2o2n "Here is a Python example".
4550    *  \sa invertArrayN2O2O2N, giveN2OOptimized, MEDCouplingPointSet::renumberNodesInConn
4551    *  \endif
4552    */
4553   template <class T>
4554   MCAuto< MapKeyVal<T, mcIdType> > DataArrayDiscrete<T>::invertArrayN2O2O2NOptimized() const
4555   {
4556     this->checkAllocated();
4557     if(this->getNumberOfComponents()!=1)
4558       throw INTERP_KERNEL::Exception("DataArrayInt::invertArrayN2O2O2NOptimized : single component expected !");
4559     MCAuto< MapKeyVal<T, mcIdType> > ret(MapKeyVal<T, mcIdType>::New());
4560     std::map<T, mcIdType>& m(ret->data());
4561     const T *new2Old(this->begin());
4562     mcIdType nbOfNewElems(this->getNumberOfTuples());
4563     for(mcIdType i=0;i<nbOfNewElems;i++)
4564       {
4565         T v(new2Old[i]);
4566         m[v]=i;
4567       }
4568     return ret;
4569   }
4570
4571   /*!
4572    * Creates a map, whose contents are computed
4573    * from values of \a this array, which is supposed to contain a renumbering map in
4574    * "New to Old" mode. The result array contains a renumbering map in "New to Old" mode as C++ map for performance reasons.
4575    *
4576    * \sa invertArrayN2O2O2NOptimized, MEDCouplingPointSet::renumberNodesInConn
4577    */
4578   template <class T>
4579   MCAuto< MapKeyVal<mcIdType, T> > DataArrayDiscrete<T>::giveN2OOptimized() const
4580   {
4581     this->checkAllocated();
4582     if(this->getNumberOfComponents()!=1)
4583       throw INTERP_KERNEL::Exception("DataArrayInt::giveN2OOptimized : single component expected !");
4584     MCAuto< MapKeyVal<mcIdType, T> > ret(MapKeyVal<mcIdType, T>::New());
4585     std::map<mcIdType,T>& m(ret->data());
4586     const T *new2Old(this->begin());
4587     mcIdType nbOfNewElems(this->getNumberOfTuples());
4588     for(mcIdType i=0;i<nbOfNewElems;i++)
4589       {
4590         T v(new2Old[i]);
4591         m[i]=v;
4592       }
4593     return ret;
4594   }
4595
4596   /*!
4597    * This method finds for each element \a ELT in [valsBg,valsEnd) elements in \a this equal to it. Associated to ELT
4598    * this method will return the tuple id of last element found. If there is no element in \a this equal to ELT
4599    * an exception will be thrown.
4600    *
4601    * In case of success this[ret]==vals. Samely ret->transformWithIndArr(this->begin(),this->end())==vals.
4602    * Where \a vals is the [valsBg,valsEnd) array and \a ret the array returned by this method.
4603    * This method can be seen as an extension of FindPermutationFromFirstToSecond.
4604    * <br>
4605    * \b Example: <br>
4606    * - \a this: [17,27,2,10,-4,3,12,27,16]
4607    * - \a val : [3,16,-4,27,17]
4608    * - result: [5,8,4,7,0]
4609    *
4610    * \return - An array of size std::distance(valsBg,valsEnd)
4611    *
4612    * \sa DataArrayInt::FindPermutationFromFirstToSecond , DataArrayInt::FindPermutationFromFirstToSecondDuplicate
4613    */
4614   template <class T>
4615   MCAuto<DataArrayIdType> DataArrayDiscrete<T>::findIdForEach(const T *valsBg, const T *valsEnd) const
4616   {
4617     MCAuto<DataArrayIdType> ret(DataArrayIdType::New());
4618     std::size_t nbOfTuplesOut(std::distance(valsBg,valsEnd));
4619     ret->alloc(nbOfTuplesOut,1);
4620     MCAuto< MapKeyVal<T, mcIdType> > zeMap(this->invertArrayN2O2O2NOptimized());
4621     const std::map<T, mcIdType>& dat(zeMap->data());
4622     mcIdType *ptToFeed(ret->getPointer());
4623     for(const T *pt=valsBg;pt!=valsEnd;pt++)
4624       {
4625         typename std::map<T,mcIdType>::const_iterator it(dat.find(*pt));
4626         if(it!=dat.end())
4627           *ptToFeed++=(*it).second;
4628         else
4629           {
4630             std::ostringstream oss; oss << "DataArrayInt::findIdForEach : error for element at place " << std::distance(valsBg,pt);
4631             oss << " of input array value is " << *pt << " which is not in this !";
4632             throw INTERP_KERNEL::Exception(oss.str());
4633           }
4634       }
4635     return ret;
4636   }
4637
4638   /*!
4639    * Returns a new DataArrayInt containing a renumbering map in "Old to New" mode.
4640    * This map, if applied to \a this array, would make it sorted. For example, if
4641    * \a this array contents are [9,10,0,6,4,11,3,7] then the contents of the result array
4642    * are [5,6,0,3,2,7,1,4]; if this result array (\a res) is used as an argument in call
4643    * \a this->renumber(\a res) then the returned array contains [0,3,4,6,7,9,10,11].
4644    * This method is useful for renumbering (in MED file for example). For more info
4645    * on renumbering see \ref numbering.
4646    *  \return DataArrayInt * - a new instance of DataArrayInt. The caller is to delete this
4647    *          array using decrRef() as it is no more needed.
4648    *  \throw If \a this is not allocated.
4649    *  \throw If \a this->getNumberOfComponents() != 1.
4650    *  \throw If there are equal values in \a this array.
4651    */
4652   template <class T>
4653   DataArrayIdType *DataArrayDiscrete<T>::checkAndPreparePermutation() const
4654   {
4655     this->checkAllocated();
4656     if(this->getNumberOfComponents()!=1)
4657       throw INTERP_KERNEL::Exception("DataArrayInt::checkAndPreparePermutation : number of components must == 1 !");
4658     mcIdType nbTuples(this->getNumberOfTuples());
4659     const T *pt=this->getConstPointer();
4660     mcIdType *pt2=this->CheckAndPreparePermutation(pt,pt+nbTuples);
4661     DataArrayIdType *ret=DataArrayIdType::New();
4662     ret->useArray(pt2,true,DeallocType::C_DEALLOC,nbTuples,1);
4663     return ret;
4664   }
4665
4666   /*!
4667    * Returns two arrays describing a surjective mapping from \a this set of values (\a A)
4668    * onto a set of values of size \a targetNb (\a B). The surjective function is
4669    * \a B[ \a A[ i ]] = i. That is to say that for each \a id in [0,\a targetNb), where \a
4670    * targetNb < \a this->getNumberOfTuples(), there exists at least one tupleId (\a tid) so
4671    * that <em> this->getIJ( tid, 0 ) == id</em>. <br>
4672    * The first of out arrays returns indices of elements of \a this array, grouped by their
4673    * place in the set \a B. The second out array is the index of the first one; it shows how
4674    * many elements of \a A are mapped into each element of \a B. <br>
4675    * For more info on
4676    * mapping and its usage in renumbering see \ref numbering. <br>
4677    * \b Example:
4678    * - \a this: [0,3,2,3,2,2,1,2]
4679    * - \a targetNb: 4
4680    * - \a arr:  [0,  6,  2,4,5,7,  1,3]
4681    * - \a arrI: [0,1,2,6,8]
4682    *
4683    * This result means: <br>
4684    * the element of \a B 0 encounters within \a A once (\a arrI[ 0+1 ] - \a arrI[ 0 ]) and
4685    * its index within \a A is 0 ( \a arr[ 0:1 ] == \a arr[ \a arrI[ 0 ] : \a arrI[ 0+1 ]]);<br>
4686    * the element of \a B 2 encounters within \a A 4 times (\a arrI[ 2+1 ] - \a arrI[ 2 ]) and
4687    * its indices within \a A are [2,4,5,7] ( \a arr[ 2:6 ] == \a arr[ \a arrI[ 2 ] :
4688    * \a arrI[ 2+1 ]]); <br> etc.
4689    *  \param [in] targetNb - the size of the set \a B. \a targetNb must be equal or more
4690    *         than the maximal value of \a A.
4691    *  \param [out] arr - a new instance of DataArrayInt returning indices of
4692    *         elements of \a this, grouped by their place in the set \a B. The caller is to delete
4693    *         this array using decrRef() as it is no more needed.
4694    *  \param [out] arrI - a new instance of DataArrayInt returning size of groups of equal
4695    *         elements of \a this. The caller is to delete this array using decrRef() as it
4696    *         is no more needed.
4697    *  \throw If \a this is not allocated.
4698    *  \throw If \a this->getNumberOfComponents() != 1.
4699    *  \throw If any value in \a this is more or equal to \a targetNb.
4700    */
4701   template <class T>
4702   void DataArrayDiscrete<T>::changeSurjectiveFormat(T targetNb, DataArrayIdType *&arr, DataArrayIdType *&arrI) const
4703   {
4704     this->checkAllocated();
4705     if(this->getNumberOfComponents()!=1)
4706       throw INTERP_KERNEL::Exception("DataArrayInt::changeSurjectiveFormat : number of components must == 1 !");
4707     mcIdType nbOfTuples(this->getNumberOfTuples());
4708     const T *input=this->getConstPointer();
4709     std::vector< std::vector<mcIdType> > tmp(targetNb);
4710     for(mcIdType i=0;i<nbOfTuples;i++)
4711       {
4712         T tmp2=input[i];
4713         if(tmp2>=0 && tmp2<targetNb)
4714           tmp[tmp2].push_back(i);
4715         else
4716           {
4717             std::ostringstream oss; oss << "DataArrayInt::changeSurjectiveFormat : At pos " << i << " presence of element " << tmp2 << " ! should be in [0," << targetNb << ") !";
4718             throw INTERP_KERNEL::Exception(oss.str().c_str());
4719           }
4720       }
4721
4722     MCAuto<DataArrayIdType> retI(DataArrayIdType::New());
4723     retI->alloc(targetNb+1,1);
4724     mcIdType *retIPtr=retI->getPointer();
4725     *retIPtr=0;
4726     for(std::vector< std::vector<mcIdType> >::const_iterator it1=tmp.begin();it1!=tmp.end();it1++,retIPtr++)
4727       retIPtr[1]=retIPtr[0]+ToIdType((*it1).size());
4728     if(nbOfTuples!=retI->getIJ(ToIdType(targetNb),0))
4729       throw INTERP_KERNEL::Exception("DataArrayInt::changeSurjectiveFormat : big problem should never happen !");
4730     MCAuto<DataArrayIdType> ret(DataArrayIdType::New());
4731     ret->alloc(nbOfTuples,1);
4732     mcIdType *retPtr=ret->getPointer();
4733     for(std::vector< std::vector<mcIdType> >::const_iterator it1=tmp.begin();it1!=tmp.end();it1++)
4734       retPtr=std::copy((*it1).begin(),(*it1).end(),retPtr);
4735     arr=ret.retn();
4736     arrI=retI.retn();
4737   }
4738
4739   /*!
4740    * Returns a new DataArrayInt containing a renumbering map in "New to Old" mode,
4741    * which if applied to \a this array would make it sorted ascendingly.
4742    * For more info on renumbering see \ref numbering. <br>
4743    * \b Example: <br>
4744    * - \a this: [2,0,1,1,0,1,2,0,1,1,0,0]
4745    * - result: [10,0,5,6,1,7,11,2,8,9,3,4]
4746    * - after applying result to \a this: [0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 2, 2]
4747    *
4748    *  \return DataArrayInt * - a new instance of DataArrayInt. The caller is to delete this
4749    *          array using decrRef() as it is no more needed.
4750    *  \throw If \a this is not allocated.
4751    *  \throw If \a this->getNumberOfComponents() != 1.
4752    */
4753   template <class T>
4754   DataArrayIdType *DataArrayDiscrete<T>::buildPermArrPerLevel() const
4755   {
4756     this->checkAllocated();
4757     if(this->getNumberOfComponents()!=1)
4758       throw INTERP_KERNEL::Exception("DataArrayInt::buildPermArrPerLevel : number of components must == 1 !");
4759     mcIdType nbOfTuples=this->getNumberOfTuples();
4760     const T *pt=this->getConstPointer();
4761     std::map<T,mcIdType> m;
4762     MCAuto<DataArrayIdType> ret=DataArrayIdType::New();
4763     ret->alloc(nbOfTuples,1);
4764     mcIdType *opt=ret->getPointer();
4765     for(mcIdType i=0;i<nbOfTuples;i++,pt++,opt++)
4766       {
4767         T val=*pt;
4768         typename std::map<T,mcIdType>::iterator it=m.find(val);
4769         if(it!=m.end())
4770           {
4771             *opt=(*it).second;
4772             (*it).second++;
4773           }
4774         else
4775           {
4776             *opt=0;
4777             m.insert(std::pair<T,mcIdType>(val,1));
4778           }
4779       }
4780     mcIdType sum=0;
4781     for(typename std::map<T,mcIdType>::iterator it=m.begin();it!=m.end();it++)
4782       {
4783         mcIdType vt=(*it).second;
4784         (*it).second=sum;
4785         sum+=vt;
4786       }
4787     pt=this->getConstPointer();
4788     opt=ret->getPointer();
4789     for(mcIdType i=0;i<nbOfTuples;i++,pt++,opt++)
4790       *opt+=m[*pt];
4791     //
4792     return ret.retn();
4793   }
4794
4795   /*!
4796    * Checks if \a this array has the given size, and if its contents is equal to an array filled with
4797    * iota(). This method is particularly useful for DataArrayInt instances that represent
4798    * a renumbering array, to check if there is a real need in renumbering.
4799    * This method checks than \a this can be considered as an identity mapping
4800    * of a set having \a sizeExpected elements into itself.
4801    *
4802    *  \param [in] sizeExpected - The number of elements expected.
4803    *  \return bool - \a true if \a this array contents == \a range( \a this->getNumberOfTuples())
4804    *  \throw If \a this is not allocated.
4805    *  \throw If \a this->getNumberOfComponents() != 1.
4806    */
4807   template <class T>
4808   bool DataArrayDiscrete<T>::isIota(mcIdType sizeExpected) const
4809   {
4810     this->checkAllocated();
4811     if(this->getNumberOfComponents()!=1)
4812       return false;
4813     mcIdType nbOfTuples(this->getNumberOfTuples());
4814     if(nbOfTuples!=sizeExpected)
4815       return false;
4816     const T *pt=this->getConstPointer();
4817     for(mcIdType i=0;i<nbOfTuples;i++,pt++)
4818       if(*pt!=i)
4819         return false;
4820     return true;
4821   }
4822
4823   /*!
4824    * Checks if all values in \a this array are equal to \a val.
4825    *  \param [in] val - value to check equality of array values to.
4826    *  \return bool - \a true if all values are \a val.
4827    *  \throw If \a this is not allocated.
4828    *  \throw If \a this->getNumberOfComponents() != 1
4829    *  \sa DataArrayInt::checkUniformAndGuess
4830    */
4831   template <class T>
4832   bool DataArrayDiscrete<T>::isUniform(T val) const
4833   {
4834     this->checkAllocated();
4835     if(this->getNumberOfComponents()!=1)
4836       throw INTERP_KERNEL::Exception("DataArrayInt::isUniform : must be applied on DataArrayInt with only one component, you can call 'rearrange' method before !");
4837     const T *w(this->begin()),*end2(this->end());
4838     for(;w!=end2;w++)
4839       if(*w!=val)
4840         return false;
4841     return true;
4842   }
4843
4844   /*!
4845    * This method checks that \a this is uniform. If not and exception will be thrown.
4846    * In case of uniformity the corresponding value is returned.
4847    *
4848    * \return mcIdType - the unique value contained in this
4849    * \throw If \a this is not allocated.
4850    * \throw If \a this->getNumberOfComponents() != 1
4851    * \throw If \a this is not uniform.
4852    * \sa DataArrayInt::isUniform
4853    */
4854   template <class T>
4855   T DataArrayDiscrete<T>::checkUniformAndGuess() const
4856   {
4857     this->checkAllocated();
4858     if(this->getNumberOfComponents()!=1)
4859       throw INTERP_KERNEL::Exception("DataArrayInt::checkUniformAndGuess : must be applied on DataArrayInt with only one component, you can call 'rearrange' method before !");
4860     if(this->empty())
4861       throw INTERP_KERNEL::Exception("DataArrayInt::checkUniformAndGuess : this is empty !");
4862     const T *w(this->begin()),*end2(this->end());
4863     T ret(*w);
4864     for(;w!=end2;w++)
4865       if(*w!=ret)
4866         throw INTERP_KERNEL::Exception("DataArrayInt::checkUniformAndGuess : this is not uniform !");
4867     return ret;
4868   }
4869
4870   /*!
4871    * Checks if all values in \a this array are unique.
4872    *  \return bool - \a true if condition above is true
4873    *  \throw If \a this is not allocated.
4874    *  \throw If \a this->getNumberOfComponents() != 1
4875    */
4876   template <class T>
4877   bool DataArrayDiscrete<T>::hasUniqueValues() const
4878   {
4879     this->checkAllocated();
4880     if(this->getNumberOfComponents()!=1)
4881       throw INTERP_KERNEL::Exception("DataArrayInt::hasOnlyUniqueValues: must be applied on DataArrayInt with only one component, you can call 'rearrange' method before !");
4882     std::size_t nbOfElements(this->getNumberOfTuples());
4883     std::set<T> s(this->begin(),this->end());  // in C++11, should use unordered_set (O(1) complexity)
4884     if (s.size() != nbOfElements)
4885       return false;
4886     return true;
4887   }
4888
4889   /*!
4890    * Copy all components in a specified order from another DataArrayInt.
4891    * The specified components become the first ones in \a this array.
4892    * Both numerical and textual data is copied. The number of tuples in \a this and
4893    * the other array can be different.
4894    *  \param [in] a - the array to copy data from.
4895    *  \param [in] compoIds - sequence of zero based indices of components, data of which is
4896    *              to be copied.
4897    *  \throw If \a a is NULL.
4898    *  \throw If \a compoIds.size() != \a a->getNumberOfComponents().
4899    *  \throw If \a compoIds[i] < 0 or \a compoIds[i] > \a this->getNumberOfComponents().
4900    *
4901    *  \if ENABLE_EXAMPLES
4902    *  \ref py_mcdataarrayint_setselectedcomponents "Here is a Python example".
4903    *  \endif
4904    */
4905   template <class T>
4906   void DataArrayDiscrete<T>::setSelectedComponents(const DataArrayType *a, const std::vector<std::size_t>& compoIds)
4907   {
4908     if(!a)
4909       throw INTERP_KERNEL::Exception("DataArrayInt::setSelectedComponents : input DataArrayInt is NULL !");
4910     this->checkAllocated();
4911     a->checkAllocated();
4912     this->copyPartOfStringInfoFrom2(compoIds,*a);
4913     std::size_t partOfCompoSz=compoIds.size();
4914     std::size_t nbOfCompo = this->getNumberOfComponents();
4915     mcIdType nbOfTuples=std::min(this->getNumberOfTuples(),a->getNumberOfTuples());
4916     const T *ac=a->getConstPointer();
4917     T *nc=this->getPointer();
4918     for(mcIdType i=0;i<nbOfTuples;i++)
4919       for(std::size_t j=0;j<partOfCompoSz;j++,ac++)
4920         nc[nbOfCompo*i+compoIds[j]]=*ac;
4921   }
4922
4923   /*!
4924    * Creates a new DataArrayInt containing IDs (indices) of tuples holding value \b not
4925    * equal to a given one.
4926    *  \param [in] val - the value to ignore within \a this.
4927    *  \return DataArrayInt * - a new instance of DataArrayInt. The caller is to delete this
4928    *          array using decrRef() as it is no more needed.
4929    *  \throw If \a this is not allocated.
4930    *  \throw If \a this->getNumberOfComponents() != 1.
4931    */
4932   template <class T>
4933   DataArrayIdType *DataArrayDiscrete<T>::findIdsNotEqual(T val) const
4934   {
4935     this->checkAllocated();
4936     if(this->getNumberOfComponents()!=1)
4937       throw INTERP_KERNEL::Exception("DataArrayInt::findIdsNotEqual : the array must have only one component, you can call 'rearrange' method before !");
4938     const T *cptr(this->getConstPointer());
4939     MCAuto<DataArrayIdType> ret(DataArrayIdType::New());
4940     ret->alloc(0,1);
4941     mcIdType nbOfTuples(this->getNumberOfTuples());
4942     for(mcIdType i=0;i<nbOfTuples;i++,cptr++)
4943       if(*cptr!=val)
4944         ret->pushBackSilent(i);
4945     return ret.retn();
4946   }
4947
4948   /*!
4949    * Creates a new DataArrayInt containing IDs (indices) of tuples holding tuple equal to those defined by [ \a tupleBg , \a tupleEnd )
4950    * This method is an extension of  DataArrayInt::findIdsEqual method.
4951    *
4952    *  \param [in] tupleBg - the begin (included) of the input tuple to find within \a this.
4953    *  \param [in] tupleEnd - the end (excluded) of the input tuple to find within \a this.
4954    *  \return DataArrayInt * - a new instance of DataArrayInt. The caller is to delete this
4955    *          array using decrRef() as it is no more needed.
4956    *  \throw If \a this is not allocated.
4957    *  \throw If \a this->getNumberOfComponents() != std::distance(tupleBg,tupleEnd).
4958    * \throw If \a this->getNumberOfComponents() is equal to 0.
4959    * \sa DataArrayInt::findIdsEqual
4960    */
4961   template <class T>
4962   DataArrayIdType *DataArrayDiscrete<T>::findIdsEqualTuple(const T *tupleBg, const T *tupleEnd) const
4963   {
4964     std::size_t nbOfCompoExp=std::distance(tupleBg,tupleEnd);
4965     this->checkAllocated();
4966     if(this->getNumberOfComponents()!=nbOfCompoExp)
4967       {
4968         std::ostringstream oss; oss << "DataArrayInt::findIdsEqualTuple : mismatch of number of components. Input tuple has " << nbOfCompoExp << " whereas this array has " << this->getNumberOfComponents() << " components !";
4969         throw INTERP_KERNEL::Exception(oss.str().c_str());
4970       }
4971     if(nbOfCompoExp==0)
4972       throw INTERP_KERNEL::Exception("DataArrayInt::findIdsEqualTuple : number of components should be > 0 !");
4973     MCAuto<DataArrayIdType> ret(DataArrayIdType::New());
4974     ret->alloc(0,1);
4975     const T *bg(this->begin()),*end2(this->end()),*work(this->begin());
4976     while(work!=end2)
4977       {
4978         work=std::search(work,end2,tupleBg,tupleEnd);
4979         if(work!=end2)
4980           {
4981             std::ptrdiff_t pos=std::distance(bg,work);
4982             if(pos%nbOfCompoExp==0)
4983               ret->pushBackSilent(ToIdType(pos/nbOfCompoExp));
4984             work++;
4985           }
4986       }
4987     return ret.retn();
4988   }
4989
4990   /*!
4991    * Creates a new DataArrayInt containing IDs (indices) of tuples holding value equal to
4992    * one of given values.
4993    *  \param [in] valsBg - an array of values to find within \a this array.
4994    *  \param [in] valsEnd - specifies the end of the array \a valsBg, so that
4995    *              the last value of \a valsBg is \a valsEnd[ -1 ].
4996    *  \return DataArrayInt * - a new instance of DataArrayInt. The caller is to delete this
4997    *          array using decrRef() as it is no more needed.
4998    *  \throw If \a this->getNumberOfComponents() != 1.
4999    */
5000   template <class T>
5001   DataArrayIdType *DataArrayDiscrete<T>::findIdsEqualList(const T *valsBg, const T *valsEnd) const
5002   {
5003     if(this->getNumberOfComponents()!=1)
5004       throw INTERP_KERNEL::Exception("DataArrayInt::findIdsEqualList : the array must have only one component, you can call 'rearrange' method before !");
5005     std::set<T> vals2(valsBg,valsEnd);
5006     const T *cptr(this->getConstPointer());
5007     mcIdType nbOfTuples(this->getNumberOfTuples());
5008     MCAuto<DataArrayIdType> ret(DataArrayIdType::New()); ret->alloc(0,1);
5009     for(mcIdType i=0;i<nbOfTuples;i++,cptr++)
5010       if(vals2.find(*cptr)!=vals2.end())
5011         ret->pushBackSilent(i);
5012     return ret.retn();
5013   }
5014
5015   /*!
5016    * Creates a new DataArrayInt containing IDs (indices) of tuples holding values \b not
5017    * equal to any of given values.
5018    *  \param [in] valsBg - an array of values to ignore within \a this array.
5019    *  \param [in] valsEnd - specifies the end of the array \a valsBg, so that
5020    *              the last value of \a valsBg is \a valsEnd[ -1 ].
5021    *  \return DataArrayInt * - a new instance of DataArrayInt. The caller is to delete this
5022    *          array using decrRef() as it is no more needed.
5023    *  \throw If \a this->getNumberOfComponents() != 1.
5024    */
5025   template <class T>
5026   DataArrayIdType *DataArrayDiscrete<T>::findIdsNotEqualList(const T *valsBg, const T *valsEnd) const
5027   {
5028     if(this->getNumberOfComponents()!=1)
5029       throw INTERP_KERNEL::Exception("DataArrayInt::findIdsNotEqualList : the array must have only one component, you can call 'rearrange' method before !");
5030     std::set<T> vals2(valsBg,valsEnd);
5031     const T *cptr=this->getConstPointer();
5032     mcIdType nbOfTuples(this->getNumberOfTuples());
5033     MCAuto<DataArrayIdType> ret(DataArrayIdType::New()); ret->alloc(0,1);
5034     for(mcIdType i=0;i<nbOfTuples;i++,cptr++)
5035       if(vals2.find(*cptr)==vals2.end())
5036         ret->pushBackSilent(i);
5037     return ret.retn();
5038   }
5039
5040   /*!
5041    * This method expects to be called when number of components of this is equal to one.
5042    * This method returns the tuple id, if it exists, of the first tuple equal to \b value.
5043    * If not any tuple contains \b value -1 is returned.
5044    * \sa DataArrayInt::presenceOfValue
5045    */
5046   template <class T>
5047   mcIdType DataArrayDiscrete<T>::findIdFirstEqual(T value) const
5048   {
5049     this->checkAllocated();
5050     if(this->getNumberOfComponents()!=1)
5051       throw INTERP_KERNEL::Exception("DataArrayInt::presenceOfValue : the array must have only one component, you can call 'rearrange' method before !");
5052     const T *cptr=this->getConstPointer();
5053     mcIdType nbOfTuples(this->getNumberOfTuples());
5054     const T *ret=std::find(cptr,cptr+nbOfTuples,value);
5055     if(ret!=cptr+nbOfTuples)
5056       return ToIdType(std::distance(cptr,ret));
5057     return -1;
5058   }
5059
5060   /*!
5061    * This method expects to be called when number of components of this is equal to one.
5062    * This method returns the tuple id, if it exists, of the first tuple so that the value is contained in \b vals.
5063    * If not any tuple contains one of the values contained in 'vals' -1 is returned.
5064    * \sa DataArrayInt::presenceOfValue
5065    */
5066   template <class T>
5067   mcIdType DataArrayDiscrete<T>::findIdFirstEqual(const std::vector<T>& vals) const
5068   {
5069     this->checkAllocated();
5070     if(this->getNumberOfComponents()!=1)
5071       throw INTERP_KERNEL::Exception("DataArrayInt::presenceOfValue : the array must have only one component, you can call 'rearrange' method before !");
5072     std::set<T> vals2(vals.begin(),vals.end());
5073     const T *cptr=this->getConstPointer();
5074     mcIdType nbOfTuples(this->getNumberOfTuples());
5075     for(const T *w=cptr;w!=cptr+nbOfTuples;w++)
5076       if(vals2.find(*w)!=vals2.end())
5077         return ToIdType(std::distance(cptr,w));
5078     return -1;
5079   }
5080
5081   /*!
5082    * This method is an extension of DataArrayInt::findIdFirstEqual method because this method works for DataArrayInt with
5083    * any number of components excepted 0 (an INTERP_KERNEL::Exception is thrown in this case).
5084    * This method searches in \b this is there is a tuple that matched the input parameter \b tupl.
5085    * If any the tuple id is returned. If not -1 is returned.
5086    *
5087    * This method throws an INTERP_KERNEL::Exception if the number of components in \b this mismatches with the size of
5088    * the input vector. An INTERP_KERNEL::Exception is thrown too if \b this is not allocated.
5089    *
5090    * \return tuple id where \b tupl is. -1 if no such tuple exists in \b this.
5091    * \sa DataArrayInt::findIdSequence, DataArrayInt::presenceOfTuple.
5092    */
5093   template <class T>
5094   mcIdType DataArrayDiscrete<T>::findIdFirstEqualTuple(const std::vector<T>& tupl) const
5095   {
5096     this->checkAllocated();
5097     std::size_t nbOfCompo(this->getNumberOfComponents());
5098     if(nbOfCompo==0)
5099       throw INTERP_KERNEL::Exception("DataArrayInt::findIdFirstEqualTuple : 0 components in 'this' !");
5100     if(nbOfCompo!=tupl.size())
5101       {
5102         std::ostringstream oss; oss << "DataArrayInt::findIdFirstEqualTuple : 'this' contains " << nbOfCompo << " components and searching for a tuple of length " << tupl.size() << " !";
5103         throw INTERP_KERNEL::Exception(oss.str().c_str());
5104       }
5105     const T *cptr=this->getConstPointer();
5106     std::size_t nbOfVals=this->getNbOfElems();
5107     for(const T *work=cptr;work!=cptr+nbOfVals;)
5108       {
5109         work=std::search(work,cptr+nbOfVals,tupl.begin(),tupl.end());
5110         if(work!=cptr+nbOfVals)
5111           {
5112             if(std::distance(cptr,work)%nbOfCompo!=0)
5113               work++;
5114             else
5115               return ToIdType (std::distance(cptr,work)/nbOfCompo);
5116           }
5117       }
5118     return -1;
5119   }
5120
5121   /*!
5122    * This method searches the sequence specified in input parameter \b vals in \b this.
5123    * This works only for DataArrayInt having number of components equal to one (if not an INTERP_KERNEL::Exception will be thrown).
5124    * This method differs from DataArrayInt::findIdFirstEqualTuple in that the position is internal raw data is not considered here contrary to DataArrayInt::findIdFirstEqualTuple.
5125    * \sa DataArrayInt::findIdFirstEqualTuple
5126    */
5127   template <class T>
5128   mcIdType DataArrayDiscrete<T>::findIdSequence(const std::vector<T>& vals) const
5129   {
5130     this->checkAllocated();
5131     std::size_t nbOfCompo=this->getNumberOfComponents();
5132     if(nbOfCompo!=1)
5133       throw INTERP_KERNEL::Exception("DataArrayInt::findIdSequence : works only for DataArrayInt instance with one component !");
5134     const T *cptr=this->getConstPointer();
5135     std::size_t nbOfVals=this->getNbOfElems();
5136     const T *loc=std::search(cptr,cptr+nbOfVals,vals.begin(),vals.end());
5137     if(loc!=cptr+nbOfVals)
5138       return ToIdType(std::distance(cptr,loc));
5139     return -1;
5140   }
5141
5142   /*!
5143    * Assigns \a newValue to all elements holding \a oldValue within \a this
5144    * one-dimensional array.
5145    *  \param [in] oldValue - the value to replace.
5146    *  \param [in] newValue - the value to assign.
5147    *  \return mcIdType - number of replacements performed.
5148    *  \throw If \a this is not allocated.
5149    *  \throw If \a this->getNumberOfComponents() != 1.
5150    */
5151   template <class T>
5152   mcIdType DataArrayDiscrete<T>::changeValue(T oldValue, T newValue)
5153   {
5154     this->checkAllocated();
5155     if(this->getNumberOfComponents()!=1)
5156       throw INTERP_KERNEL::Exception("DataArrayInt::changeValue : the array must have only one component, you can call 'rearrange' method before !");
5157     if(oldValue==newValue)
5158       return 0;
5159     T *start(this->getPointer()),*end2(start+this->getNbOfElems());
5160     mcIdType ret(0);
5161     for(T *val=start;val!=end2;val++)
5162       {
5163         if(*val==oldValue)
5164           {
5165             *val=newValue;
5166             ret++;
5167           }
5168       }
5169     if(ret>0)
5170       this->declareAsNew();
5171     return ret;
5172   }
5173
5174   /*!
5175    * This method returns the number of values in \a this that are equals to input parameter \a value.
5176    * This method only works for single component array.
5177    *
5178    * \return a value in [ 0, \c this->getNumberOfTuples() )
5179    *
5180    * \throw If \a this is not allocated
5181    *
5182    */
5183   template <class T>
5184   mcIdType DataArrayDiscrete<T>::count(T value) const
5185   {
5186     mcIdType ret=0;
5187     this->checkAllocated();
5188     if(this->getNumberOfComponents()!=1)
5189       throw INTERP_KERNEL::Exception("DataArrayInt::count : must be applied on DataArrayInt with only one component, you can call 'rearrange' method before !");
5190     const T *vals=this->begin();
5191     std::size_t nbOfElements=this->getNumberOfTuples();
5192     for(std::size_t i=0;i<nbOfElements;i++,vals++)
5193       if(*vals==value)
5194         ret++;
5195     return ret;
5196   }
5197
5198   /*!
5199    * This method is an extension of DataArrayInt::presenceOfValue method because this method works for DataArrayInt with
5200    * any number of components excepted 0 (an INTERP_KERNEL::Exception is thrown in this case).
5201    * This method searches in \b this is there is a tuple that matched the input parameter \b tupl.
5202    * This method throws an INTERP_KERNEL::Exception if the number of components in \b this mismatches with the size of
5203    * the input vector. An INTERP_KERNEL::Exception is thrown too if \b this is not allocated.
5204    * \sa DataArrayInt::findIdFirstEqualTuple
5205    */
5206   template <class T>
5207   bool DataArrayDiscrete<T>::presenceOfTuple(const std::vector<T>& tupl) const
5208   {
5209     return this->findIdFirstEqualTuple(tupl)!=-1;
5210   }
5211
5212
5213   /*!
5214    * Returns \a true if a given value is present within \a this one-dimensional array.
5215    *  \param [in] value - the value to find within \a this array.
5216    *  \return bool - \a true in case if \a value is present within \a this array.
5217    *  \throw If \a this is not allocated.
5218    *  \throw If \a this->getNumberOfComponents() != 1.
5219    *  \sa findIdFirstEqual()
5220    */
5221   template <class T>
5222   bool DataArrayDiscrete<T>::presenceOfValue(T value) const
5223   {
5224     return this->findIdFirstEqual(value)!=-1;
5225   }
5226
5227   /*!
5228    * This method expects to be called when number of components of this is equal to one.
5229    * This method returns true if it exists a tuple so that the value is contained in \b vals.
5230    * If not any tuple contains one of the values contained in 'vals' false is returned.
5231    * \sa DataArrayInt::findIdFirstEqual
5232    */
5233   template <class T>
5234   bool DataArrayDiscrete<T>::presenceOfValue(const std::vector<T>& vals) const
5235   {
5236     return this->findIdFirstEqual(vals)!=-1;
5237   }
5238
5239   /*!
5240    * Accumulates values of each component of \a this array.
5241    *  \param [out] res - an array of length \a this->getNumberOfComponents(), allocated
5242    *         by the caller, that is filled by this method with sum value for each
5243    *         component.
5244    *  \throw If \a this is not allocated.
5245    */
5246   template <class T>
5247   void DataArrayDiscrete<T>::accumulate(T *res) const
5248   {
5249     this->checkAllocated();
5250     const T *ptr=this->getConstPointer();
5251     mcIdType nbTuple(this->getNumberOfTuples());
5252     std::size_t nbComps(this->getNumberOfComponents());
5253     std::fill(res,res+nbComps,0);
5254     for(mcIdType i=0;i<nbTuple;i++)
5255       std::transform(ptr+i*nbComps,ptr+(i+1)*nbComps,res,res,std::plus<T>());
5256   }
5257
5258   template <class T>
5259   T DataArrayDiscrete<T>::accumulate(std::size_t compId) const
5260   {
5261     this->checkAllocated();
5262     const T *ptr=this->getConstPointer();
5263     mcIdType nbTuple(this->getNumberOfTuples());
5264     std::size_t nbComps(this->getNumberOfComponents());
5265     if(compId>=nbComps) // compId >= 0 (it is a size_t)
5266       throw INTERP_KERNEL::Exception("DataArrayInt::accumulate : Invalid compId specified : No such nb of components !");
5267     T ret=0;
5268     for(mcIdType i=0;i<nbTuple;i++)
5269       ret+=ptr[i*nbComps+compId];
5270     return ret;
5271   }
5272
5273   /*!
5274    * This method accumulate using addition tuples in \a this using input index array [ \a bgOfIndex, \a endOfIndex ).
5275    * The returned array will have same number of components than \a this and number of tuples equal to
5276    * \c std::distance(bgOfIndex,endOfIndex) \b minus \b one.
5277    *
5278    * The input index array is expected to be ascendingly sorted in which the all referenced ids should be in [0, \c this->getNumberOfTuples).
5279    *
5280    * \param [in] bgOfIndex - begin (included) of the input index array.
5281    * \param [in] endOfIndex - end (excluded) of the input index array.
5282    * \return DataArrayInt * - the new instance having the same number of components than \a this.
5283    *
5284    * \throw If bgOfIndex or end is NULL.
5285    * \throw If input index array is not ascendingly sorted.
5286    * \throw If there is an id in [ \a bgOfIndex, \a endOfIndex ) not in [0, \c this->getNumberOfTuples).
5287    * \throw If std::distance(bgOfIndex,endOfIndex)==0.
5288    */
5289   template <class T>
5290   typename Traits<T>::ArrayType *DataArrayDiscrete<T>::accumulatePerChunck(const mcIdType *bgOfIndex, const mcIdType *endOfIndex) const
5291   {
5292     if(!bgOfIndex || !endOfIndex)
5293       throw INTERP_KERNEL::Exception("DataArrayInt::accumulatePerChunck : input pointer NULL !");
5294     this->checkAllocated();
5295     std::size_t nbCompo(this->getNumberOfComponents());
5296     mcIdType nbOfTuples(this->getNumberOfTuples());
5297     mcIdType sz=ToIdType(std::distance(bgOfIndex,endOfIndex));
5298     if(sz<1)
5299       throw INTERP_KERNEL::Exception("DataArrayInt::accumulatePerChunck : invalid size of input index array !");
5300     sz--;
5301     MCAuto<DataArrayType> ret=DataArrayType::New(); ret->alloc(sz,nbCompo);
5302     const mcIdType *w=bgOfIndex;
5303     if(*w<0 || *w>=nbOfTuples)
5304       throw INTERP_KERNEL::Exception("DataArrayInt::accumulatePerChunck : The first element of the input index not in [0,nbOfTuples) !");
5305     const T *srcPt=this->begin()+(*w)*nbCompo;
5306     T *tmp=ret->getPointer();
5307     for(mcIdType i=0;i<sz;i++,tmp+=nbCompo,w++)
5308       {
5309         std::fill(tmp,tmp+nbCompo,0);
5310         if(w[1]>=w[0])
5311           {
5312             for(mcIdType j=w[0];j<w[1];j++,srcPt+=nbCompo)
5313               {
5314                 if(j>=0 && j<nbOfTuples)
5315                   std::transform(srcPt,srcPt+nbCompo,tmp,tmp,std::plus<T>());
5316                 else
5317                   {
5318                     std::ostringstream oss; oss << "DataArrayInt::accumulatePerChunck : At rank #" << i << " the input index array points to id " << j << " should be in [0," << nbOfTuples << ") !";
5319                     throw INTERP_KERNEL::Exception(oss.str().c_str());
5320                   }
5321               }
5322           }
5323         else
5324           {
5325             std::ostringstream oss; oss << "DataArrayInt::accumulatePerChunck : At rank #" << i << " the input index array is not in ascendingly sorted.";
5326             throw INTERP_KERNEL::Exception(oss.str().c_str());
5327           }
5328       }
5329     ret->copyStringInfoFrom(*this);
5330     return ret.retn();
5331   }
5332
5333   /*!
5334    * Returns in a single walk in \a this the min value and the max value in \a this.
5335    * \a this is expected to be single component array.
5336    *
5337    * \param [out] minValue - the min value in \a this.
5338    * \param [out] maxValue - the max value in \a this.
5339    *
5340    * \sa getMinValueInArray, getMinValue, getMaxValueInArray, getMaxValue
5341    */
5342   template <class T>
5343   void DataArrayDiscrete<T>::getMinMaxValues(T& minValue, T& maxValue) const
5344   {
5345     this->checkAllocated();
5346     if(this->getNumberOfComponents()!=1)
5347       throw INTERP_KERNEL::Exception("DataArrayInt::getMinMaxValues : must be applied on DataArrayInt with only one component !");
5348     std::size_t nbElements(this->getNumberOfTuples());
5349     const T *pt(this->begin());
5350     minValue=std::numeric_limits<T>::max(); maxValue=-std::numeric_limits<T>::max();
5351     for(std::size_t i=0;i<nbElements;i++,pt++)
5352       {
5353         if(*pt<minValue)
5354           minValue=*pt;
5355         if(*pt>maxValue)
5356           maxValue=*pt;
5357       }
5358   }
5359
5360   /*!
5361    * Modify all elements of \a this array, so that
5362    * an element _x_ becomes \f$ numerator / x \f$.
5363    *  \warning If an exception is thrown because of presence of 0 element in \a this
5364    *           array, all elements processed before detection of the zero element remain
5365    *           modified.
5366    *  \param [in] numerator - the numerator used to modify array elements.
5367    *  \throw If \a this is not allocated.
5368    *  \throw If there is an element equal to 0 in \a this array.
5369    */
5370   template <class T>
5371   void DataArrayDiscrete<T>::applyInv(T numerator)
5372   {
5373     this->checkAllocated();
5374     T *ptr=this->getPointer();
5375     std::size_t nbOfElems=this->getNbOfElems();
5376     for(std::size_t i=0;i<nbOfElems;i++,ptr++)
5377       {
5378         if(*ptr!=0)
5379           {
5380             *ptr=numerator/(*ptr);
5381           }
5382         else
5383           {
5384             std::ostringstream oss; oss << "DataArrayInt::applyInv : presence of null value in tuple #" << i/(this->getNumberOfComponents()) << " component #" << i%(this->getNumberOfComponents());
5385             oss << " !";
5386             throw INTERP_KERNEL::Exception(oss.str().c_str());
5387           }
5388       }
5389     this->declareAsNew();
5390   }
5391
5392   /*!
5393    * Modify all elements of \a this array, so that
5394    * an element _x_ becomes \f$ x / val \f$.
5395    *  \param [in] val - the denominator used to modify array elements.
5396    *  \throw If \a this is not allocated.
5397    *  \throw If \a val == 0.
5398    */
5399   template <class T>
5400   void DataArrayDiscrete<T>::applyDivideBy(T val)
5401   {
5402     if(val==0)
5403       throw INTERP_KERNEL::Exception("DataArrayInt::applyDivideBy : Trying to divide by 0 !");
5404     this->checkAllocated();
5405     T *ptr=this->getPointer();
5406     std::size_t nbOfElems=this->getNbOfElems();
5407     std::transform(ptr,ptr+nbOfElems,ptr,std::bind(std::divides<T>(),std::placeholders::_1,val));
5408     this->declareAsNew();
5409   }
5410
5411   /*!
5412    * Modify all elements of \a this array, so that
5413    * an element _x_ becomes  <em> x % val </em>.
5414    *  \param [in] val - the divisor used to modify array elements.
5415    *  \throw If \a this is not allocated.
5416    *  \throw If \a val <= 0.
5417    */
5418   template <class T>
5419   void DataArrayDiscrete<T>::applyModulus(T val)
5420   {
5421     if(val<=0)
5422       throw INTERP_KERNEL::Exception("DataArrayInt::applyDivideBy : Trying to operate modulus on value <= 0 !");
5423     this->checkAllocated();
5424     T *ptr=this->getPointer();
5425     std::size_t nbOfElems=this->getNbOfElems();
5426     std::transform(ptr,ptr+nbOfElems,ptr,std::bind(std::modulus<T>(),std::placeholders::_1,val));
5427     this->declareAsNew();
5428   }
5429
5430   /*!
5431    * Modify all elements of \a this array, so that
5432    * an element _x_ becomes <em> val % x </em>.
5433    *  \warning If an exception is thrown because of presence of an element <= 0 in \a this
5434    *           array, all elements processed before detection of the zero element remain
5435    *           modified.
5436    *  \param [in] val - the divident used to modify array elements.
5437    *  \throw If \a this is not allocated.
5438    *  \throw If there is an element equal to or less than 0 in \a this array.
5439    */
5440   template <class T>
5441   void DataArrayDiscrete<T>::applyRModulus(T val)
5442   {
5443     this->checkAllocated();
5444     T *ptr=this->getPointer();
5445     std::size_t nbOfElems=this->getNbOfElems();
5446     for(std::size_t i=0;i<nbOfElems;i++,ptr++)
5447       {
5448         if(*ptr>0)
5449           {
5450             *ptr=val%(*ptr);
5451           }
5452         else
5453           {
5454             std::ostringstream oss; oss << "DataArrayInt::applyRModulus : presence of value <=0 in tuple #" << i/(this->getNumberOfComponents()) << " component #" << i%(this->getNumberOfComponents());
5455             oss << " !";
5456             throw INTERP_KERNEL::Exception(oss.str().c_str());
5457           }
5458       }
5459     this->declareAsNew();
5460   }
5461
5462   /*!
5463    * Modify all elements of \a this array, so that
5464    * an element _x_ becomes <em> val ^ x </em>.
5465    *  \param [in] val - the value used to apply pow on all array elements.
5466    *  \throw If \a this is not allocated.
5467    *  \throw If \a val < 0.
5468    */
5469   template <class T>
5470   void DataArrayDiscrete<T>::applyPow(T val)
5471   {
5472     this->checkAllocated();
5473     if(val<0)
5474       throw INTERP_KERNEL::Exception("DataArrayInt::applyPow : input pow in < 0 !");
5475     T *ptr=this->getPointer();
5476     std::size_t nbOfElems=this->getNbOfElems();
5477     if(val==0)
5478       {
5479         std::fill(ptr,ptr+nbOfElems,1);
5480         return ;
5481       }
5482     for(std::size_t i=0;i<nbOfElems;i++,ptr++)
5483       {
5484         T tmp=1;
5485         for(T j=0;j<val;j++)
5486           tmp*=*ptr;
5487         *ptr=tmp;
5488       }
5489     this->declareAsNew();
5490   }
5491
5492   /*!
5493    * Modify all elements of \a this array, so that
5494    * an element _x_ becomes \f$ val ^ x \f$.
5495    *  \param [in] val - the value used to apply pow on all array elements.
5496    *  \throw If \a this is not allocated.
5497    *  \throw If there is an element < 0 in \a this array.
5498    *  \warning If an exception is thrown because of presence of 0 element in \a this
5499    *           array, all elements processed before detection of the zero element remain
5500    *           modified.
5501    */
5502   template <class T>
5503   void DataArrayDiscrete<T>::applyRPow(T val)
5504   {
5505     this->checkAllocated();
5506     T *ptr=this->getPointer();
5507     std::size_t nbOfElems=this->getNbOfElems();
5508     for(std::size_t i=0;i<nbOfElems;i++,ptr++)
5509       {
5510         if(*ptr>=0)
5511           {
5512             T tmp=1;
5513             for(T j=0;j<*ptr;j++)
5514               tmp*=val;
5515             *ptr=tmp;
5516           }
5517         else
5518           {
5519             std::ostringstream oss; oss << "DataArrayInt::applyRPow : presence of negative value in tuple #" << i/(this->getNumberOfComponents()) << " component #" << i%(this->getNumberOfComponents());
5520             oss << " !";
5521             throw INTERP_KERNEL::Exception(oss.str().c_str());
5522           }
5523       }
5524     this->declareAsNew();
5525   }
5526
5527   /*!
5528    * This method works only on data array with one component.
5529    * This method returns a newly allocated array storing stored ascendantly tuple ids in \b this so that
5530    * this[*id] in [\b vmin,\b vmax)
5531    *
5532    * \param [in] vmin begin of range. This value is included in range (included).
5533    * \param [in] vmax end of range. This value is \b not included in range (excluded).
5534    * \return a newly allocated data array that the caller should deal with.
5535    *
5536    * \sa DataArrayInt::findIdsNotInRange , DataArrayInt::findIdsStricltyNegative
5537    */
5538   template <class T>
5539   DataArrayIdType *DataArrayDiscrete<T>::findIdsInRange(T vmin, T vmax) const
5540   {
5541     InRange<T> ir(vmin,vmax);
5542     MCAuto<DataArrayIdType> ret(this->findIdsAdv(ir));
5543     return ret.retn();
5544   }
5545
5546   /*!
5547    * This method works only on data array with one component.
5548    * This method returns a newly allocated array storing stored ascendantly tuple ids in \b this so that
5549    * this[*id] \b not in [\b vmin,\b vmax)
5550    *
5551    * \param [in] vmin begin of range. This value is \b not included in range (excluded).
5552    * \param [in] vmax end of range. This value is included in range (included).
5553    * \return a newly allocated data array that the caller should deal with.
5554    *
5555    * \sa DataArrayInt::findIdsInRange , DataArrayInt::findIdsStricltyNegative
5556    */
5557   template <class T>
5558   DataArrayIdType *DataArrayDiscrete<T>::findIdsNotInRange(T vmin, T vmax) const
5559   {
5560     NotInRange<T> nir(vmin,vmax);
5561     MCAuto<DataArrayIdType> ret(this->findIdsAdv(nir));
5562     return ret.retn();
5563   }
5564
5565   /*!
5566    * This method works only on data array with one component.
5567    * This method checks that all ids in \b this are in [ \b vmin, \b vmax ). If there is at least one element in \a this not in [ \b vmin, \b vmax ) an exception will be thrown.
5568    *
5569    * \param [in] vmin begin of range. This value is included in range (included).
5570    * \param [in] vmax end of range. This value is \b not included in range (excluded).
5571    * \return if all ids in \a this are so that (*this)[i]==i for all i in [ 0, \c this->getNumberOfTuples() ). */
5572   template <class T>
5573   bool DataArrayDiscrete<T>::checkAllIdsInRange(T vmin, T vmax) const
5574   {
5575     this->checkAllocated();
5576     if(this->getNumberOfComponents()!=1)
5577       throw INTERP_KERNEL::Exception("DataArrayInt::checkAllIdsInRange : this must have exactly one component !");
5578     mcIdType nbOfTuples(this->getNumberOfTuples());
5579     bool ret=true;
5580     const T *cptr=this->getConstPointer();
5581     for(mcIdType i=0;i<nbOfTuples;i++,cptr++)
5582       {
5583         if(*cptr>=vmin && *cptr<vmax)
5584           { ret=ret && *cptr==i; }
5585         else
5586           {
5587             std::ostringstream oss; oss << "DataArrayInt::checkAllIdsInRange : tuple #" << i << " has value " << *cptr << " should be in [" << vmin << "," << vmax << ") !";
5588             throw INTERP_KERNEL::Exception(oss.str().c_str());
5589           }
5590       }
5591     return ret;
5592   }
5593
5594   /*!
5595    * Returns a new DataArrayInt which contains a complement of elements of \a this
5596    * one-dimensional array. I.e. the result array contains all elements from the range [0,
5597    * \a nbOfElement) not present in \a this array.
5598    *  \param [in] nbOfElement - maximal size of the result array.
5599    *  \return DataArrayInt * - a new instance of DataArrayInt. The caller is to delete this
5600    *         array using decrRef() as it is no more needed.
5601    *  \throw If \a this is not allocated.
5602    *  \throw If \a this->getNumberOfComponents() != 1.
5603    *  \throw If any element \a x of \a this array violates condition ( 0 <= \a x < \a
5604    *         nbOfElement ).
5605    */
5606   template <class T>
5607   DataArrayIdType *DataArrayDiscrete<T>::buildComplement(mcIdType nbOfElement) const
5608   {
5609     this->checkAllocated();
5610     if(this->getNumberOfComponents()!=1)
5611       throw INTERP_KERNEL::Exception("DataArrayInt::buildComplement : only single component allowed !");
5612     std::vector<bool> tmp(nbOfElement);
5613     const T *pt=this->getConstPointer();
5614     std::size_t nbOfElements=this->getNumberOfTuples();
5615     for(const T *w=pt;w!=pt+nbOfElements;w++)
5616       if(*w>=0 && *w<nbOfElement)
5617         tmp[*w]=true;
5618       else
5619         throw INTERP_KERNEL::Exception("DataArrayInt::buildComplement : an element is not in valid range : [0,nbOfElement) !");
5620     std::size_t nbOfRetVal=std::count(tmp.begin(),tmp.end(),false);
5621     DataArrayIdType *ret=DataArrayIdType::New();
5622     ret->alloc(nbOfRetVal,1);
5623     mcIdType j=0;
5624     mcIdType *retPtr=ret->getPointer();
5625     for(mcIdType i=0;i<nbOfElement;i++)
5626       if(!tmp[i])
5627         retPtr[j++]=i;
5628     return ret;
5629   }
5630
5631   /*!
5632    * Returns a new DataArrayInt containing elements of \a this one-dimensional missing
5633    * from an \a other one-dimensional array.
5634    *  \param [in] other - a DataArrayInt containing elements not to include in the result array.
5635    *  \return DataArrayInt * - a new instance of DataArrayInt with one component. The
5636    *         caller is to delete this array using decrRef() as it is no more needed.
5637    *  \throw If \a other is NULL.
5638    *  \throw If \a other is not allocated.
5639    *  \throw If \a other->getNumberOfComponents() != 1.
5640    *  \throw If \a this is not allocated.
5641    *  \throw If \a this->getNumberOfComponents() != 1.
5642    *  \sa DataArrayInt::buildSubstractionOptimized()
5643    */
5644   template <class T>
5645   typename Traits<T>::ArrayType *DataArrayDiscrete<T>::buildSubstraction(const DataArrayType *other) const
5646   {
5647     if(!other)
5648       throw INTERP_KERNEL::Exception("DataArrayInt::buildSubstraction : DataArrayInt pointer in input is NULL !");
5649     this->checkAllocated();
5650     other->checkAllocated();
5651     if(this->getNumberOfComponents()!=1)
5652       throw INTERP_KERNEL::Exception("DataArrayInt::buildSubstraction : only single component allowed !");
5653     if(other->getNumberOfComponents()!=1)
5654       throw INTERP_KERNEL::Exception("DataArrayInt::buildSubstraction : only single component allowed for other type !");
5655     const T *pt=this->getConstPointer();
5656     std::size_t nbOfElements=this->getNumberOfTuples();
5657     std::set<T> s1(pt,pt+nbOfElements);
5658     pt=other->getConstPointer();
5659     nbOfElements=other->getNumberOfTuples();
5660     std::set<T> s2(pt,pt+nbOfElements);
5661     std::vector<T> r;
5662     std::set_difference(s1.begin(),s1.end(),s2.begin(),s2.end(),std::back_insert_iterator< std::vector<T> >(r));
5663     DataArrayType *ret=DataArrayType::New();
5664     ret->alloc(r.size(),1);
5665     std::copy(r.begin(),r.end(),ret->getPointer());
5666     return ret;
5667   }
5668
5669   /*!
5670    * \a this is expected to have one component and to be sorted ascendingly (as for \a other).
5671    * \a other is expected to be a part of \a this. If not DataArrayInt::buildSubstraction should be called instead.
5672    *
5673    * \param [in] other an array with one component and expected to be sorted ascendingly.
5674    * \ret list of ids in \a this but not in \a other.
5675    * \sa DataArrayInt::buildSubstraction
5676    */
5677   template <class T>
5678   typename Traits<T>::ArrayType *DataArrayDiscrete<T>::buildSubstractionOptimized(const DataArrayType *other) const
5679   {
5680     static const char *MSG="DataArrayInt::buildSubstractionOptimized : only single component allowed !";
5681     if(!other) throw INTERP_KERNEL::Exception("DataArrayInt::buildSubstractionOptimized : NULL input array !");
5682     this->checkAllocated(); other->checkAllocated();
5683     if(this->getNumberOfComponents()!=1) throw INTERP_KERNEL::Exception(MSG);
5684     if(other->getNumberOfComponents()!=1) throw INTERP_KERNEL::Exception(MSG);
5685     const T *pt1Bg(this->begin()),*pt1End(this->end()),*pt2Bg(other->begin()),*pt2End(other->end());
5686     const T *work1(pt1Bg),*work2(pt2Bg);
5687     MCAuto<DataArrayType> ret(DataArrayType::New()); ret->alloc(0,1);
5688     for(;work1!=pt1End;work1++)
5689       {
5690         if(work2!=pt2End && *work1==*work2)
5691           work2++;
5692         else
5693           ret->pushBackSilent(*work1);
5694       }
5695     return ret.retn();
5696   }
5697
5698   /*!
5699    * Returns a new DataArrayInt which contains all elements of \a this and a given
5700    * one-dimensional arrays. The result array does not contain any duplicates
5701    * and its values are sorted in ascending order.
5702    *  \param [in] other - an array to unite with \a this one.
5703    *  \return DataArrayInt * - a new instance of DataArrayInt. The caller is to delete this
5704    *         array using decrRef() as it is no more needed.
5705    *  \throw If \a this or \a other is not allocated.
5706    *  \throw If \a this->getNumberOfComponents() != 1.
5707    *  \throw If \a other->getNumberOfComponents() != 1.
5708    */
5709   template <class T>
5710   typename Traits<T>::ArrayType *DataArrayDiscrete<T>::buildUnion(const DataArrayType *other) const
5711   {
5712     std::vector<const DataArrayType *>arrs(2);
5713     arrs[0]=dynamic_cast<const DataArrayType *>(this); arrs[1]=other;
5714     return DataArrayDiscrete<T>::BuildUnion(arrs);
5715   }
5716
5717   /*!
5718    * Returns a new DataArrayInt which contains elements present in both \a this and a given
5719    * one-dimensional arrays. The result array does not contain any duplicates
5720    * and its values are sorted in ascending order.
5721    *  \param [in] other - an array to intersect with \a this one.
5722    *  \return DataArrayInt * - a new instance of DataArrayInt. The caller is to delete this
5723    *         array using decrRef() as it is no more needed.
5724    *  \throw If \a this or \a other is not allocated.
5725    *  \throw If \a this->getNumberOfComponents() != 1.
5726    *  \throw If \a other->getNumberOfComponents() != 1.
5727    */
5728   template <class T>
5729   typename Traits<T>::ArrayType *DataArrayDiscrete<T>::buildIntersection(const DataArrayType *other) const
5730   {
5731     std::vector<const DataArrayType *>arrs(2);
5732     arrs[0]=dynamic_cast<const DataArrayType *>(this); arrs[1]=other;
5733     return DataArrayDiscrete<T>::BuildIntersection(arrs);
5734   }
5735   /*!
5736    * This method can be applied on allocated with one component DataArrayInt instance.
5737    * Locate groups of all consecutive same values in \a this and return them into an indexed array of positions pointing to \a this starting with 0.
5738    * Number of tuples of returned array is equal to size of \a this->buildUnique() + 1.
5739    * Last value of returned array is equal to \a this->getNumberOfTuples()
5740    *
5741    * \b Example:
5742    * - \a this : [0, 1, 1, 2, 2, 3, 4, 4, 5, 5, 5, 11]
5743    * - \a return is : [0, 1, 3, 5, 6, 8, 11, 12]
5744    *
5745    * \return a newly allocated array containing the indexed array format of groups by same consecutive value.
5746    * \throw if \a this is not allocated or if \a this has not exactly one component.
5747    * \sa DataArrayInt::buildUnique, MEDCouplingSkyLineArray::groupPacks
5748    */
5749   template <class T>
5750   DataArrayIdType *DataArrayDiscrete<T>::indexOfSameConsecutiveValueGroups() const
5751   {
5752     this->checkAllocated();
5753     if(this->getNumberOfComponents()!=1)
5754       throw INTERP_KERNEL::Exception("DataArrayInt::indexOfSameConsecutiveValueGroups : only single component allowed !");
5755     const T *pt(this->begin());
5756     const T *const ptEnd(this->end()) , * const ptBg(this->begin());
5757     // first find nb of different values in this
5758     std::size_t nbOfTuplesOut(0);
5759     while( pt != ptEnd )
5760     {
5761       T val(*pt);
5762       const T *endOfPack(std::find_if(pt+1,ptEnd,[val](T elt){ return val!=elt; }));
5763       pt = endOfPack;
5764       ++nbOfTuplesOut;
5765     }
5766     MCAuto<DataArrayIdType> ret(DataArrayIdType::New()); ret->alloc(nbOfTuplesOut+1,1);
5767     mcIdType *retPtr(ret->getPointer()); *retPtr++ = 0;
5768     pt = this->begin();
5769     while( pt != ptEnd )
5770     {
5771       T val(*pt);
5772       const T *endOfPack(std::find_if(pt+1,ptEnd,[val](T elt){ return val!=elt; }));
5773       *retPtr++ = ToIdType( std::distance(ptBg,endOfPack) );
5774       pt = endOfPack;
5775       ++nbOfTuplesOut;
5776     }
5777     return ret.retn();
5778   }
5779
5780   /*!
5781    * This method can be applied on allocated with one component DataArrayInt instance.
5782    * This method is typically relevant for sorted arrays. All consecutive duplicated items in \a this will appear only once in returned DataArrayInt instance.
5783    * Example : if \a this contains [1,2,2,3,3,3,3,4,5,5,7,7,7,19] the returned array will contain [1,2,3,4,5,7,19]
5784    *
5785    * \return a newly allocated array that contain the result of the unique operation applied on \a this.
5786    * \throw if \a this is not allocated or if \a this has not exactly one component.
5787    * \sa DataArrayInt::buildUniqueNotSorted, DataArrayInt::indexOfSameConsecutiveValueGroups
5788    */
5789   template <class T>
5790   typename Traits<T>::ArrayType *DataArrayDiscrete<T>::buildUnique() const
5791   {
5792     this->checkAllocated();
5793     if(this->getNumberOfComponents()!=1)
5794       throw INTERP_KERNEL::Exception("DataArrayInt::buildUnique : only single component allowed !");
5795     std::size_t nbOfElements(this->getNumberOfTuples());
5796     MCAuto<DataArrayType> tmp(DataArrayType::New());
5797     tmp->deepCopyFrom(*this);
5798     T *data(tmp->getPointer());
5799     T *last(std::unique(data,data+nbOfElements));
5800     MCAuto<DataArrayType> ret(DataArrayType::New());
5801     ret->alloc(std::distance(data,last),1);
5802     std::copy(data,last,ret->getPointer());
5803     return ret.retn();
5804   }
5805
5806   /*!
5807    * This method can be applied on allocated with one component DataArrayInt instance.
5808    * This method keep elements only once by keeping the same order in \a this that is not expected to be sorted.
5809    *
5810    * \return a newly allocated array that contain the result of the unique operation applied on \a this.
5811    *
5812    * \throw if \a this is not allocated or if \a this has not exactly one component.
5813    *
5814    * \sa DataArrayInt::buildUnique
5815    */
5816   template <class T>
5817   typename Traits<T>::ArrayType *DataArrayDiscrete<T>::buildUniqueNotSorted() const
5818   {
5819     this->checkAllocated();
5820     if(this->getNumberOfComponents()!=1)
5821       throw INTERP_KERNEL::Exception("DataArrayInt::buildUniqueNotSorted : only single component allowed !");
5822     T minVal,maxVal;
5823     this->getMinMaxValues(minVal,maxVal);
5824     std::vector<bool> b(maxVal-minVal+1,false);
5825     const T *ptBg(this->begin()),*endBg(this->end());
5826     MCAuto<DataArrayType> ret(DataArrayType::New()); ret->alloc(0,1);
5827     for(const T *pt=ptBg;pt!=endBg;pt++)
5828       {
5829         if(!b[*pt-minVal])
5830           {
5831             ret->pushBackSilent(*pt);
5832             b[*pt-minVal]=true;
5833           }
5834       }
5835     ret->copyStringInfoFrom(*this);
5836     return ret.retn();
5837   }
5838
5839   /*!
5840    * Returns a new DataArrayInt which contains size of every of groups described by \a this
5841    * "index" array. Such "index" array is returned for example by
5842    * \ref MEDCoupling::MEDCouplingUMesh::buildDescendingConnectivity
5843    * "MEDCouplingUMesh::buildDescendingConnectivity" and
5844    * \ref MEDCoupling::MEDCouplingUMesh::getNodalConnectivityIndex
5845    * "MEDCouplingUMesh::getNodalConnectivityIndex" etc.
5846    * This method performs the reverse operation of DataArrayInt::computeOffsetsFull.
5847    *  \return DataArrayInt * - a new instance of DataArrayInt, whose number of tuples
5848    *          equals to \a this->getNumberOfComponents() - 1, and number of components is 1.
5849    *          The caller is to delete this array using decrRef() as it is no more needed.
5850    *  \throw If \a this is not allocated.
5851    *  \throw If \a this->getNumberOfComponents() != 1.
5852    *  \throw If \a this->getNumberOfTuples() < 2.
5853    *
5854    *  \b Example: <br>
5855    *         - this contains [1,3,6,7,7,9,15]
5856    *         - result array contains [2,3,1,0,2,6],
5857    *          where 2 = 3 - 1, 3 = 6 - 3, 1 = 7 - 6 etc.
5858    *
5859    * \sa DataArrayInt::computeOffsetsFull
5860    */
5861   template <class T>
5862   typename Traits<T>::ArrayType *DataArrayDiscrete<T>::deltaShiftIndex() const
5863   {
5864     this->checkAllocated();
5865     if(this->getNumberOfComponents()!=1)
5866       throw INTERP_KERNEL::Exception("DataArrayInt::deltaShiftIndex : only single component allowed !");
5867     std::size_t nbOfElements=this->getNumberOfTuples();
5868     if(nbOfElements<2)
5869       throw INTERP_KERNEL::Exception("DataArrayInt::deltaShiftIndex : 1 tuple at least must be present in 'this' !");
5870     const T *ptr=this->getConstPointer();
5871     DataArrayType *ret=DataArrayType::New();
5872     ret->alloc(nbOfElements-1,1);
5873     T *out=ret->getPointer();
5874     std::transform(ptr+1,ptr+nbOfElements,ptr,out,std::minus<T>());
5875     return ret;
5876   }
5877
5878   /*!
5879    * Modifies \a this one-dimensional array so that value of each element \a x
5880    * of \a this array (\a a) is computed as \f$ x_i = \sum_{j=0}^{i-1} a[ j ] \f$.
5881    * Or: for each i>0 new[i]=new[i-1]+old[i-1] for i==0 new[i]=0. Number of tuples
5882    * and components remains the same.<br>
5883    * This method is useful for allToAllV in MPI with contiguous policy. This method
5884    * differs from computeOffsetsFull() in that the number of tuples is \b not changed by
5885    * this one.
5886    *  \throw If \a this is not allocated.
5887    *  \throw If \a this->getNumberOfComponents() != 1.
5888    *
5889    *  \b Example: <br>
5890    *          - Before \a this contains [3,5,1,2,0,8]
5891    *          - After \a this contains  [0,3,8,9,11,11]<br>
5892    *          Note that the last element 19 = 11 + 8 is missing because size of \a this
5893    *          array is retained and thus there is no space to store the last element.
5894    */
5895   template <class T>
5896   void DataArrayDiscrete<T>::computeOffsets()
5897   {
5898     this->checkAllocated();
5899     if(this->getNumberOfComponents()!=1)
5900       throw INTERP_KERNEL::Exception("DataArrayInt::computeOffsets : only single component allowed !");
5901     std::size_t nbOfElements=this->getNumberOfTuples();
5902     if(nbOfElements==0)
5903       return ;
5904     T *work=this->getPointer();
5905     T tmp=work[0];
5906     work[0]=0;
5907     for(std::size_t i=1;i<nbOfElements;i++)
5908       {
5909         T tmp2=work[i];
5910         work[i]=work[i-1]+tmp;
5911         tmp=tmp2;
5912       }
5913     this->declareAsNew();
5914   }
5915
5916   /*!
5917    * Modifies \a this one-dimensional array so that value of each element \a x
5918    * of \a this array (\a a) is computed as \f$ x_i = \sum_{j=0}^{i-1} a[ j ] \f$.
5919    * Or: for each i>0 new[i]=new[i-1]+old[i-1] for i==0 new[i]=0. Number
5920    * components remains the same and number of tuples is inceamented by one.<br>
5921    * This method is useful for allToAllV in MPI with contiguous policy. This method
5922    * differs from computeOffsets() in that the number of tuples is changed by this one.
5923    * This method performs the reverse operation of DataArrayInt::deltaShiftIndex.
5924    *  \throw If \a this is not allocated.
5925    *  \throw If \a this->getNumberOfComponents() != 1.
5926    *
5927    *  \b Example: <br>
5928    *          - Before \a this contains [3,5,1,2,0,8]
5929    *          - After \a this contains  [0,3,8,9,11,11,19]<br>
5930    * \sa DataArrayInt::deltaShiftIndex
5931    */
5932   template <class T>
5933   void DataArrayDiscrete<T>::computeOffsetsFull()
5934   {
5935     this->checkAllocated();
5936     if(this->getNumberOfComponents()!=1)
5937       throw INTERP_KERNEL::Exception("DataArrayInt::computeOffsetsFull : only single component allowed !");
5938     std::size_t nbOfElements=this->getNumberOfTuples();
5939     T *ret=(T *)malloc((nbOfElements+1)*sizeof(T));
5940     const T *work=this->getConstPointer();
5941     ret[0]=0;
5942     for(std::size_t i=0;i<nbOfElements;i++)
5943       ret[i+1]=work[i]+ret[i];
5944     this->useArray(ret,true,DeallocType::C_DEALLOC,nbOfElements+1,1);
5945     this->declareAsNew();
5946   }
5947
5948   /*!
5949    * Returns two new DataArrayInt instances whose contents is computed from that of \a this and \a listOfIds arrays as follows.
5950    * \a this is expected to be an offset format ( as returned by DataArrayInt::computeOffsetsFull ) that is to say with one component
5951    * and ** sorted strictly increasingly **. \a listOfIds is expected to be sorted ascendingly (not strictly needed for \a listOfIds).
5952    * This methods searches in \a this, considered as a set of contiguous \c this->getNumberOfComponents() ranges, all ids in \a listOfIds
5953    * filling completely one of the ranges in \a this.
5954    *
5955    * \param [in] listOfIds a list of ids that has to be sorted ascendingly.
5956    * \param [out] rangeIdsFetched the range ids fetched
5957    * \param [out] idsInInputListThatFetch contains the list of ids in \a listOfIds that are \b fully included in a range in \a this. So
5958    *              \a idsInInputListThatFetch is a part of input \a listOfIds.
5959    *
5960    * \sa DataArrayInt::computeOffsetsFull
5961    *
5962    *  \b Example: <br>
5963    *          - \a this : [0,3,7,9,15,18]
5964    *          - \a listOfIds contains  [0,1,2,3,7,8,15,16,17]
5965    *          - \a rangeIdsFetched result array: [0,2,4]
5966    *          - \a idsInInputListThatFetch result array: [0,1,2,7,8,15,16,17]
5967    * In this example id 3 in input \a listOfIds is alone so it do not appear in output \a idsInInputListThatFetch.
5968    * <br>
5969    */
5970   template <class T>
5971   void DataArrayDiscrete<T>::findIdsRangesInListOfIds(const DataArrayType *listOfIds, DataArrayIdType *& rangeIdsFetched, DataArrayType *& idsInInputListThatFetch) const
5972   {
5973     if(!listOfIds)
5974       throw INTERP_KERNEL::Exception("DataArrayInt::findIdsRangesInListOfIds : input list of ids is null !");
5975     listOfIds->checkAllocated(); this->checkAllocated();
5976     if(listOfIds->getNumberOfComponents()!=1)
5977       throw INTERP_KERNEL::Exception("DataArrayInt::findIdsRangesInListOfIds : input list of ids must have exactly one component !");
5978     if(this->getNumberOfComponents()!=1)
5979       throw INTERP_KERNEL::Exception("DataArrayInt::findIdsRangesInListOfIds : this must have exactly one component !");
5980     MCAuto<DataArrayIdType> ret0=DataArrayIdType::New(); ret0->alloc(0,1);
5981     MCAuto<DataArrayType> ret1=DataArrayType::New(); ret1->alloc(0,1);
5982     const T *tupPtr(listOfIds->begin()), *tupEnd(listOfIds->end());
5983     const T *offBg(this->begin()),*offEnd(this->end()-1);
5984     const T *offPtr(offBg);
5985     while(tupPtr!=tupEnd && offPtr!=offEnd)
5986       {
5987         if(*tupPtr==*offPtr)
5988           {
5989             T i=offPtr[0];
5990             while(i<offPtr[1] && *tupPtr==i && tupPtr!=tupEnd) { i++; tupPtr++; }
5991             if(i==offPtr[1])
5992               {
5993                 ret0->pushBackSilent(ToIdType(std::distance(offBg,offPtr)));
5994                 ret1->pushBackValsSilent(tupPtr-(offPtr[1]-offPtr[0]),tupPtr);
5995                 offPtr++;
5996               }
5997           }
5998         else
5999           { if(*tupPtr<*offPtr) tupPtr++; else offPtr++; }
6000       }
6001     rangeIdsFetched=ret0.retn();
6002     idsInInputListThatFetch=ret1.retn();
6003   }
6004
6005   /*!
6006    * Returns a new DataArrayInt whose contents is computed from that of \a this and \a
6007    * offsets arrays as follows. \a offsets is a one-dimensional array considered as an
6008    * "index" array of a "iota" array, thus, whose each element gives an index of a group
6009    * beginning within the "iota" array. And \a this is a one-dimensional array
6010    * considered as a selector of groups described by \a offsets to include into the result array.
6011    *  \throw If \a offsets is NULL.
6012    *  \throw If \a offsets is not allocated.
6013    *  \throw If \a offsets->getNumberOfComponents() != 1.
6014    *  \throw If \a offsets is not monotonically increasing.
6015    *  \throw If \a this is not allocated.
6016    *  \throw If \a this->getNumberOfComponents() != 1.
6017    *  \throw If any element of \a this is not a valid index for \a offsets array.
6018    *
6019    *  \b Example: <br>
6020    *          - \a this: [0,2,3]
6021    *          - \a offsets: [0,3,6,10,14,20]
6022    *          - result array: [0,1,2,6,7,8,9,10,11,12,13] == <br>
6023    *            \c range(0,3) + \c range(6,10) + \c range(10,14) ==<br>
6024    *            \c range( \a offsets[ \a this[0] ], offsets[ \a this[0]+1 ]) +
6025    *            \c range( \a offsets[ \a this[1] ], offsets[ \a this[1]+1 ]) +
6026    *            \c range( \a offsets[ \a this[2] ], offsets[ \a this[2]+1 ])
6027    */
6028   template <class T>
6029   typename Traits<T>::ArrayType *DataArrayDiscrete<T>::buildExplicitArrByRanges(const DataArrayType *offsets) const
6030   {
6031     if(!offsets)
6032       throw INTERP_KERNEL::Exception("DataArrayInt::buildExplicitArrByRanges : DataArrayInt pointer in input is NULL !");
6033     this->checkAllocated();
6034     if(this->getNumberOfComponents()!=1)
6035       throw INTERP_KERNEL::Exception("DataArrayInt::buildExplicitArrByRanges : only single component allowed !");
6036     offsets->checkAllocated();
6037     if(offsets->getNumberOfComponents()!=1)
6038       throw INTERP_KERNEL::Exception("DataArrayInt::buildExplicitArrByRanges : input array should have only single component !");
6039     mcIdType othNbTuples=offsets->getNumberOfTuples()-1;
6040     mcIdType nbOfTuples=this->getNumberOfTuples();
6041     T retNbOftuples=0;
6042     const T *work=this->getConstPointer();
6043     const T *offPtr=offsets->getConstPointer();
6044     for(mcIdType i=0;i<nbOfTuples;i++)
6045       {
6046         T val=work[i];
6047         if(val>=0 && val<othNbTuples)
6048           {
6049             T delta=offPtr[val+1]-offPtr[val];
6050             if(delta>=0)
6051               retNbOftuples+=delta;
6052             else
6053               {
6054                 std::ostringstream oss; oss << "DataArrayInt::buildExplicitArrByRanges : Tuple #" << val << " of offset array has a delta < 0 !";
6055                 throw INTERP_KERNEL::Exception(oss.str().c_str());
6056               }
6057           }
6058         else
6059           {
6060             std::ostringstream oss; oss << "DataArrayInt::buildExplicitArrByRanges : Tuple #" << i << " in this contains " << val;
6061             oss << " whereas offsets array is of size " << othNbTuples+1 << " !";
6062             throw INTERP_KERNEL::Exception(oss.str().c_str());
6063           }
6064       }
6065     MCAuto<DataArrayType> ret=DataArrayType::New();
6066     ret->alloc(retNbOftuples,1);
6067     T *retPtr=ret->getPointer();
6068     for(mcIdType i=0;i<nbOfTuples;i++)
6069       {
6070         T val=work[i];
6071         T start=offPtr[val];
6072         T off=offPtr[val+1]-start;
6073         for(T j=0;j<off;j++,retPtr++)
6074           *retPtr=start+j;
6075       }
6076     return ret.retn();
6077   }
6078
6079   /*!
6080    * Returns a new DataArrayInt whose contents is computed using \a this that must be a
6081    * scaled array (monotonically increasing).
6082   from that of \a this and \a
6083    * offsets arrays as follows. \a offsets is a one-dimensional array considered as an
6084    * "index" array of a "iota" array, thus, whose each element gives an index of a group
6085    * beginning within the "iota" array. And \a this is a one-dimensional array
6086    * considered as a selector of groups described by \a offsets to include into the result array.
6087    *  \throw If \a  is NULL.
6088    *  \throw If \a this is not allocated.
6089    *  \throw If \a this->getNumberOfComponents() != 1.
6090    *  \throw If \a this->getNumberOfTuples() == 0.
6091    *  \throw If \a this is not monotonically increasing.
6092    *  \throw If any element of ids in ( \a bg \a stop \a step ) points outside the scale in \a this.
6093    *
6094    *  \b Example: <br>
6095    *          - \a bg , \a stop and \a step : (0,5,2)
6096    *          - \a this: [0,3,6,10,14,20]
6097    *          - result array: [0,0,0, 2,2,2,2, 4,4,4,4,4,4] == <br>
6098    */
6099   template <class T>
6100   typename Traits<T>::ArrayType *DataArrayDiscrete<T>::buildExplicitArrOfSliceOnScaledArr(T bg, T stop, T step) const
6101   {
6102     if(!this->isAllocated())
6103       throw INTERP_KERNEL::Exception("DataArrayInt::buildExplicitArrOfSliceOnScaledArr : not allocated array !");
6104     if(this->getNumberOfComponents()!=1)
6105       throw INTERP_KERNEL::Exception("DataArrayInt::buildExplicitArrOfSliceOnScaledArr : number of components is expected to be equal to one !");
6106     mcIdType nbOfTuples(this->getNumberOfTuples());
6107     if(nbOfTuples==0)
6108       throw INTERP_KERNEL::Exception("DataArrayInt::buildExplicitArrOfSliceOnScaledArr : number of tuples must be != 0 !");
6109     const T *ids(this->begin());
6110     mcIdType nbOfEltsInSlc=DataArrayTools<T>::GetNumberOfItemGivenBESRelative(bg,stop,step,"DataArrayInt::buildExplicitArrOfSliceOnScaledArr");
6111     T sz(0),pos(bg);
6112     for(mcIdType i=0;i<nbOfEltsInSlc;i++,pos+=step)
6113       {
6114         if(pos>=0 && pos<nbOfTuples-1)
6115           {
6116             T delta(ids[pos+1]-ids[pos]);
6117             sz+=delta;
6118             if(delta<0)
6119               {
6120                 std::ostringstream oss; oss << "DataArrayInt::buildExplicitArrOfSliceOnScaledArr : At pos #" << i << " of input slice, value is " << pos << " and at this pos this is not monotonically increasing !";
6121                 throw INTERP_KERNEL::Exception(oss.str().c_str());
6122               }
6123           }
6124         else
6125           {
6126             std::ostringstream oss; oss << "DataArrayInt::buildExplicitArrOfSliceOnScaledArr : At pos #" << i << " of input slice, value is " << pos << " should be in [0," << nbOfTuples-1 << ") !";
6127             throw INTERP_KERNEL::Exception(oss.str().c_str());
6128           }
6129       }
6130     MCAuto<DataArrayType> ret(DataArrayType::New()); ret->alloc(sz,1);
6131     T *retPtr(ret->getPointer());
6132     pos=bg;
6133     for(mcIdType i=0;i<nbOfEltsInSlc;i++,pos+=step)
6134       {
6135         T delta(ids[pos+1]-ids[pos]);
6136         for(T j=0;j<delta;j++,retPtr++)
6137           *retPtr=pos;
6138       }
6139     return ret.retn();
6140   }
6141
6142   /*!
6143    * Given in input ranges \a ranges, it returns a newly allocated DataArrayInt instance having one component and the same number of tuples than \a this.
6144    * For each tuple at place **i** in \a this it tells which is the first range in \a ranges that contains value \c this->getIJ(i,0) and put the result
6145    * in tuple **i** of returned DataArrayInt.
6146    * If ranges overlapped (in theory it should not) this method do not detect it and always returns the first range.
6147    *
6148    * For example if \a this contains : [1,24,7,8,10,17] and \a ranges contains [(0,3),(3,8),(8,15),(15,22),(22,30)]
6149    * The return DataArrayInt will contain : **[0,4,1,2,2,3]**
6150    *
6151    * \param [in] ranges typically come from output of MEDCouplingUMesh::ComputeRangesFromTypeDistribution. Each range is specified like this : 1st component is
6152    *             for lower value included and 2nd component is the upper value of corresponding range **excluded**.
6153    * \throw If offsets is a null pointer or does not have 2 components or if \a this is not allocated or \a this do not have exactly one component. To finish an exception
6154    *        is thrown if no ranges in \a ranges contains value in \a this.
6155    *
6156    * \sa DataArrayInt::findIdInRangeForEachTuple
6157    */
6158   template <class T>
6159   DataArrayIdType *DataArrayDiscrete<T>::findRangeIdForEachTuple(const DataArrayType *ranges) const
6160   {
6161     if(!ranges)
6162       throw INTERP_KERNEL::Exception("DataArrayInt::findRangeIdForEachTuple : null input pointer !");
6163     if(ranges->getNumberOfComponents()!=2)
6164       throw INTERP_KERNEL::Exception("DataArrayInt::findRangeIdForEachTuple : input DataArrayInt instance should have 2 components !");
6165     this->checkAllocated();
6166     if(this->getNumberOfComponents()!=1)
6167       throw INTERP_KERNEL::Exception("DataArrayInt::findRangeIdForEachTuple : this should have only one component !");
6168     mcIdType nbTuples(this->getNumberOfTuples());
6169     MCAuto<DataArrayIdType> ret=DataArrayIdType::New(); ret->alloc(nbTuples,1);
6170     mcIdType nbOfRanges(ranges->getNumberOfTuples());
6171     const T *rangesPtr=ranges->getConstPointer();
6172     mcIdType *retPtr=ret->getPointer();
6173     const T *inPtr=this->getConstPointer();
6174     for(mcIdType i=0;i<nbTuples;i++,retPtr++)
6175       {
6176         T val=inPtr[i];
6177         bool found=false;
6178         for(mcIdType j=0;j<nbOfRanges && !found;j++)
6179           if(val>=rangesPtr[2*j] && val<rangesPtr[2*j+1])
6180             { *retPtr=j; found=true; }
6181         if(found)
6182           continue;
6183         else
6184           {
6185             std::ostringstream oss; oss << "DataArrayInt::findRangeIdForEachTuple : tuple #" << i << " not found by any ranges !";
6186             throw INTERP_KERNEL::Exception(oss.str().c_str());
6187           }
6188       }
6189     return ret.retn();
6190   }
6191
6192   /*!
6193    * Given in input ranges \a ranges, it returns a newly allocated DataArrayInt instance having one component and the same number of tuples than \a this.
6194    * For each tuple at place **i** in \a this it tells which is the sub position of the first range in \a ranges that contains value \c this->getIJ(i,0) and put the result
6195    * in tuple **i** of returned DataArrayInt.
6196    * If ranges overlapped (in theory it should not) this method do not detect it and always returns the sub position of the first range.
6197    *
6198    * For example if \a this contains : [1,24,7,8,10,17] and \a ranges contains [(0,3),(3,8),(8,15),(15,22),(22,30)]
6199    * The return DataArrayInt will contain : **[1,2,4,0,2,2]**
6200    * This method is often called in pair with DataArrayInt::findRangeIdForEachTuple method.
6201    *
6202    * \param [in] ranges typically come from output of MEDCouplingUMesh::ComputeRangesFromTypeDistribution. Each range is specified like this : 1st component is
6203    *             for lower value included and 2nd component is the upper value of corresponding range **excluded**.
6204    * \throw If offsets is a null pointer or does not have 2 components or if \a this is not allocated or \a this do not have exactly one component. To finish an exception
6205    *        is thrown if no ranges in \a ranges contains value in \a this.
6206    * \sa DataArrayInt::findRangeIdForEachTuple
6207    */
6208   template <class T>
6209   typename Traits<T>::ArrayType *DataArrayDiscrete<T>::findIdInRangeForEachTuple(const DataArrayType *ranges) const
6210   {
6211     if(!ranges)
6212       throw INTERP_KERNEL::Exception("DataArrayInt::findIdInRangeForEachTuple : null input pointer !");
6213     if(ranges->getNumberOfComponents()!=2)
6214       throw INTERP_KERNEL::Exception("DataArrayInt::findIdInRangeForEachTuple : input DataArrayInt instance should have 2 components !");
6215     this->checkAllocated();
6216     if(this->getNumberOfComponents()!=1)
6217       throw INTERP_KERNEL::Exception("DataArrayInt::findIdInRangeForEachTuple : this should have only one component !");
6218     mcIdType nbTuples=this->getNumberOfTuples();
6219     MCAuto<DataArrayType> ret=DataArrayType::New(); ret->alloc(nbTuples,1);
6220     mcIdType nbOfRanges=ranges->getNumberOfTuples();
6221     const T *rangesPtr=ranges->getConstPointer();
6222     T *retPtr=ret->getPointer();
6223     const T *inPtr=this->getConstPointer();
6224     for(mcIdType i=0;i<nbTuples;i++,retPtr++)
6225       {
6226         T val=inPtr[i];
6227         bool found=false;
6228         for(mcIdType j=0;j<nbOfRanges && !found;j++)
6229           if(val>=rangesPtr[2*j] && val<rangesPtr[2*j+1])
6230             { *retPtr=val-rangesPtr[2*j]; found=true; }
6231         if(found)
6232           continue;
6233         else
6234           {
6235             std::ostringstream oss; oss << "DataArrayInt::findIdInRangeForEachTuple : tuple #" << i << " not found by any ranges !";
6236             throw INTERP_KERNEL::Exception(oss.str().c_str());
6237           }
6238       }
6239     return ret.retn();
6240   }
6241
6242   /*!
6243    * \b WARNING this method is a \b non \a const \b method. This method works tuple by tuple. Each tuple is expected to be pairs (number of components must be equal to 2).
6244    * This method rearrange each pair in \a this so that, tuple with id \b tid will be after the call \c this->getIJ(tid,0)==this->getIJ(tid-1,1) and \c this->getIJ(tid,1)==this->getIJ(tid+1,0).
6245    * If it is impossible to reach such condition an exception will be thrown ! \b WARNING In case of throw \a this can be partially modified !
6246    * If this method has correctly worked, \a this will be able to be considered as a linked list.
6247    * This method does nothing if number of tuples is lower of equal to 1.
6248    *
6249    * This method is useful for users having an unstructured mesh having only SEG2 to rearrange internally the connectivity without any coordinates consideration.
6250    *
6251    * \sa MEDCouplingUMesh::orderConsecutiveCells1D, DataArrayInt::sortToHaveConsecutivePairs(), DataArrayInt::fromLinkedListOfPairToList
6252    */
6253   template <class T>
6254   void DataArrayDiscrete<T>::sortEachPairToMakeALinkedList()
6255   {
6256     this->checkAllocated();
6257     if(this->getNumberOfComponents()!=2)
6258       throw INTERP_KERNEL::Exception("DataArrayInt::sortEachPairToMakeALinkedList : Only works on DataArrayInt instance with nb of components equal to 2 !");
6259     mcIdType nbOfTuples(this->getNumberOfTuples());
6260     if(nbOfTuples<=1)
6261       return ;
6262     T *conn(this->getPointer());
6263     for(mcIdType i=1;i<nbOfTuples;i++,conn+=2)
6264       {
6265         if(i>1)
6266           {
6267             if(conn[2]==conn[3])
6268               {
6269                 std::ostringstream oss; oss << "DataArrayInt::sortEachPairToMakeALinkedList : In the tuple #" << i << " presence of a pair filled with same ids !";
6270                 throw INTERP_KERNEL::Exception(oss.str().c_str());
6271               }
6272             if(conn[2]!=conn[1] && conn[3]!=conn[1])
6273               {
6274                 std::ostringstream oss; oss << "DataArrayInt::sortEachPairToMakeALinkedList : There is no common noeud between the tuple #" << i << " and the tuple #" << i + 1 << ". Need call DataArrayInt::sortToHaveConsecutivePairs() ";
6275                 throw INTERP_KERNEL::Exception(oss.str().c_str());
6276               }
6277             if(conn[2]!=conn[1] && conn[3]==conn[1] && conn[2]!=conn[0])
6278               std::swap(conn[2],conn[3]);
6279             //not(conn[2]==conn[1] && conn[3]!=conn[1] && conn[3]!=conn[0])
6280             if(conn[2]!=conn[1] || conn[3]==conn[1] || conn[3]==conn[0])
6281               {
6282                 std::ostringstream oss; oss << "DataArrayInt::sortEachPairToMakeALinkedList : In the tuple #" << i << " something is invalid !";
6283                 throw INTERP_KERNEL::Exception(oss.str().c_str());
6284               }
6285           }
6286         else
6287           {
6288             if(conn[0]==conn[1] || conn[2]==conn[3])
6289               throw INTERP_KERNEL::Exception("DataArrayInt::sortEachPairToMakeALinkedList : In the 2 first tuples presence of a pair filled with same ids !");
6290             T tmp[4];
6291             std::set<T> s;
6292             s.insert(conn,conn+4);
6293             if(s.size()!=3)
6294               throw INTERP_KERNEL::Exception("DataArrayInt::sortEachPairToMakeALinkedList : This can't be considered as a linked list regarding 2 first tuples !");
6295             if(std::count(conn,conn+4,conn[0])==2)
6296               {
6297                 tmp[0]=conn[1];
6298                 tmp[1]=conn[0];
6299                 tmp[2]=conn[0];
6300                 if(conn[2]==conn[0])
6301                   { tmp[3]=conn[3]; }
6302                 else
6303                   { tmp[3]=conn[2];}
6304                 std::copy(tmp,tmp+4,conn);
6305               }
6306             else
6307               {//here we are sure to have (std::count(conn,conn+4,conn[1])==2)
6308                 if(conn[1]==conn[3])
6309                   std::swap(conn[2],conn[3]);
6310               }
6311           }
6312       }
6313   }
6314
6315   /*!
6316    * This method is the improvement from the method sortEachPairToMakeALinkedList().
6317    *
6318    * \sa MEDCouplingUMesh::orderConsecutiveCells1D, DataArrayInt::sortEachPairToMakeALinkedList(), DataArrayInt::fromLinkedListOfPairToList
6319    */
6320   template <class T>
6321   void DataArrayDiscrete<T>::sortToHaveConsecutivePairs()
6322   {
6323     this->checkAllocated();
6324     if(this->getNumberOfComponents()!=2)
6325       throw INTERP_KERNEL::Exception("DataArrayInt::sortToHaveConsecutivePairs : Only works on DataArrayInt instance with nb of components equal to 2 !");
6326     mcIdType nbOfTuples(this->getNumberOfTuples());
6327     T *thisPtr(this->getPointer());
6328     mcIdType idOfLastTuple = 0;
6329     std::pair<T*,T*> tmp;
6330     if(thisPtr[0]==thisPtr[1])
6331       {
6332         THROW_IK_EXCEPTION("DataArrayInt::sortToHaveConsecutivePairs : In the first tuple presence of a pair filled with same ids !");
6333       }
6334     while(idOfLastTuple < nbOfTuples-1)
6335     {
6336       mcIdType i = idOfLastTuple+1;
6337       tmp.first = &thisPtr[2*i];
6338       tmp.second = &thisPtr[2*i+1];
6339       if(std::get<0>(tmp)[0] == std::get<1>(tmp)[0])
6340         {
6341           THROW_IK_EXCEPTION("DataArrayInt::sortToHaveConsecutivePairs : In the tuple #" << i << " presence of a pair filled with same ids !");
6342         }
6343       while((this->getIJ(idOfLastTuple,1) != std::get<0>(tmp)[0] &&
6344             this->getIJ(idOfLastTuple,1) != std::get<1>(tmp)[0]) &&
6345             i < nbOfTuples-1)
6346         {
6347           std::swap(std::get<0>(tmp)[0],thisPtr[2*(i+1)]);
6348           std::swap(std::get<1>(tmp)[0],thisPtr[2*(i+1)+1]);
6349           i++;
6350         }
6351       if(i < nbOfTuples-1 ||
6352          this->getIJ(idOfLastTuple,1) == std::get<0>(tmp)[0] ||
6353          this->getIJ(idOfLastTuple,1) == std::get<1>(tmp)[0])
6354       {
6355         if(this->getIJ(idOfLastTuple,1) != std::get<0>(tmp)[0])
6356           std::swap(std::get<0>(tmp)[0],std::get<1>(tmp)[0]);
6357         idOfLastTuple++;
6358       }
6359       else
6360       {
6361         THROW_IK_EXCEPTION("DataArrayInt::sortToHaveConsecutivePairs : not found the tuple which have the common noeud = " << this->getIJ(idOfLastTuple,1));
6362       }
6363     }
6364   }
6365
6366   /*!
6367    * \a this is expected to be a correctly linked list of pairs.
6368    *
6369    * \sa DataArrayInt::sortEachPairToMakeALinkedList
6370    */
6371   template <class T>
6372   MCAuto<typename Traits<T>::ArrayType> DataArrayDiscrete<T>::fromLinkedListOfPairToList() const
6373   {
6374     this->checkAllocated();
6375     this->checkNbOfComps(2,"DataArrayInt::fromLinkedListOfPairToList : this is expected to have 2 components");
6376     mcIdType nbTuples(this->getNumberOfTuples());
6377     if(nbTuples<1)
6378       throw INTERP_KERNEL::Exception("DataArrayInt::fromLinkedListOfPairToList : no tuples in this ! Not a linked list !");
6379     MCAuto<DataArrayType> ret(DataArrayType::New()); ret->alloc(nbTuples+1,1);
6380     const T *thisPtr(this->begin());
6381     T *retPtr(ret->getPointer());
6382     retPtr[0]=thisPtr[0];
6383     for(mcIdType i=0;i<nbTuples;i++)
6384       {
6385         retPtr[i+1]=thisPtr[2*i+1];
6386         if(i<nbTuples-1)
6387           if(thisPtr[2*i+1]!=thisPtr[2*(i+1)+0])
6388             {
6389               std::ostringstream oss; oss << "DataArrayInt::fromLinkedListOfPairToList : this is not a proper linked list of pair. The link is broken between tuple #" << i << " and tuple #" << i+1 << " ! Call sortEachPairToMakeALinkedList ?";
6390               throw INTERP_KERNEL::Exception(oss.str());
6391             }
6392       }
6393     return ret;
6394   }
6395
6396   /*!
6397    * This method returns all different values found in \a this. This method throws if \a this has not been allocated.
6398    * But the number of components can be different from one.
6399    * \return a newly allocated array (that should be dealt by the caller) containing different values in \a this.
6400    */
6401   template <class T>
6402   typename Traits<T>::ArrayType *DataArrayDiscrete<T>::getDifferentValues() const
6403   {
6404     this->checkAllocated();
6405     std::set<T> ret;
6406     ret.insert(this->begin(),this->end());
6407     MCAuto<DataArrayType> ret2=DataArrayType::New();
6408     ret2->alloc(ret.size(),1);
6409     std::copy(ret.begin(),ret.end(),ret2->getPointer());
6410     return ret2.retn();
6411   }
6412
6413   /*!
6414    * This method is a refinement of DataArrayInt::getDifferentValues because it returns not only different values in \a this but also, for each of
6415    * them it tells which tuple id have this id.
6416    * This method works only on arrays with one component (if it is not the case call DataArrayInt::rearrange(1) ).
6417    * This method returns two arrays having same size.
6418    * The instances of DataArrayInt in the returned vector have be specially allocated and computed by this method. Each of them should be dealt by the caller of this method.
6419    * Example : if this is equal to [1,0,1,2,0,2,2,-3,2] -> differentIds=[-3,0,1,2] and returned array will be equal to [[7],[1,4],[0,2],[3,5,6,8]]
6420    */
6421   template <class T>
6422   std::vector<DataArrayIdType *> DataArrayDiscrete<T>::partitionByDifferentValues(std::vector<T>& differentIds) const
6423   {
6424     this->checkAllocated();
6425     if(this->getNumberOfComponents()!=1)
6426       throw INTERP_KERNEL::Exception("DataArrayInt::partitionByDifferentValues : this should have only one component !");
6427     mcIdType id=0;
6428     std::map<T,mcIdType> m,m2,m3;
6429     for(const T *w=this->begin();w!=this->end();w++)
6430       m[*w]++;
6431     differentIds.resize(m.size());
6432     std::vector<DataArrayIdType *> ret(m.size());
6433     std::vector<mcIdType *> retPtr(m.size());
6434     for(typename std::map<T,mcIdType>::const_iterator it=m.begin();it!=m.end();it++,id++)
6435       {
6436         m2[(*it).first]=id;
6437         ret[id]=DataArrayIdType::New();
6438         ret[id]->alloc((*it).second,1);
6439         retPtr[id]=ret[id]->getPointer();
6440         differentIds[id]=(*it).first;
6441       }
6442     id=0;
6443     for(const T *w=this->begin();w!=this->end();w++,id++)
6444       {
6445         retPtr[m2[*w]][m3[*w]++]=id;
6446       }
6447     return ret;
6448   }
6449
6450   /*!
6451    * This method split ids in [0, \c this->getNumberOfTuples() ) using \a this array as a field of weight (>=0 each).
6452    * The aim of this method is to return a set of \a nbOfSlices chunk of contiguous ids as balanced as possible.
6453    *
6454    * \param [in] nbOfSlices - number of slices expected.
6455    * \return - a vector having a size equal to \a nbOfSlices giving the start (included) and the stop (excluded) of each chunks.
6456    *
6457    * \sa DataArray::GetSlice
6458    * \throw If \a this is not allocated or not with exactly one component.
6459    * \throw If an element in \a this if < 0.
6460    */
6461   template <class T>
6462   std::vector< std::pair<mcIdType,mcIdType> > DataArrayDiscrete<T>::splitInBalancedSlices(mcIdType nbOfSlices) const
6463   {
6464     if(!this->isAllocated() || this->getNumberOfComponents()!=1)
6465       throw INTERP_KERNEL::Exception("DataArrayInt::splitInBalancedSlices : this array should have number of components equal to one and must be allocated !");
6466     if(nbOfSlices<=0)
6467       throw INTERP_KERNEL::Exception("DataArrayInt::splitInBalancedSlices : number of slices must be >= 1 !");
6468     T sum(this->accumulate((std::size_t)0));
6469     mcIdType nbOfTuples(this->getNumberOfTuples());
6470     T sumPerSlc(sum/FromIdType<T>(nbOfSlices));
6471     mcIdType pos(0);
6472     const T *w(this->begin());
6473     std::vector< std::pair<mcIdType,mcIdType> > ret(nbOfSlices);
6474     for(mcIdType i=0;i<nbOfSlices;i++)
6475       {
6476         std::pair<mcIdType, mcIdType> p(pos,-1);
6477         T locSum(0);
6478         while(locSum<sumPerSlc && pos<nbOfTuples) { pos++; locSum+=*w++; }
6479         if(i!=nbOfSlices-1)
6480           p.second=pos;
6481         else
6482           p.second=nbOfTuples;
6483         ret[i]=p;
6484       }
6485     return ret;
6486   }
6487
6488   /*!
6489    * Modify \a this array so that each value becomes a modulus of division of this value by
6490    * a value of another DataArrayInt. There are 3 valid cases.
6491    * 1.  The arrays have same number of tuples and components. Then each value of
6492    *    \a this array is divided by the corresponding value of \a other one, i.e.:
6493    *   _a_ [ i, j ] %= _other_ [ i, j ].
6494    * 2.  The arrays have same number of tuples and \a other array has one component. Then
6495    *   _a_ [ i, j ] %= _other_ [ i, 0 ].
6496    * 3.  The arrays have same number of components and \a other array has one tuple. Then
6497    *   _a_ [ i, j ] %= _a2_ [ 0, j ].
6498    *
6499    *  \warning No check of division by zero is performed!
6500    *  \param [in] other - a divisor array.
6501    *  \throw If \a other is NULL.
6502    *  \throw If \a this->getNumberOfTuples() != \a other->getNumberOfTuples() and
6503    *         \a this->getNumberOfComponents() != \a other->getNumberOfComponents() and
6504    *         \a other has number of both tuples and components not equal to 1.
6505    */
6506   template <class T>
6507   void DataArrayDiscrete<T>::modulusEqual(const DataArrayType *other)
6508   {
6509     if(!other)
6510       throw INTERP_KERNEL::Exception("DataArrayInt::modulusEqual : input DataArrayInt instance is NULL !");
6511     const char *msg="Nb of tuples mismatch for DataArrayInt::modulusEqual !";
6512     this->checkAllocated(); other->checkAllocated();
6513     mcIdType nbOfTuple(this->getNumberOfTuples());
6514     mcIdType nbOfTuple2(other->getNumberOfTuples());
6515     std::size_t nbOfComp(this->getNumberOfComponents());
6516     std::size_t nbOfComp2(other->getNumberOfComponents());
6517     if(nbOfTuple==nbOfTuple2)
6518       {
6519         if(nbOfComp==nbOfComp2)
6520           {
6521             std::transform(this->begin(),this->end(),other->begin(),this->getPointer(),std::modulus<T>());
6522           }
6523         else if(nbOfComp2==1)
6524           {
6525             if(nbOfComp2==nbOfComp)
6526               {
6527                 T *ptr=this->getPointer();
6528                 const T *ptrc=other->getConstPointer();
6529                 for(mcIdType i=0;i<nbOfTuple;i++)
6530                   std::transform(ptr+i*nbOfComp,ptr+(i+1)*nbOfComp,ptr+i*nbOfComp,std::bind(std::modulus<T>(),std::placeholders::_1,*ptrc++));
6531               }
6532             else
6533               throw INTERP_KERNEL::Exception(msg);
6534           }
6535         else
6536           throw INTERP_KERNEL::Exception(msg);
6537       }
6538     else if(nbOfTuple2==1)
6539       {
6540         T *ptr=this->getPointer();
6541         const T *ptrc=other->getConstPointer();
6542         for(mcIdType i=0;i<nbOfTuple;i++)
6543           std::transform(ptr+i*nbOfComp,ptr+(i+1)*nbOfComp,ptrc,ptr+i*nbOfComp,std::modulus<T>());
6544       }
6545     else
6546       throw INTERP_KERNEL::Exception(msg);
6547     this->declareAsNew();
6548   }
6549
6550   /*!
6551    * Apply pow on values of another DataArrayInt to values of \a this one.
6552    *
6553    *  \param [in] other - an array to pow to \a this one.
6554    *  \throw If \a other is NULL.
6555    *  \throw If \a this->getNumberOfTuples() != \a other->getNumberOfTuples()
6556    *  \throw If \a this->getNumberOfComponents() != 1 or \a other->getNumberOfComponents() != 1
6557    *  \throw If there is a negative value in \a other.
6558    */
6559   template <class T>
6560   void DataArrayDiscrete<T>::powEqual(const DataArrayType *other)
6561   {
6562     if(!other)
6563       throw INTERP_KERNEL::Exception("DataArrayInt::powEqual : input instance is null !");
6564     mcIdType nbOfTuple=this->getNumberOfTuples();
6565     mcIdType nbOfTuple2=other->getNumberOfTuples();
6566     std::size_t nbOfComp=this->getNumberOfComponents();
6567     std::size_t nbOfComp2=other->getNumberOfComponents();
6568     if(nbOfTuple!=nbOfTuple2)
6569       throw INTERP_KERNEL::Exception("DataArrayInt::powEqual : number of tuples mismatches !");
6570     if(nbOfComp!=1 || nbOfComp2!=1)
6571       throw INTERP_KERNEL::Exception("DataArrayInt::powEqual : number of components of both arrays must be equal to 1 !");
6572     T *ptr=this->getPointer();
6573     const T *ptrc=other->begin();
6574     for(mcIdType i=0;i<nbOfTuple;i++,ptrc++,ptr++)
6575       {
6576         if(*ptrc>=0)
6577           {
6578             T tmp=1;
6579             for(T j=0;j<*ptrc;j++)
6580               tmp*=*ptr;
6581             *ptr=tmp;
6582           }
6583         else
6584           {
6585             std::ostringstream oss; oss << "DataArrayInt::powEqual : on tuple #" << i << " of other value is < 0 (" << *ptrc << ") !";
6586             throw INTERP_KERNEL::Exception(oss.str().c_str());
6587           }
6588       }
6589     this->declareAsNew();
6590   }
6591
6592   ////////////////////////////////////
6593   /*!
6594    * Useless method for end user. Only for MPI/Corba/File serialsation for multi arrays class.
6595    * Server side.
6596    */
6597   template <class T>
6598   void DataArrayDiscrete<T>::getTinySerializationIntInformation(std::vector<mcIdType>& tinyInfo) const
6599   {
6600     tinyInfo.resize(2);
6601     if(this->isAllocated())
6602       {
6603         tinyInfo[0]=this->getNumberOfTuples();
6604         tinyInfo[1]=ToIdType(this->getNumberOfComponents());
6605       }
6606     else
6607       {
6608         tinyInfo[0]=-1;
6609         tinyInfo[1]=-1;
6610       }
6611   }
6612
6613   /*!
6614    * Useless method for end user. Only for MPI/Corba/File serialsation for multi arrays class.
6615    * Server side.
6616    */
6617   template <class T>
6618   void DataArrayDiscrete<T>::getTinySerializationStrInformation(std::vector<std::string>& tinyInfo) const
6619   {
6620     if(this->isAllocated())
6621       {
6622         std::size_t nbOfCompo(this->getNumberOfComponents());
6623         tinyInfo.resize(nbOfCompo+1);
6624         tinyInfo[0]=this->getName();
6625         for(std::size_t i=0;i<nbOfCompo;i++)
6626           tinyInfo[i+1]=this->getInfoOnComponent(i);
6627       }
6628     else
6629       {
6630         tinyInfo.resize(1);
6631         tinyInfo[0]=this->getName();
6632       }
6633   }
6634
6635   /*!
6636    * Useless method for end user. Only for MPI/Corba/File serialsation for multi arrays class.
6637    * This method returns if a feeding is needed.
6638    */
6639   template <class T>
6640   bool DataArrayDiscrete<T>::resizeForUnserialization(const std::vector<mcIdType>& tinyInfoI)
6641   {
6642     mcIdType nbOfTuple=tinyInfoI[0];
6643     mcIdType nbOfComp=tinyInfoI[1];
6644     if(nbOfTuple!=-1 || nbOfComp!=-1)
6645       {
6646         this->alloc(nbOfTuple,nbOfComp);
6647         return true;
6648       }
6649     return false;
6650   }
6651
6652   /*!
6653    * Useless method for end user. Only for MPI/Corba/File serialsation for multi arrays class.
6654    * This method returns if a feeding is needed.
6655    */
6656   template <class T>
6657   void DataArrayDiscrete<T>::finishUnserialization(const std::vector<mcIdType>& tinyInfoI, const std::vector<std::string>& tinyInfoS)
6658   {
6659     this->setName(tinyInfoS[0]);
6660     if(this->isAllocated())
6661       {
6662         mcIdType nbOfCompo=tinyInfoI[1];
6663         for(mcIdType i=0;i<nbOfCompo;i++)
6664           this->setInfoOnComponent(i,tinyInfoS[i+1]);
6665       }
6666   }
6667
6668   ////////////////////////////////////
6669
6670   /*!
6671    * Returns a new DataArrayInt that is the result of pow of two given arrays. There are 3
6672    * valid cases.
6673    *
6674    *  \param [in] a1 - an array to pow up.
6675    *  \param [in] a2 - another array to sum up.
6676    *  \return DataArrayInt * - the new instance of DataArrayInt.
6677    *          The caller is to delete this result array using decrRef() as it is no more
6678    *          needed.
6679    *  \throw If either \a a1 or \a a2 is NULL.
6680    *  \throw If \a a1->getNumberOfTuples() != \a a2->getNumberOfTuples()
6681    *  \throw If \a a1->getNumberOfComponents() != 1 or \a a2->getNumberOfComponents() != 1.
6682    *  \throw If there is a negative value in \a a2.
6683    */
6684   template <class T>
6685   typename Traits<T>::ArrayType *DataArrayDiscrete<T>::Pow(const DataArrayType *a1, const DataArrayType *a2)
6686   {
6687     if(!a1 || !a2)
6688       throw INTERP_KERNEL::Exception("DataArrayInt::Pow : at least one of input instances is null !");
6689     mcIdType nbOfTuple=a1->getNumberOfTuples();
6690     mcIdType nbOfTuple2=a2->getNumberOfTuples();
6691     std::size_t nbOfComp=a1->getNumberOfComponents();
6692     std::size_t nbOfComp2=a2->getNumberOfComponents();
6693     if(nbOfTuple!=nbOfTuple2)
6694       throw INTERP_KERNEL::Exception("DataArrayInt::Pow : number of tuples mismatches !");
6695     if(nbOfComp!=1 || nbOfComp2!=1)
6696       throw INTERP_KERNEL::Exception("DataArrayInt::Pow : number of components of both arrays must be equal to 1 !");
6697     MCAuto<DataArrayType> ret=DataArrayType::New(); ret->alloc(nbOfTuple,1);
6698     const T *ptr1(a1->begin()),*ptr2(a2->begin());
6699     T *ptr=ret->getPointer();
6700     for(mcIdType i=0;i<nbOfTuple;i++,ptr1++,ptr2++,ptr++)
6701       {
6702         if(*ptr2>=0)
6703           {
6704             T tmp=1;
6705             for(T j=0;j<*ptr2;j++)
6706               tmp*=*ptr1;
6707             *ptr=tmp;
6708           }
6709         else
6710           {
6711             std::ostringstream oss; oss << "DataArrayInt::Pow : on tuple #" << i << " of a2 value is < 0 (" << *ptr2 << ") !";
6712             throw INTERP_KERNEL::Exception(oss.str().c_str());
6713           }
6714       }
6715     return ret.retn();
6716   }
6717
6718   /*!
6719    * Returns a new DataArrayInt that is a modulus of two given arrays. There are 3
6720    * valid cases.
6721    * 1.  The arrays have same number of tuples and components. Then each value of
6722    *   the result array (_a_) is a division of the corresponding values of \a a1 and
6723    *   \a a2, i.e.: _a_ [ i, j ] = _a1_ [ i, j ] % _a2_ [ i, j ].
6724    * 2.  The arrays have same number of tuples and one array, say _a2_, has one
6725    *   component. Then
6726    *   _a_ [ i, j ] = _a1_ [ i, j ] % _a2_ [ i, 0 ].
6727    * 3.  The arrays have same number of components and one array, say _a2_, has one
6728    *   tuple. Then
6729    *   _a_ [ i, j ] = _a1_ [ i, j ] % _a2_ [ 0, j ].
6730    *
6731    * Info on components is copied either from the first array (in the first case) or from
6732    * the array with maximal number of elements (getNbOfElems()).
6733    *  \warning No check of division by zero is performed!
6734    *  \param [in] a1 - a dividend array.
6735    *  \param [in] a2 - a divisor array.
6736    *  \return DataArrayInt * - the new instance of DataArrayInt.
6737    *          The caller is to delete this result array using decrRef() as it is no more
6738    *          needed.
6739    *  \throw If either \a a1 or \a a2 is NULL.
6740    *  \throw If \a a1->getNumberOfTuples() != \a a2->getNumberOfTuples() and
6741    *         \a a1->getNumberOfComponents() != \a a2->getNumberOfComponents() and
6742    *         none of them has number of tuples or components equal to 1.
6743    */
6744   template <class T>
6745   typename Traits<T>::ArrayType *DataArrayDiscrete<T>::Modulus(const DataArrayType *a1, const DataArrayType *a2)
6746   {
6747     if(!a1 || !a2)
6748       throw INTERP_KERNEL::Exception("DataArrayInt::Modulus : input DataArrayInt instance is NULL !");
6749     mcIdType nbOfTuple1(a1->getNumberOfTuples());
6750     mcIdType nbOfTuple2(a2->getNumberOfTuples());
6751     std::size_t nbOfComp1(a1->getNumberOfComponents());
6752     std::size_t nbOfComp2(a2->getNumberOfComponents());
6753     if(nbOfTuple2==nbOfTuple1)
6754       {
6755         if(nbOfComp1==nbOfComp2)
6756           {
6757             MCAuto<DataArrayType> ret=DataArrayType::New();
6758             ret->alloc(nbOfTuple2,nbOfComp1);
6759             std::transform(a1->begin(),a1->end(),a2->begin(),ret->getPointer(),std::modulus<T>());
6760             ret->copyStringInfoFrom(*a1);
6761             return ret.retn();
6762           }
6763         else if(nbOfComp2==1)
6764           {
6765             MCAuto<DataArrayType> ret=DataArrayType::New();
6766             ret->alloc(nbOfTuple1,nbOfComp1);
6767             const T *a2Ptr=a2->getConstPointer();
6768             const T *a1Ptr=a1->getConstPointer();
6769             T *res=ret->getPointer();
6770             for(mcIdType i=0;i<nbOfTuple1;i++)
6771               res=std::transform(a1Ptr+i*nbOfComp1,a1Ptr+(i+1)*nbOfComp1,res,std::bind(std::modulus<T>(),std::placeholders::_1,a2Ptr[i]));
6772             ret->copyStringInfoFrom(*a1);
6773             return ret.retn();
6774           }
6775         else
6776           {
6777             a1->checkNbOfComps(nbOfComp2,"Nb of components mismatch for array Modulus !");
6778             return 0;
6779           }
6780       }
6781     else if(nbOfTuple2==1)
6782       {
6783         a1->checkNbOfComps(nbOfComp2,"Nb of components mismatch for array Modulus !");
6784         MCAuto<DataArrayType> ret=DataArrayType::New();
6785         ret->alloc(nbOfTuple1,nbOfComp1);
6786         const T *a1ptr=a1->getConstPointer(),*a2ptr=a2->getConstPointer();
6787         T *pt=ret->getPointer();
6788         for(mcIdType i=0;i<nbOfTuple1;i++)
6789           pt=std::transform(a1ptr+i*nbOfComp1,a1ptr+(i+1)*nbOfComp1,a2ptr,pt,std::modulus<T>());
6790         ret->copyStringInfoFrom(*a1);
6791         return ret.retn();
6792       }
6793     else
6794       {
6795         a1->checkNbOfTuples(nbOfTuple2,"Nb of tuples mismatch for array Modulus !");//will always throw an exception
6796         return 0;
6797       }
6798   }
6799
6800   /*!
6801    * This method tries to find the permutation to apply to the first input \a ids1 to obtain the same array (without considering strings information) the second
6802    * input array \a ids2.
6803    * \a ids1 and \a ids2 are expected to be both a list of ids (both with number of components equal to one) not sorted and with values that can be negative.
6804    * This method will throw an exception is no such permutation array can be obtained. It is typically the case if there is some ids in \a ids1 not in \a ids2 or
6805    * inversely.
6806    * In case of success both assertion will be true (no throw) :
6807    * \c ids1->renumber(ret)->isEqual(ids2) where \a ret is the return of this method.
6808    * \c ret->transformWithIndArr(ids2)->isEqual(ids1)
6809    *
6810    * \b Example:
6811    * - \a ids1 : [3,1,103,4,6,10,-7,205]
6812    * - \a ids2 : [-7,1,205,10,6,3,103,4]
6813    * - \a return is : [5,1,6,7,4,3,0,2] because ids2[5]==ids1[0], ids2[1]==ids1[1], ids2[6]==ids1[2]...
6814    *
6815    * \return DataArrayInt * - a new instance of DataArrayInt. The caller is to delete this
6816    *          array using decrRef() as it is no more needed.
6817    * \throw If either ids1 or ids2 is null not allocated or not with one components.
6818    *
6819    * \sa DataArrayInt::findIdForEach, DataArrayInt::FindPermutationFromFirstToSecondDuplicate, DataArrayInt::rankOfElementInThis
6820    */
6821   template<class T>
6822   DataArrayIdType *DataArrayDiscrete<T>::FindPermutationFromFirstToSecond(const DataArrayType *ids1, const DataArrayType *ids2)
6823   {
6824     if(!ids1 || !ids2)
6825       throw INTERP_KERNEL::Exception("DataArrayInt::FindPermutationFromFirstToSecond : the two input arrays must be not null !");
6826     if(!ids1->isAllocated() || !ids2->isAllocated())
6827       throw INTERP_KERNEL::Exception("DataArrayInt::FindPermutationFromFirstToSecond : the two input arrays must be allocated !");
6828     if(ids1->getNumberOfComponents()!=1 || ids2->getNumberOfComponents()!=1)
6829       throw INTERP_KERNEL::Exception("DataArrayInt::FindPermutationFromFirstToSecond : the two input arrays have exactly one component !");
6830     if(ids1->getNumberOfTuples()!=ids2->getNumberOfTuples())
6831       {
6832         std::ostringstream oss; oss << "DataArrayInt::FindPermutationFromFirstToSecond : first array has " << ids1->getNumberOfTuples() << " tuples and the second one " << ids2->getNumberOfTuples() << " tuples ! No chance to find a permutation between the 2 arrays !";
6833         throw INTERP_KERNEL::Exception(oss.str().c_str());
6834       }
6835     MCAuto<DataArrayType> c1(ids1->deepCopy());
6836     MCAuto<DataArrayType> c2(ids2->deepCopy());
6837     c1->sort(true); c2->sort(true);
6838     if(!c1->isEqualWithoutConsideringStr(*c2))
6839       throw INTERP_KERNEL::Exception("DataArrayInt::FindPermutationFromFirstToSecond : the two arrays are not lying on same ids ! Impossible to find a permutation between the 2 arrays !");
6840     MCAuto<DataArrayIdType> p1=ids1->checkAndPreparePermutation();
6841     MCAuto<DataArrayIdType> p2=ids2->checkAndPreparePermutation();
6842     p2=p2->invertArrayO2N2N2O(p2->getNumberOfTuples());
6843     p2=p2->selectByTupleIdSafe(p1->begin(),p1->end());
6844     return p2.retn();
6845   }
6846
6847   /*!
6848    * This method tries to find the permutation to apply to the first input \a ids1 to obtain the same array (without considering strings information) the second
6849    * input array \a ids2.
6850    * \a ids1 and \a ids2 are expected to be both a list of ids (both with number of components equal to one) not sorted and with values that can be negative.
6851    * This method will throw an exception is no such permutation array can be obtained. It is typically the case if there is some ids in \a ids1 not in \a ids2 or
6852    * inversely.
6853    * The difference with DataArrayInt::FindPermutationFromFirstToSecond is that this method supports multiple same values in \a ids1 and \a ids2 whereas
6854    * DataArrayInt::FindPermutationFromFirstToSecond doesn't. It implies that this method my be slower than the DataArrayInt::FindPermutationFromFirstToSecond one.
6855    *
6856    * In case of success both assertion will be true (no throw) :
6857    * \c ids1->renumber(ret)->isEqual(ids2) where \a ret is the return of this method.
6858    * \c ret->transformWithIndArr(ids2)->isEqual(ids1)
6859    *
6860    * \b Example:
6861    * - \a ids1 : [5, 3, 2, 1, 4, 5, 2, 1, 0, 11, 5, 4]
6862    * - \a ids2 : [0, 1, 1, 2, 2, 3, 4, 4, 5, 5, 5, 11]
6863    * - \a return is : [8, 5, 3, 1, 6, 9, 4, 2, 0, 11, 10, 7] because ids2[8]==ids1[0], ids2[5]==ids1[1], ids2[3]==ids1[2], ids2[1]==ids1[3]...
6864    *
6865    * \return DataArrayInt * - a new instance of DataArrayInt. The caller is to delete this
6866    *          array using decrRef() as it is no more needed.
6867    * \throw If either ids1 or ids2 is null not allocated or not with one components.
6868    *
6869    * \sa DataArrayInt::findIdForEach, DataArrayInt::FindPermutationFromFirstToSecond, DataArrayInt::occurenceRankInThis
6870    */
6871   template<class T>
6872   DataArrayIdType *DataArrayDiscrete<T>::FindPermutationFromFirstToSecondDuplicate(const DataArrayType *ids1, const DataArrayType *ids2)
6873   {
6874     if(!ids1 || !ids2)
6875       throw INTERP_KERNEL::Exception("DataArrayInt::FindPermutationFromFirstToSecondDuplicate : the two input arrays must be not null !");
6876     constexpr char MSG0[] = "DataArrayInt::FindPermutationFromFirstToSecondDuplicate :";
6877     ids1->checkAllocated(); ids2->checkAllocated();
6878     ids1->checkNbOfComps(1,MSG0); ids2->checkNbOfComps(1,MSG0);
6879     mcIdType nbTuples(ids1->getNumberOfTuples());
6880     if(nbTuples != ids2->getNumberOfTuples())
6881       {
6882         std::ostringstream oss; oss << "DataArrayInt::FindPermutationFromFirstToSecondDuplicate : first array has " << ids1->getNumberOfTuples() << " tuples and the second one " << ids2->getNumberOfTuples() << " tuples ! No chance to find a permutation between the 2 arrays !";
6883         throw INTERP_KERNEL::Exception(oss.str().c_str());
6884       }
6885     MCAuto<DataArrayIdType> ret(DataArrayIdType::New()); ret->alloc(nbTuples,1);
6886     MCAuto<DataArrayIdType> oids2(ids2->occurenceRankInThis());
6887     std::map< std::pair<T,mcIdType>, mcIdType> m;
6888     mcIdType pos(0);
6889     const mcIdType *oids2Ptr(oids2->begin());
6890     for(const T * it2 = ids2->begin() ; it2 != ids2->end() ; ++it2, ++oids2Ptr, ++pos)
6891       m[{*it2,*oids2Ptr}] = pos;
6892     mcIdType *retPtr(ret->getPointer());
6893     //
6894     std::map<T,mcIdType> mOccurence1; // see DataArrayInt::occurenceRankInThis : avoid to compute additionnal temporary array
6895     //
6896     for(const T * it1 = ids1->begin() ; it1 != ids1->end() ; ++it1, ++retPtr)
6897     {
6898       auto it = mOccurence1.find(*it1);
6899       mcIdType occRk1;
6900       if( it == mOccurence1.end() )
6901       {
6902         occRk1 = 0;
6903         mOccurence1[*it1] = 1;
6904       }
6905       else
6906       {
6907         occRk1 = (*it).second++;
6908       }
6909       //
6910       auto it2 = m.find({*it1,occRk1});
6911       if(it2 != m.end())
6912       {
6913         *retPtr = (*it2).second;
6914       }
6915       else
6916       {
6917         std::ostringstream oss; oss << MSG0 << "At pos " << std::distance(ids1->begin(),it1) << " value is " << *it1 << " and occurence rank is " << occRk1 << ". No such item into second array !";
6918         throw INTERP_KERNEL::Exception(oss.str());
6919       }
6920
6921     }
6922     return ret.retn();
6923   }
6924
6925   /*!
6926    * Returns a C array which is a renumbering map in "Old to New" mode for the input array.
6927    * This map, if applied to \a start array, would make it sorted. For example, if
6928    * \a start array contents are [9,10,0,6,4,11,3,7] then the contents of the result array is
6929    * [5,6,0,3,2,7,1,4].
6930    *  \param [in] start - pointer to the first element of the array for which the
6931    *         permutation map is computed.
6932    *  \param [in] end - pointer specifying the end of the array \a start, so that
6933    *         the last value of \a start is \a end[ -1 ].
6934    *  \return mcIdType * - the result permutation array that the caller is to delete as it is no
6935    *         more needed.
6936    *  \throw If there are equal values in the input array.
6937    */
6938   template<class T>
6939   mcIdType *DataArrayDiscrete<T>::CheckAndPreparePermutation(const T *start, const T *end)
6940   {
6941     std::size_t sz=std::distance(start,end);
6942     mcIdType *ret=(mcIdType *)malloc(sz*sizeof(mcIdType));
6943     T *work=new T[sz];
6944     std::copy(start,end,work);
6945     std::sort(work,work+sz);
6946     if(std::unique(work,work+sz)!=work+sz)
6947       {
6948         delete [] work;
6949         free(ret);
6950         throw INTERP_KERNEL::Exception("Some elements are equals in the specified array !");
6951       }
6952     std::map<T,mcIdType> m;
6953     for(T *workPt=work;workPt!=work+sz;workPt++)
6954       m[*workPt]=ToIdType(std::distance(work,workPt));
6955     mcIdType *iter2=ret;
6956     for(const T *iter=start;iter!=end;iter++,iter2++)
6957       *iter2=m[*iter];
6958     delete [] work;
6959     return ret;
6960   }
6961
6962   /*!
6963    * Returns a new DataArrayInt by concatenating two given arrays, so that (1) the number
6964    * of tuples in the result array is <em> a1->getNumberOfTuples() + a2->getNumberOfTuples() -
6965    * offsetA2</em> and (2)
6966    * the number of component in the result array is same as that of each of given arrays.
6967    * First \a offsetA2 tuples of \a a2 are skipped and thus are missing from the result array.
6968    * Info on components is copied from the first of the given arrays. Number of components
6969    * in the given arrays must be the same.
6970    *  \param [in] a1 - an array to include in the result array.
6971    *  \param [in] a2 - another array to include in the result array.
6972    *  \param [in] offsetA2 - number of tuples of \a a2 to skip.
6973    *  \return DataArrayInt * - the new instance of DataArrayInt.
6974    *          The caller is to delete this result array using decrRef() as it is no more
6975    *          needed.
6976    *  \throw If either \a a1 or \a a2 is NULL.
6977    *  \throw If \a a1->getNumberOfComponents() != \a a2->getNumberOfComponents().
6978    */
6979   template <class T>
6980   typename Traits<T>::ArrayType *DataArrayDiscrete<T>::Aggregate(const DataArrayType *a1, const DataArrayType *a2, T offsetA2)
6981   {
6982     if(!a1 || !a2)
6983       throw INTERP_KERNEL::Exception("DataArrayInt::Aggregate : input DataArrayInt instance is NULL !");
6984     std::size_t nbOfComp(a1->getNumberOfComponents());
6985     if(nbOfComp!=a2->getNumberOfComponents())
6986       throw INTERP_KERNEL::Exception("Nb of components mismatch for array Aggregation !");
6987     mcIdType nbOfTuple1(a1->getNumberOfTuples()),nbOfTuple2(a2->getNumberOfTuples());
6988     MCAuto<DataArrayType> ret(DataArrayType::New());
6989     ret->alloc(nbOfTuple1+nbOfTuple2-offsetA2,nbOfComp);
6990     T *pt=std::copy(a1->begin(),a1->end(),ret->getPointer());
6991     std::copy(a2->getConstPointer()+offsetA2*nbOfComp,a2->getConstPointer()+nbOfTuple2*nbOfComp,pt);
6992     ret->copyStringInfoFrom(*a1);
6993     return ret.retn();
6994   }
6995
6996   /*!
6997    * Returns a new DataArrayInt by concatenating all given arrays, so that (1) the number
6998    * of tuples in the result array is a sum of the number of tuples of given arrays and (2)
6999    * the number of component in the result array is same as that of each of given arrays.
7000    * Info on components is copied from the first of the given arrays. Number of components
7001    * in the given arrays must be  the same.
7002    * If the number of non null of elements in \a arr is equal to one the returned object is a copy of it
7003    * not the object itself.
7004    *  \param [in] arr - a sequence of arrays to include in the result array.
7005    *  \return DataArrayInt * - the new instance of DataArrayInt.
7006    *          The caller is to delete this result array using decrRef() as it is no more
7007    *          needed.
7008    *  \throw If all arrays within \a arr are NULL.
7009    *  \throw If getNumberOfComponents() of arrays within \a arr.
7010    */
7011   template <class T>
7012   typename Traits<T>::ArrayType *DataArrayDiscrete<T>::Aggregate(const std::vector<const DataArrayType *>& arr)
7013   {
7014     std::vector<const DataArrayType *> a;
7015     for(typename std::vector<const DataArrayType *>::const_iterator it4=arr.begin();it4!=arr.end();it4++)
7016       if(*it4)
7017         a.push_back(*it4);
7018     if(a.empty())
7019       throw INTERP_KERNEL::Exception("DataArrayInt::Aggregate : input list must be NON EMPTY !");
7020     typename std::vector<const DataArrayType *>::const_iterator it=a.begin();
7021     std::size_t nbOfComp((*it)->getNumberOfComponents());
7022     mcIdType nbt((*it++)->getNumberOfTuples());
7023     for(;it!=a.end();it++)
7024       {
7025         if((*it)->getNumberOfComponents()!=nbOfComp)
7026           throw INTERP_KERNEL::Exception("DataArrayInt::Aggregate : Nb of components mismatch for array aggregation !");
7027         nbt+=(*it)->getNumberOfTuples();
7028       }
7029     MCAuto<DataArrayType> ret=DataArrayType::New();
7030     ret->alloc(nbt,nbOfComp);
7031     T *pt=ret->getPointer();
7032     for(it=a.begin();it!=a.end();it++)
7033       pt=std::copy((*it)->getConstPointer(),(*it)->getConstPointer()+(*it)->getNbOfElems(),pt);
7034     ret->copyStringInfoFrom(*(a[0]));
7035     return ret.retn();
7036   }
7037
7038   /*!
7039    * This method takes as input a list of DataArrayInt instances \a arrs that represent each a packed index arrays.
7040    * A packed index array is an allocated array with one component, and at least one tuple. The first element
7041    * of each array in \a arrs must be 0. Each array in \a arrs is expected to be increasingly monotonic.
7042    * This method is useful for users that want to aggregate a pair of DataArrayInt representing an indexed data (typically nodal connectivity index in unstructured meshes.
7043    *
7044    * \return DataArrayInt * - a new object to be managed by the caller.
7045    */
7046   template <class T>
7047   typename Traits<T>::ArrayType *DataArrayDiscrete<T>::AggregateIndexes(const std::vector<const DataArrayType *>& arrs)
7048   {
7049     mcIdType retSz=1;
7050     for(typename std::vector<const DataArrayType *>::const_iterator it4=arrs.begin();it4!=arrs.end();it4++)
7051       {
7052         if(*it4)
7053           {
7054             (*it4)->checkAllocated();
7055             if((*it4)->getNumberOfComponents()!=1)
7056               {
7057                 std::ostringstream oss; oss << "DataArrayInt::AggregateIndexes : presence of a DataArrayInt instance with nb of compo != 1 at pos " << std::distance(arrs.begin(),it4) << " !";
7058                 throw INTERP_KERNEL::Exception(oss.str().c_str());
7059               }
7060             mcIdType nbTupl((*it4)->getNumberOfTuples());
7061             if(nbTupl<1)
7062               {
7063                 std::ostringstream oss; oss << "DataArrayInt::AggregateIndexes : presence of a DataArrayInt instance with nb of tuples < 1 at pos " << std::distance(arrs.begin(),it4) << " !";
7064                 throw INTERP_KERNEL::Exception(oss.str().c_str());
7065               }
7066             if((*it4)->front()!=0)
7067               {
7068                 std::ostringstream oss; oss << "DataArrayInt::AggregateIndexes : presence of a DataArrayInt instance with front value != 0 at pos " << std::distance(arrs.begin(),it4) << " !";
7069                 throw INTERP_KERNEL::Exception(oss.str().c_str());
7070               }
7071             retSz+=nbTupl-1;
7072           }
7073         else
7074           {
7075             std::ostringstream oss; oss << "DataArrayInt::AggregateIndexes : presence of a null instance at pos " << std::distance(arrs.begin(),it4) << " !";
7076             throw INTERP_KERNEL::Exception(oss.str().c_str());
7077           }
7078       }
7079     if(arrs.empty())
7080       throw INTERP_KERNEL::Exception("DataArrayInt::AggregateIndexes : input list must be NON EMPTY !");
7081     MCAuto<DataArrayType> ret=DataArrayType::New();
7082     ret->alloc(retSz,1);
7083     T *pt=ret->getPointer(); *pt++=0;
7084     for(typename std::vector<const DataArrayType *>::const_iterator it=arrs.begin();it!=arrs.end();it++)
7085       pt=std::transform((*it)->begin()+1,(*it)->end(),pt,std::bind(std::plus<T>(),std::placeholders::_1,pt[-1]));
7086     ret->copyStringInfoFrom(*(arrs[0]));
7087     return ret.retn();
7088   }
7089
7090   /*!
7091    * Returns a new DataArrayInt which contains all elements of given one-dimensional
7092    * arrays. The result array does not contain any duplicates and its values
7093    * are sorted in ascending order.
7094    *  \param [in] arr - sequence of DataArrayInt's to unite.
7095    *  \return DataArrayInt * - a new instance of DataArrayInt. The caller is to delete this
7096    *         array using decrRef() as it is no more needed.
7097    *  \throw If any \a arr[i] is not allocated.
7098    *  \throw If \a arr[i]->getNumberOfComponents() != 1.
7099    */
7100   template <class T>
7101   typename Traits<T>::ArrayType *DataArrayDiscrete<T>::BuildUnion(const std::vector<const DataArrayType *>& arr)
7102   {
7103     std::vector<const DataArrayType *> a;
7104     for(typename std::vector<const DataArrayType *>::const_iterator it4=arr.begin();it4!=arr.end();it4++)
7105       if(*it4)
7106         a.push_back(*it4);
7107     for(typename std::vector<const DataArrayType *>::const_iterator it=a.begin();it!=a.end();it++)
7108       {
7109         (*it)->checkAllocated();
7110         if((*it)->getNumberOfComponents()!=1)
7111           throw INTERP_KERNEL::Exception("DataArrayInt::BuildUnion : only single component allowed !");
7112       }
7113     //
7114     std::set<T> r;
7115     for(typename std::vector<const DataArrayType *>::const_iterator it=a.begin();it!=a.end();it++)
7116       {
7117         const T *pt=(*it)->getConstPointer();
7118         mcIdType nbOfTuples((*it)->getNumberOfTuples());
7119         r.insert(pt,pt+nbOfTuples);
7120       }
7121     DataArrayType *ret=DataArrayType::New();
7122     ret->alloc(r.size(),1);
7123     std::copy(r.begin(),r.end(),ret->getPointer());
7124     return ret;
7125   }
7126
7127   /*!
7128    * Returns a new DataArrayInt which contains elements present in each of given one-dimensional
7129    * arrays. The result array does not contain any duplicates and its values
7130    * are sorted in ascending order.
7131    *  \param [in] arr - sequence of DataArrayInt's to intersect.
7132    *  \return DataArrayInt * - a new instance of DataArrayInt. The caller is to delete this
7133    *         array using decrRef() as it is no more needed.
7134    *  \throw If any \a arr[i] is not allocated.
7135    *  \throw If \a arr[i]->getNumberOfComponents() != 1.
7136    */
7137   template <class T>
7138   typename Traits<T>::ArrayType *DataArrayDiscrete<T>::BuildIntersection(const std::vector<const DataArrayType *>& arr)
7139   {
7140     std::vector<const DataArrayType *> a;
7141     for(typename std::vector<const DataArrayType *>::const_iterator it4=arr.begin();it4!=arr.end();it4++)
7142       if(*it4)
7143         a.push_back(*it4);
7144     for(typename std::vector<const DataArrayType *>::const_iterator it=a.begin();it!=a.end();it++)
7145       {
7146         (*it)->checkAllocated();
7147         if((*it)->getNumberOfComponents()!=1)
7148           throw INTERP_KERNEL::Exception("DataArrayInt::BuildIntersection : only single component allowed !");
7149       }
7150     //
7151     if(a.size()==1)
7152       throw INTERP_KERNEL::Exception("DataArrayInt::BuildIntersection : only single not null element in array ! For safety reasons exception is raised !");
7153     //
7154     std::set<T> r;
7155     for(typename std::vector<const DataArrayType *>::const_iterator it=a.begin();it!=a.end();it++)
7156       {
7157         const T *pt=(*it)->getConstPointer();
7158         mcIdType nbOfTuples((*it)->getNumberOfTuples());
7159         std::set<T> s1(pt,pt+nbOfTuples);
7160         if(it!=a.begin())
7161           {
7162             std::set<T> r2;
7163             std::set_intersection(r.begin(),r.end(),s1.begin(),s1.end(),inserter(r2,r2.end()));
7164             r=r2;
7165           }
7166         else
7167           r=s1;
7168       }
7169     DataArrayType *ret(DataArrayType::New());
7170     ret->alloc(r.size(),1);
7171     std::copy(r.begin(),r.end(),ret->getPointer());
7172     return ret;
7173   }
7174
7175   /*!
7176    * This method allows to put a vector of vector of integer into a more compact data structure (skyline).
7177    * This method is not available into python because no available optimized data structure available to map std::vector< std::vector<mcIdType> >.
7178    *
7179    * \param [in] v the input data structure to be translate into skyline format.
7180    * \param [out] data the first element of the skyline format. The user is expected to deal with newly allocated array.
7181    * \param [out] dataIndex the second element of the skyline format.
7182    */
7183   template <class T>
7184   void DataArrayDiscrete<T>::PutIntoToSkylineFrmt(const std::vector< std::vector<T> >& v, DataArrayType *& data, DataArrayIdType *& dataIndex)
7185   {
7186     std::size_t sz(v.size());
7187     MCAuto<DataArrayType> retDat(DataArrayType::New());
7188     MCAuto<DataArrayIdType> retIdx(DataArrayIdType::New());
7189     retIdx->alloc(sz+1,1);
7190     mcIdType *ptid(retIdx->getPointer()); *ptid=0;
7191     for(std::size_t i=0;i<sz;i++,ptid++)
7192       ptid[1]=ptid[0]+ToIdType(v[i].size());
7193     retDat->alloc(retIdx->back(),1);
7194     T *pt=retDat->getPointer();
7195     for(std::size_t i=0;i<sz;i++)
7196       pt=std::copy(v[i].begin(),v[i].end(),pt);
7197     data=retDat.retn(); dataIndex=retIdx.retn();
7198   }
7199
7200   /*!
7201    * This method works on a pair input (\b arrIn, \b arrIndxIn) where \b arrIn indexes is in \b arrIndxIn
7202    * (\ref numbering-indirect).
7203    * This method returns the result of the extraction ( specified by a set of ids in [\b idsOfSelectBg , \b idsOfSelectEnd ) ).
7204    * The selection of extraction is done standardly in new2old format.
7205    * This method returns indexed arrays (\ref numbering-indirect) using 2 arrays (arrOut,arrIndexOut).
7206    *
7207    * \param [in] idsOfSelectBg begin of set of ids of the input extraction (included)
7208    * \param [in] idsOfSelectEnd end of set of ids of the input extraction (excluded)
7209    * \param [in] arrIn arr origin array from which the extraction will be done.
7210    * \param [in] arrIndxIn is the input index array allowing to walk into \b arrIn
7211    * \param [out] arrOut the resulting array
7212    * \param [out] arrIndexOut the index array of the resulting array \b arrOut
7213    * \sa DataArrayInt::ExtractFromIndexedArraysSlice
7214    */
7215   template <class T>
7216   void DataArrayDiscrete<T>::ExtractFromIndexedArrays(const mcIdType *idsOfSelectBg, const mcIdType *idsOfSelectEnd,
7217                                                       const DataArrayType *arrIn, const DataArrayIdType *arrIndxIn,
7218                                                       DataArrayType* &arrOut, DataArrayIdType* &arrIndexOut)
7219   {
7220     if(!arrIn || !arrIndxIn)
7221       throw INTERP_KERNEL::Exception("DataArrayInt::ExtractFromIndexedArrays : input pointer is NULL !");
7222     arrIn->checkAllocated(); arrIndxIn->checkAllocated();
7223     if(arrIn->getNumberOfComponents()!=1 || arrIndxIn->getNumberOfComponents()!=1)
7224       throw INTERP_KERNEL::Exception("DataArrayInt::ExtractFromIndexedArrays : input arrays must have exactly one component !");
7225     std::size_t sz=std::distance(idsOfSelectBg,idsOfSelectEnd);
7226     const T *arrInPtr=arrIn->begin();
7227     const mcIdType *arrIndxPtr=arrIndxIn->begin();
7228     mcIdType nbOfGrps=arrIndxIn->getNumberOfTuples()-1;
7229     if(nbOfGrps<0)
7230       throw INTERP_KERNEL::Exception("DataArrayInt::ExtractFromIndexedArrays : The format of \"arrIndxIn\" is invalid ! Its nb of tuples should be >=1 !");
7231     mcIdType maxSizeOfArr(arrIn->getNumberOfTuples());
7232     MCAuto<DataArrayType> arro=DataArrayType::New();
7233     MCAuto<DataArrayIdType> arrIo=DataArrayIdType::New();
7234     arrIo->alloc(sz+1,1);
7235     const mcIdType *idsIt=idsOfSelectBg;
7236     mcIdType *work=arrIo->getPointer();
7237     *work++=0;
7238     mcIdType lgth=0;
7239     for(std::size_t i=0;i<sz;i++,work++,idsIt++)
7240       {
7241         if(*idsIt>=0 && *idsIt<nbOfGrps)
7242           lgth+=arrIndxPtr[*idsIt+1]-arrIndxPtr[*idsIt];
7243         else
7244           {
7245             std::ostringstream oss; oss << "DataArrayInt::ExtractFromIndexedArrays : id located on pos #" << i << " value is " << *idsIt << " ! Must be in [0," << nbOfGrps << ") !";
7246             throw INTERP_KERNEL::Exception(oss.str());
7247           }
7248         if(lgth>=work[-1])
7249           *work=lgth;
7250         else
7251           {
7252             std::ostringstream oss; oss << "DataArrayInt::ExtractFromIndexedArrays : id located on pos #" << i << " value is " << *idsIt << " and at this pos arrIndxIn[" << *idsIt;
7253             oss << "+1]-arrIndxIn[" << *idsIt << "] < 0 ! The input index array is bugged !";
7254             throw INTERP_KERNEL::Exception(oss.str());
7255           }
7256       }
7257     arro->alloc(lgth,1);
7258     T *data=arro->getPointer();
7259     idsIt=idsOfSelectBg;
7260     for(std::size_t i=0;i<sz;i++,idsIt++)
7261       {
7262         if(arrIndxPtr[*idsIt]>=0 && arrIndxPtr[*idsIt+1]<=maxSizeOfArr)
7263           data=std::copy(arrInPtr+arrIndxPtr[*idsIt],arrInPtr+arrIndxPtr[*idsIt+1],data);
7264         else
7265           {
7266             std::ostringstream oss; oss << "DataArrayInt::ExtractFromIndexedArrays : id located on pos #" << i << " value is " << *idsIt << " arrIndx[" << *idsIt << "] must be >= 0 and arrIndx[";
7267             oss << *idsIt << "+1] <= " << maxSizeOfArr << " (the size of arrIn)!";
7268             throw INTERP_KERNEL::Exception(oss.str());
7269           }
7270       }
7271     arrOut=arro.retn();
7272     arrIndexOut=arrIo.retn();
7273   }
7274
7275   /*!
7276    * This method works on a pair input (\b arrIn, \b arrIndxIn) where \b arrIn indexes is in \b arrIndxIn
7277    * (\ref numbering-indirect).
7278    * This method returns the result of the extraction ( specified by a set of ids with a slice given by \a idsOfSelectStart, \a idsOfSelectStop and \a idsOfSelectStep ).
7279    * The selection of extraction is done standardly in new2old format.
7280    * This method returns indexed arrays (\ref numbering-indirect) using 2 arrays (arrOut,arrIndexOut).
7281    *
7282    * \param [in] idsOfSelectStart begin of set of ids of the input extraction (included)
7283    * \param [in] idsOfSelectStop end of set of ids of the input extraction (excluded)
7284    * \param [in] idsOfSelectStep step of set of ids of the input extraction
7285    * \param [in] arrIn arr origin array from which the extraction will be done.
7286    * \param [in] arrIndxIn is the input index array allowing to walk into \b arrIn
7287    * \param [out] arrOut the resulting array
7288    * \param [out] arrIndexOut the index array of the resulting array \b arrOut
7289    * \sa DataArrayInt::ExtractFromIndexedArrays
7290    */
7291   template <class T>
7292   void DataArrayDiscrete<T>::ExtractFromIndexedArraysSlice(mcIdType idsOfSelectStart, mcIdType idsOfSelectStop, mcIdType idsOfSelectStep,
7293                                                            const DataArrayType *arrIn, const DataArrayIdType *arrIndxIn,
7294                                                            DataArrayType* &arrOut, DataArrayIdType* &arrIndexOut)
7295   {
7296     if(!arrIn || !arrIndxIn)
7297       throw INTERP_KERNEL::Exception("DataArrayInt::ExtractFromIndexedArraysSlice : input pointer is NULL !");
7298     arrIn->checkAllocated(); arrIndxIn->checkAllocated();
7299     if(arrIn->getNumberOfComponents()!=1 || arrIndxIn->getNumberOfComponents()!=1)
7300       throw INTERP_KERNEL::Exception("DataArrayInt::ExtractFromIndexedArraysSlice : input arrays must have exactly one component !");
7301     mcIdType sz=DataArray::GetNumberOfItemGivenBESRelative(idsOfSelectStart,idsOfSelectStop,idsOfSelectStep,"MEDCouplingUMesh::ExtractFromIndexedArraysSlice : Input slice ");
7302     const T *arrInPtr=arrIn->begin();
7303     const mcIdType *arrIndxPtr=arrIndxIn->begin();
7304     mcIdType nbOfGrps=arrIndxIn->getNumberOfTuples()-1;
7305     if(nbOfGrps<0)
7306       throw INTERP_KERNEL::Exception("DataArrayInt::ExtractFromIndexedArraysSlice : The format of \"arrIndxIn\" is invalid ! Its nb of tuples should be >=1 !");
7307     mcIdType maxSizeOfArr(arrIn->getNumberOfTuples());
7308     MCAuto<DataArrayType> arro=DataArrayType::New();
7309     MCAuto<DataArrayIdType> arrIo=DataArrayIdType::New();
7310     arrIo->alloc(sz+1,1);
7311     mcIdType idsIt=idsOfSelectStart;
7312     mcIdType *work=arrIo->getPointer();
7313     *work++=0;
7314     mcIdType lgth=0;
7315     for(mcIdType i=0;i<sz;i++,work++,idsIt+=idsOfSelectStep)
7316       {
7317         if(idsIt>=0 && idsIt<nbOfGrps)
7318           lgth+=arrIndxPtr[idsIt+1]-arrIndxPtr[idsIt];
7319         else
7320           {
7321             std::ostringstream oss; oss << "DataArrayInt::ExtractFromIndexedArraysSlice : id located on pos #" << i << " value is " << idsIt << " ! Must be in [0," << nbOfGrps << ") !";
7322             throw INTERP_KERNEL::Exception(oss.str());
7323           }
7324         if(lgth>=work[-1])
7325           *work=lgth;
7326         else
7327           {
7328             std::ostringstream oss; oss << "DataArrayInt::ExtractFromIndexedArraysSlice : id located on pos #" << i << " value is " << idsIt << " and at this pos arrIndxIn[" << idsIt;
7329             oss << "+1]-arrIndxIn[" << idsIt << "] < 0 ! The input index array is bugged !";
7330             throw INTERP_KERNEL::Exception(oss.str());
7331           }
7332       }
7333     arro->alloc(lgth,1);
7334     T *data=arro->getPointer();
7335     idsIt=idsOfSelectStart;
7336     for(mcIdType i=0;i<sz;i++,idsIt+=idsOfSelectStep)
7337       {
7338         if(arrIndxPtr[idsIt]>=0 && arrIndxPtr[idsIt+1]<=maxSizeOfArr)
7339           data=std::copy(arrInPtr+arrIndxPtr[idsIt],arrInPtr+arrIndxPtr[idsIt+1],data);
7340         else
7341           {
7342             std::ostringstream oss; oss << "DataArrayInt::ExtractFromIndexedArraysSlice : id located on pos #" << i << " value is " << idsIt << " arrIndx[" << idsIt << "] must be >= 0 and arrIndx[";
7343             oss << idsIt << "+1] <= " << maxSizeOfArr << " (the size of arrIn)!";
7344             throw INTERP_KERNEL::Exception(oss.str());
7345           }
7346       }
7347     arrOut=arro.retn();
7348     arrIndexOut=arrIo.retn();
7349   }
7350
7351   /*!
7352    * This method works on an input pair (\b arrIn, \b arrIndxIn) where \b arrIn indexes is in \b arrIndxIn.
7353    * This method builds an output pair (\b arrOut,\b arrIndexOut) that is a copy from \b arrIn for all cell ids \b not \b in [ \b idsOfSelectBg , \b idsOfSelectEnd ) and for
7354    * cellIds \b in [ \b idsOfSelectBg , \b idsOfSelectEnd ) a copy coming from the corresponding values in input pair (\b srcArr, \b srcArrIndex).
7355    * This method is an generalization of MEDCouplingUMesh::SetPartOfIndexedArraysSameIdx that performs the same thing but by without building explicitly a result output arrays.
7356    *
7357    * \param [in] idsOfSelectBg begin of set of ids of the input extraction (included)
7358    * \param [in] idsOfSelectEnd end of set of ids of the input extraction (excluded)
7359    * \param [in] arrIn arr origin array from which the extraction will be done.
7360    * \param [in] arrIndxIn is the input index array allowing to walk into \b arrIn
7361    * \param [in] srcArr input array that will be used as source of copy for ids in [ \b idsOfSelectBg, \b idsOfSelectEnd )
7362    * \param [in] srcArrIndex index array of \b srcArr
7363    * \param [out] arrOut the resulting array
7364    * \param [out] arrIndexOut the index array of the resulting array \b arrOut
7365    *
7366    * \sa DataArrayInt::SetPartOfIndexedArraysSameIdx
7367    */
7368   template <class T>
7369   void DataArrayDiscrete<T>::SetPartOfIndexedArrays(const mcIdType *idsOfSelectBg, const mcIdType *idsOfSelectEnd,
7370                                                     const DataArrayType *arrIn, const DataArrayIdType *arrIndxIn,
7371                                                     const DataArrayType *srcArr, const DataArrayIdType *srcArrIndex,
7372                                                     DataArrayType* &arrOut, DataArrayIdType* &arrIndexOut)
7373   {
7374     if(arrIn==0 || arrIndxIn==0 || srcArr==0 || srcArrIndex==0)
7375       throw INTERP_KERNEL::Exception("DataArrayInt::SetPartOfIndexedArrays : presence of null pointer in input parameter !");
7376     MCAuto<DataArrayType> arro=DataArrayType::New();
7377     MCAuto<DataArrayIdType> arrIo=DataArrayIdType::New();
7378     mcIdType nbOfTuples=arrIndxIn->getNumberOfTuples()-1;
7379     std::vector<bool> v(nbOfTuples,true);
7380     mcIdType offset=0;
7381     const mcIdType *arrIndxInPtr=arrIndxIn->begin();
7382     const mcIdType *srcArrIndexPtr=srcArrIndex->begin();
7383     for(const mcIdType *it=idsOfSelectBg;it!=idsOfSelectEnd;it++,srcArrIndexPtr++)
7384       {
7385         if(*it>=0 && *it<nbOfTuples)
7386           {
7387             v[*it]=false;
7388             offset+=(srcArrIndexPtr[1]-srcArrIndexPtr[0])-(arrIndxInPtr[*it+1]-arrIndxInPtr[*it]);
7389           }
7390         else
7391           {
7392             std::ostringstream oss; oss << "DataArrayInt::SetPartOfIndexedArrays : On pos #" << std::distance(idsOfSelectBg,it) << " value is " << *it << " not in [0," << nbOfTuples << ") !";
7393             throw INTERP_KERNEL::Exception(oss.str());
7394           }
7395       }
7396     srcArrIndexPtr=srcArrIndex->begin();
7397     arrIo->alloc(nbOfTuples+1,1);
7398     arro->alloc(arrIn->getNumberOfTuples()+offset,1);
7399     const T *arrInPtr=arrIn->begin();
7400     const T *srcArrPtr=srcArr->begin();
7401     mcIdType *arrIoPtr=arrIo->getPointer(); *arrIoPtr++=0;
7402     T *arroPtr=arro->getPointer();
7403     for(mcIdType ii=0;ii<nbOfTuples;ii++,arrIoPtr++)
7404       {
7405         if(v[ii])
7406           {
7407             arroPtr=std::copy(arrInPtr+arrIndxInPtr[ii],arrInPtr+arrIndxInPtr[ii+1],arroPtr);
7408             *arrIoPtr=arrIoPtr[-1]+(arrIndxInPtr[ii+1]-arrIndxInPtr[ii]);
7409           }
7410         else
7411           {
7412             std::size_t pos=std::distance(idsOfSelectBg,std::find(idsOfSelectBg,idsOfSelectEnd,ii));
7413             arroPtr=std::copy(srcArrPtr+srcArrIndexPtr[pos],srcArrPtr+srcArrIndexPtr[pos+1],arroPtr);
7414             *arrIoPtr=arrIoPtr[-1]+(srcArrIndexPtr[pos+1]-srcArrIndexPtr[pos]);
7415           }
7416       }
7417     arrOut=arro.retn();
7418     arrIndexOut=arrIo.retn();
7419   }
7420
7421   /*!
7422    * This method works on an input pair (\b arrIn, \b arrIndxIn) where \b arrIn indexes is in \b arrIndxIn.
7423    * This method builds an output pair (\b arrOut,\b arrIndexOut) that is a copy from \b arrIn for all cell ids \b not \b in [ \b idsOfSelectBg , \b idsOfSelectEnd ) and for
7424    * cellIds \b in [\b idsOfSelectBg, \b idsOfSelectEnd) a copy coming from the corresponding values in input pair (\b srcArr, \b srcArrIndex).
7425    * This method is an generalization of DataArrayInt::SetPartOfIndexedArraysSameIdx that performs the same thing but by without building explicitly a result output arrays.
7426    *
7427    * \param [in] start begin of set of ids of the input extraction (included)
7428    * \param [in] end end of set of ids of the input extraction (excluded)
7429    * \param [in] step step of the set of ids in range mode.
7430    * \param [in] arrIn arr origin array from which the extraction will be done.
7431    * \param [in] arrIndxIn is the input index array allowing to walk into \b arrIn
7432    * \param [in] srcArr input array that will be used as source of copy for ids in [\b idsOfSelectBg, \b idsOfSelectEnd)
7433    * \param [in] srcArrIndex index array of \b srcArr
7434    * \param [out] arrOut the resulting array
7435    * \param [out] arrIndexOut the index array of the resulting array \b arrOut
7436    *
7437    * \sa DataArrayInt::SetPartOfIndexedArraysSameIdx DataArrayInt::SetPartOfIndexedArrays
7438    */
7439   template <class T>
7440   void DataArrayDiscrete<T>::SetPartOfIndexedArraysSlice(mcIdType start, mcIdType end, mcIdType step,
7441                                                          const DataArrayType *arrIn, const DataArrayIdType *arrIndxIn,
7442                                                          const DataArrayType *srcArr, const DataArrayIdType *srcArrIndex,
7443                                                          DataArrayType* &arrOut, DataArrayIdType* &arrIndexOut)
7444   {
7445     if(arrIn==0 || arrIndxIn==0 || srcArr==0 || srcArrIndex==0)
7446       throw INTERP_KERNEL::Exception("DataArrayInt::SetPartOfIndexedArraysSlice : presence of null pointer in input parameter !");
7447     MCAuto<DataArrayType> arro=DataArrayType::New();
7448     MCAuto<DataArrayIdType> arrIo=DataArrayIdType::New();
7449     mcIdType nbOfTuples=arrIndxIn->getNumberOfTuples()-1;
7450     mcIdType offset=0;
7451     const mcIdType *arrIndxInPtr=arrIndxIn->begin();
7452     const mcIdType *srcArrIndexPtr=srcArrIndex->begin();
7453     mcIdType nbOfElemsToSet=DataArray::GetNumberOfItemGivenBESRelative(start,end,step,"DataArrayInt::SetPartOfIndexedArraysSlice : ");
7454     mcIdType it=start;
7455     for(mcIdType i=0;i<nbOfElemsToSet;i++,srcArrIndexPtr++,it+=step)
7456       {
7457         if(it>=0 && it<nbOfTuples)
7458           offset+=(srcArrIndexPtr[1]-srcArrIndexPtr[0])-(arrIndxInPtr[it+1]-arrIndxInPtr[it]);
7459         else
7460           {
7461             std::ostringstream oss; oss << "DataArrayInt::SetPartOfIndexedArraysSlice : On pos #" << i << " value is " << it << " not in [0," << nbOfTuples << ") !";
7462             throw INTERP_KERNEL::Exception(oss.str());
7463           }
7464       }
7465     srcArrIndexPtr=srcArrIndex->begin();
7466     arrIo->alloc(nbOfTuples+1,1);
7467     arro->alloc(arrIn->getNumberOfTuples()+offset,1);
7468     const T *arrInPtr=arrIn->begin();
7469     const T *srcArrPtr=srcArr->begin();
7470     mcIdType *arrIoPtr=arrIo->getPointer(); *arrIoPtr++=0;
7471     T *arroPtr=arro->getPointer();
7472     for(mcIdType ii=0;ii<nbOfTuples;ii++,arrIoPtr++)
7473       {
7474         mcIdType pos=DataArray::GetPosOfItemGivenBESRelativeNoThrow(ii,start,end,step);
7475         if(pos<0)
7476           {
7477             arroPtr=std::copy(arrInPtr+arrIndxInPtr[ii],arrInPtr+arrIndxInPtr[ii+1],arroPtr);
7478             *arrIoPtr=arrIoPtr[-1]+(arrIndxInPtr[ii+1]-arrIndxInPtr[ii]);
7479           }
7480         else
7481           {
7482             arroPtr=std::copy(srcArrPtr+srcArrIndexPtr[pos],srcArrPtr+srcArrIndexPtr[pos+1],arroPtr);
7483             *arrIoPtr=arrIoPtr[-1]+(srcArrIndexPtr[pos+1]-srcArrIndexPtr[pos]);
7484           }
7485       }
7486     arrOut=arro.retn();
7487     arrIndexOut=arrIo.retn();
7488   }
7489
7490   /*!
7491    * This method works on an input pair (\b arrIn, \b arrIndxIn) where \b arrIn indexes is in \b arrIndxIn.
7492    * This method is an specialization of MEDCouplingUMesh::SetPartOfIndexedArrays in the case of assignment do not modify the index in \b arrIndxIn.
7493    *
7494    * \param [in] idsOfSelectBg begin of set of ids of the input extraction (included)
7495    * \param [in] idsOfSelectEnd end of set of ids of the input extraction (excluded)
7496    * \param [in,out] arrInOut arr origin array from which the extraction will be done.
7497    * \param [in] arrIndxIn is the input index array allowing to walk into \b arrIn
7498    * \param [in] srcArr input array that will be used as source of copy for ids in [ \b idsOfSelectBg , \b idsOfSelectEnd )
7499    * \param [in] srcArrIndex index array of \b srcArr
7500    *
7501    * \sa DataArrayInt::SetPartOfIndexedArrays
7502    */
7503   template <class T>
7504   void DataArrayDiscrete<T>::SetPartOfIndexedArraysSameIdx(const mcIdType *idsOfSelectBg, const mcIdType *idsOfSelectEnd,
7505                                                            DataArrayType *arrInOut, const DataArrayIdType *arrIndxIn,
7506                                                            const DataArrayType *srcArr, const DataArrayIdType *srcArrIndex)
7507   {
7508     if(arrInOut==0 || arrIndxIn==0 || srcArr==0 || srcArrIndex==0)
7509       throw INTERP_KERNEL::Exception("DataArrayInt::SetPartOfIndexedArraysSameIdx : presence of null pointer in input parameter !");
7510     mcIdType nbOfTuples=arrIndxIn->getNumberOfTuples()-1;
7511     const mcIdType *arrIndxInPtr=arrIndxIn->begin();
7512     const mcIdType *srcArrIndexPtr=srcArrIndex->begin();
7513     T *arrInOutPtr=arrInOut->getPointer();
7514     const T *srcArrPtr=srcArr->begin();
7515     for(const mcIdType *it=idsOfSelectBg;it!=idsOfSelectEnd;it++,srcArrIndexPtr++)
7516       {
7517         if(*it>=0 && *it<nbOfTuples)
7518           {
7519             if(srcArrIndexPtr[1]-srcArrIndexPtr[0]==arrIndxInPtr[*it+1]-arrIndxInPtr[*it])
7520               std::copy(srcArrPtr+srcArrIndexPtr[0],srcArrPtr+srcArrIndexPtr[1],arrInOutPtr+arrIndxInPtr[*it]);
7521             else
7522               {
7523                 std::ostringstream oss; oss << "DataArrayInt::SetPartOfIndexedArraysSameIdx : On pos #" << std::distance(idsOfSelectBg,it) << " id (idsOfSelectBg[" << std::distance(idsOfSelectBg,it)<< "]) is " << *it << " arrIndxIn[id+1]-arrIndxIn[id]!=srcArrIndex[pos+1]-srcArrIndex[pos] !";
7524                 throw INTERP_KERNEL::Exception(oss.str());
7525               }
7526           }
7527         else
7528           {
7529             std::ostringstream oss; oss << "DataArrayInt::SetPartOfIndexedArraysSameIdx : On pos #" << std::distance(idsOfSelectBg,it) << " value is " << *it << " not in [0," << nbOfTuples << ") !";
7530             throw INTERP_KERNEL::Exception(oss.str());
7531           }
7532       }
7533   }
7534
7535   /*!
7536    * This method works on an input pair (\b arrIn, \b arrIndxIn) where \b arrIn indexes is in \b arrIndxIn.
7537    * This method is an specialization of MEDCouplingUMesh::SetPartOfIndexedArrays in the case of assignment do not modify the index in \b arrIndxIn.
7538    *
7539    * \param [in] start begin of set of ids of the input extraction (included)
7540    * \param [in] end end of set of ids of the input extraction (excluded)
7541    * \param [in] step step of the set of ids in range mode.
7542    * \param [in,out] arrInOut arr origin array from which the extraction will be done.
7543    * \param [in] arrIndxIn is the input index array allowing to walk into \b arrIn
7544    * \param [in] srcArr input array that will be used as source of copy for ids in [\b idsOfSelectBg, \b idsOfSelectEnd)
7545    * \param [in] srcArrIndex index array of \b srcArr
7546    *
7547    * \sa DataArrayInt::SetPartOfIndexedArraysSlice DataArrayInt::SetPartOfIndexedArraysSameIdx
7548    */
7549   template <class T>
7550   void DataArrayDiscrete<T>::SetPartOfIndexedArraysSameIdxSlice(mcIdType start, mcIdType end, mcIdType step,
7551                                                                 DataArrayType *arrInOut, const DataArrayIdType *arrIndxIn,
7552                                                                 const DataArrayType *srcArr, const DataArrayIdType *srcArrIndex)
7553   {
7554     if(arrInOut==0 || arrIndxIn==0 || srcArr==0 || srcArrIndex==0)
7555       throw INTERP_KERNEL::Exception("DataArrayInt::SetPartOfIndexedArraysSameIdxSlice : presence of null pointer in input parameter !");
7556     mcIdType nbOfTuples=arrIndxIn->getNumberOfTuples()-1;
7557     const mcIdType *arrIndxInPtr=arrIndxIn->begin();
7558     const mcIdType *srcArrIndexPtr=srcArrIndex->begin();
7559     T *arrInOutPtr=arrInOut->getPointer();
7560     const T *srcArrPtr=srcArr->begin();
7561     mcIdType nbOfElemsToSet=DataArray::GetNumberOfItemGivenBESRelative(start,end,step,"DataArrayInt::SetPartOfIndexedArraysSameIdxSlice : ");
7562     mcIdType it=start;
7563     for(mcIdType i=0;i<nbOfElemsToSet;i++,srcArrIndexPtr++,it+=step)
7564       {
7565         if(it>=0 && it<nbOfTuples)
7566           {
7567             if(srcArrIndexPtr[1]-srcArrIndexPtr[0]==arrIndxInPtr[it+1]-arrIndxInPtr[it])
7568               std::copy(srcArrPtr+srcArrIndexPtr[0],srcArrPtr+srcArrIndexPtr[1],arrInOutPtr+arrIndxInPtr[it]);
7569             else
7570               {
7571                 std::ostringstream oss; oss << "DataArrayInt::SetPartOfIndexedArraysSameIdxSlice : On pos #" << i << " id (idsOfSelectBg[" << i << "]) is " << it << " arrIndxIn[id+1]-arrIndxIn[id]!=srcArrIndex[pos+1]-srcArrIndex[pos] !";
7572                 throw INTERP_KERNEL::Exception(oss.str());
7573               }
7574           }
7575         else
7576           {
7577             std::ostringstream oss; oss << "DataArrayInt::SetPartOfIndexedArraysSameIdxSlice : On pos #" << i << " value is " << it << " not in [0," << nbOfTuples << ") !";
7578             throw INTERP_KERNEL::Exception(oss.str());
7579           }
7580       }
7581   }
7582
7583   /*!
7584    * This method works on an input pair (\b arr, \b arrIndx) where \b arr indexes is in \b arrIndx.
7585    * This method will not impact the size of inout parameter \b arrIndx but the size of \b arr will be modified in case of suppression.
7586    *
7587    * \param [in] idsToRemoveBg begin of set of ids to remove in \b arr (included)
7588    * \param [in] idsToRemoveEnd end of set of ids to remove in \b arr (excluded)
7589    * \param [in,out] arr array in which the remove operation will be done.
7590    * \param [in,out] arrIndx array in the remove operation will modify
7591    * \param [in] offsetForRemoval (by default 0) offset so that for each i in [0,arrIndx->getNumberOfTuples()-1) removal process will be performed in the following range [arr+arrIndx[i]+offsetForRemoval,arr+arr[i+1])
7592    * \return true if \b arr and \b arrIndx have been modified, false if not.
7593    */
7594   template <class T>
7595   bool DataArrayDiscrete<T>::RemoveIdsFromIndexedArrays(const T *idsToRemoveBg, const T *idsToRemoveEnd,
7596                                                         DataArrayType *arr, DataArrayIdType *arrIndx, mcIdType offsetForRemoval)
7597   {
7598     if(!arrIndx || !arr)
7599       throw INTERP_KERNEL::Exception("DataArrayInt::RemoveIdsFromIndexedArrays : some input arrays are empty !");
7600     if(offsetForRemoval<0)
7601       throw INTERP_KERNEL::Exception("DataArrayInt::RemoveIdsFromIndexedArrays : offsetForRemoval should be >=0 !");
7602     std::set<T> s(idsToRemoveBg,idsToRemoveEnd);
7603     mcIdType nbOfGrps=arrIndx->getNumberOfTuples()-1;
7604     mcIdType *arrIPtr=arrIndx->getPointer();
7605     *arrIPtr++=0;
7606     mcIdType previousArrI=0;
7607     const T *arrPtr=arr->begin();
7608     std::vector<T> arrOut;//no utility to switch to DataArrayInt because copy always needed
7609     for(mcIdType i=0;i<nbOfGrps;i++,arrIPtr++)
7610       {
7611         if(*arrIPtr-previousArrI>offsetForRemoval)
7612           {
7613             for(const T *work=arrPtr+previousArrI+offsetForRemoval;work!=arrPtr+*arrIPtr;work++)
7614               {
7615                 if(s.find(*work)==s.end())
7616                   arrOut.push_back(*work);
7617               }
7618           }
7619         previousArrI=*arrIPtr;
7620         *arrIPtr=ToIdType(arrOut.size());
7621       }
7622     if(arr->getNumberOfTuples()==ToIdType(arrOut.size()))
7623       return false;
7624     arr->alloc(arrOut.size(),1);
7625     std::copy(arrOut.begin(),arrOut.end(),arr->getPointer());
7626     return true;
7627   }
7628
7629   /*!
7630    * Returns a new DataArrayInt containing an arithmetic progression
7631    * that is equal to the sequence returned by Python \c range(\a begin,\a  end,\a  step )
7632    * function.
7633    *  \param [in] begin - the start value of the result sequence.
7634    *  \param [in] end - limiting value, so that every value of the result array is less than
7635    *              \a end.
7636    *  \param [in] step - specifies the increment or decrement.
7637    *  \return DataArrayInt * - a new instance of DataArrayInt. The caller is to delete this
7638    *          array using decrRef() as it is no more needed.
7639    *  \throw If \a step == 0.
7640    *  \throw If \a end < \a begin && \a step > 0.
7641    *  \throw If \a end > \a begin && \a step < 0.
7642    */
7643   template <class T>
7644   typename Traits<T>::ArrayType *DataArrayDiscrete<T>::Range(T begin, T end, T step)
7645   {
7646     mcIdType nbOfTuples=DataArrayTools<T>::GetNumberOfItemGivenBESRelative(begin,end,step,"DataArrayInt::Range");
7647     MCAuto<DataArrayType> ret=DataArrayType::New();
7648     ret->alloc(nbOfTuples,1);
7649     T *ptr=ret->getPointer();
7650     if(step>0)
7651       {
7652         for(T i=begin;i<end;i+=step,ptr++)
7653           *ptr=i;
7654       }
7655     else
7656       {
7657         for(T i=begin;i>end;i+=step,ptr++)
7658           *ptr=i;
7659       }
7660     return ret.retn();
7661   }
7662
7663   /*!
7664    * Returns a new DataArrayInt containing a renumbering map in "Old to New" mode computed
7665    * from a zip representation of a surjective format (returned e.g. by
7666    * \ref MEDCoupling::DataArrayDouble::findCommonTuples() "DataArrayDouble::findCommonTuples()"
7667    * for example). The result array minimizes the permutation. <br>
7668    * For more info on renumbering see \ref numbering. <br>
7669    * \b Example: <br>
7670    * - \a nbOfOldTuples: 10
7671    * - \a arr          : [0,3, 5,7,9]
7672    * - \a arrIBg       : [0,2,5]
7673    * - \a newNbOfTuples: 7
7674    * - result array    : [0,1,2,0,3,4,5,4,6,4]
7675    *
7676    *  \param [in] nbOfOldTuples - number of tuples in the initial array \a arr.
7677    *  \param [in] arr - the array of tuple indices grouped by \a arrIBg array.
7678    *  \param [in] arrIBg - the array dividing all indices stored in \a arr into groups of
7679    *         (indices of) equal values. Its every element (except the last one) points to
7680    *         the first element of a group of equal values.
7681    *  \param [in] arrIEnd - specifies the end of \a arrIBg, so that the last element of \a
7682    *          arrIBg is \a arrIEnd[ -1 ].
7683    *  \param [out] newNbOfTuples - number of tuples after surjection application.
7684    *  \return DataArrayInt * - a new instance of DataArrayInt. The caller is to delete this
7685    *          array using decrRef() as it is no more needed.
7686    *  \throw If any value of \a arr breaks condition ( 0 <= \a arr[ i ] < \a nbOfOldTuples ).
7687    */
7688   template <class T>
7689   DataArrayIdType *DataArrayDiscrete<T>::ConvertIndexArrayToO2N(mcIdType nbOfOldTuples, const mcIdType *arr, const mcIdType *arrIBg, const mcIdType *arrIEnd, mcIdType &newNbOfTuples)
7690   {
7691     MCAuto<DataArrayIdType> ret=DataArrayIdType::New();
7692     ret->alloc(nbOfOldTuples,1);
7693     mcIdType *pt=ret->getPointer();
7694     std::fill(pt,pt+nbOfOldTuples,-1);
7695     mcIdType nbOfGrps=ToIdType(std::distance(arrIBg,arrIEnd))-1;
7696     const mcIdType *cIPtr=arrIBg;
7697     for(mcIdType i=0;i<nbOfGrps;i++)
7698       pt[arr[cIPtr[i]]]=-(i+2);
7699     mcIdType newNb=0;
7700     for(mcIdType iNode=0;iNode<nbOfOldTuples;iNode++)
7701       {
7702         if(pt[iNode]<0)
7703           {
7704             if(pt[iNode]==-1)
7705               pt[iNode]=newNb++;
7706             else
7707               {
7708                 mcIdType grpId=-(pt[iNode]+2);
7709                 for(mcIdType j=cIPtr[grpId];j<cIPtr[grpId+1];j++)
7710                   {
7711                     if(arr[j]>=0 && arr[j]<nbOfOldTuples)
7712                       pt[arr[j]]=newNb;
7713                     else
7714                       {
7715                         std::ostringstream oss; oss << "DataArrayInt::ConvertIndexArrayToO2N : With element #" << j << " value is " << arr[j] << " should be in [0," << nbOfOldTuples << ") !";
7716                         throw INTERP_KERNEL::Exception(oss.str().c_str());
7717                       }
7718                   }
7719                 newNb++;
7720               }
7721           }
7722       }
7723     newNbOfTuples=newNb;
7724     return ret.retn();
7725   }
7726
7727   /*!
7728    * Returns a new DataArrayInt which is a minimal partition of elements of \a groups.
7729    * The i-th item of the result array is an ID of a set of elements belonging to a
7730    * unique set of groups, which the i-th element is a part of. This set of elements
7731    * belonging to a unique set of groups is called \a family, so the result array contains
7732    * IDs of families each element belongs to.
7733    *
7734    * \b Example: if we have two groups of elements: \a group1 [0,4] and \a group2 [ 0,1,2 ],
7735    * then there are 3 families:
7736    * - \a family1 (with ID 1) contains element [0] belonging to ( \a group1 + \a group2 ),
7737    * - \a family2 (with ID 2) contains elements [4] belonging to ( \a group1 ),
7738    * - \a family3 (with ID 3) contains element [1,2] belonging to ( \a group2 ), <br>
7739    * and the result array contains IDs of families [ 1,3,3,0,2 ]. <br> Note a family ID 0 which
7740    * stands for the element #3 which is in none of groups.
7741    *
7742    *  \param [in] groups - sequence of groups of element IDs.
7743    *  \param [in] newNb - total number of elements; it must be more than max ID of element
7744    *         in \a groups.
7745    *  \param [out] fidsOfGroups - IDs of families the elements of each group belong to.
7746    *  \return DataArrayInt * - a new instance of DataArrayInt containing IDs of families
7747    *         each element with ID from range [0, \a newNb ) belongs to. The caller is to
7748    *         delete this array using decrRef() as it is no more needed.
7749    *  \throw If any element ID in \a groups violates condition ( 0 <= ID < \a newNb ).
7750    */
7751   template <class T>
7752   DataArrayIdType *DataArrayDiscrete<T>::MakePartition(const std::vector<const DataArrayType *>& groups, mcIdType newNb, std::vector< std::vector<mcIdType> >& fidsOfGroups)
7753   {
7754     std::vector<const DataArrayType *> groups2;
7755     for(typename std::vector<const DataArrayType *>::const_iterator it4=groups.begin();it4!=groups.end();it4++)
7756       if(*it4)
7757         groups2.push_back(*it4);
7758     MCAuto<DataArrayIdType> ret=DataArrayIdType::New();
7759     ret->alloc(newNb,1);
7760     mcIdType *retPtr=ret->getPointer();
7761     std::fill(retPtr,retPtr+newNb,0);
7762     mcIdType fid=1;
7763     for(typename std::vector<const DataArrayType *>::const_iterator iter=groups2.begin();iter!=groups2.end();iter++)
7764       {
7765         const T *ptr=(*iter)->getConstPointer();
7766         std::size_t nbOfElem=(*iter)->getNbOfElems();
7767         mcIdType sfid=fid;
7768         for(mcIdType j=0;j<sfid;j++)
7769           {
7770             bool found=false;
7771             for(std::size_t i=0;i<nbOfElem;i++)
7772               {
7773                 if(ptr[i]>=0 && ptr[i]<newNb)
7774                   {
7775                     if(retPtr[ptr[i]]==j)
7776                       {
7777                         retPtr[ptr[i]]=fid;
7778                         found=true;
7779                       }
7780                   }
7781                 else
7782                   {
7783                     std::ostringstream oss; oss << "DataArrayInt::MakePartition : In group \"" << (*iter)->getName() << "\" in tuple #" << i << " value = " << ptr[i] << " ! Should be in [0," << newNb;
7784                     oss << ") !";
7785                     throw INTERP_KERNEL::Exception(oss.str().c_str());
7786                   }
7787               }
7788             if(found)
7789               fid++;
7790           }
7791       }
7792     fidsOfGroups.clear();
7793     fidsOfGroups.resize(groups2.size());
7794     mcIdType grId=0;
7795     for(typename std::vector<const DataArrayType *>::const_iterator iter=groups2.begin();iter!=groups2.end();iter++,grId++)
7796       {
7797         std::set<mcIdType> tmp;
7798         const T *ptr=(*iter)->getConstPointer();
7799         std::size_t nbOfElem=(*iter)->getNbOfElems();
7800         for(const T *p=ptr;p!=ptr+nbOfElem;p++)
7801           tmp.insert(retPtr[*p]);
7802         fidsOfGroups[grId].insert(fidsOfGroups[grId].end(),tmp.begin(),tmp.end());
7803       }
7804     return ret.retn();
7805   }
7806
7807 }
7808
7809 /// @cond INTERNAL
7810 namespace MEDCouplingImpl
7811 {
7812   template <class T>
7813   class OpSwitchedOn
7814   {
7815   public:
7816     OpSwitchedOn(T *pt):_pt(pt),_cnt(0) { }
7817     void operator()(const bool& b) { if(b) *_pt++=FromIdType<T>(_cnt); _cnt++; }
7818   private:
7819     T *_pt;
7820     MEDCoupling::mcIdType _cnt;
7821   };
7822
7823   template <class T>
7824   class OpSwitchedOff
7825   {
7826   public:
7827     OpSwitchedOff(T *pt):_pt(pt),_cnt(0) { }
7828     void operator()(const bool& b) { if(!b) *_pt++=FromIdType<T>(_cnt); _cnt++; }
7829   private:
7830     T *_pt;
7831     MEDCoupling::mcIdType _cnt;
7832   };
7833 }
7834 /// @endcond
7835
7836 namespace MEDCoupling
7837 {
7838   /*!
7839    * This method returns the list of ids in ascending mode so that v[id]==true.
7840    */
7841   template <class T>
7842   typename Traits<T>::ArrayType *DataArrayDiscrete<T>::BuildListOfSwitchedOn(const std::vector<bool>& v)
7843   {
7844     std::size_t sz(std::count(v.begin(),v.end(),true));
7845     MCAuto<DataArrayType> ret(DataArrayType::New()); ret->alloc(sz,1);
7846     std::for_each(v.begin(),v.end(),MEDCouplingImpl::OpSwitchedOn<T>(ret->getPointer()));
7847     return ret.retn();
7848   }
7849
7850   /*!
7851    * This method returns the list of ids in ascending mode so that v[id]==false.
7852    */
7853   template <class T>
7854   typename Traits<T>::ArrayType *DataArrayDiscrete<T>::BuildListOfSwitchedOff(const std::vector<bool>& v)
7855   {
7856     std::size_t sz(std::count(v.begin(),v.end(),false));
7857     MCAuto<DataArrayType> ret(DataArrayType::New()); ret->alloc(sz,1);
7858     std::for_each(v.begin(),v.end(),MEDCouplingImpl::OpSwitchedOff<T>(ret->getPointer()));
7859     return ret.retn();
7860   }
7861 }
7862
7863 namespace MEDCoupling
7864 {
7865   /*!
7866    * This method compares content of input vector \a v and \a this.
7867    * If for each id in \a this v[id]==True and for all other ids id2 not in \a this v[id2]==False, true is returned.
7868    * For performance reasons \a this is expected to be sorted ascendingly. If not an exception will be thrown.
7869    *
7870    * \param [in] v - the vector of 'flags' to be compared with \a this.
7871    *
7872    * \throw If \a this is not sorted ascendingly.
7873    * \throw If \a this has not exactly one component.
7874    * \throw If \a this is not allocated.
7875    */
7876   template<class T>
7877   bool DataArrayDiscreteSigned<T>::isFittingWith(const std::vector<bool>& v) const
7878   {
7879     this->checkAllocated();
7880     if(this->getNumberOfComponents()!=1)
7881       throw INTERP_KERNEL::Exception("DataArrayInt::isFittingWith : number of components of this should be equal to one !");
7882     const T *w(this->begin()),*end2(this->end());
7883     T refVal=-std::numeric_limits<T>::max();
7884     T i=0;
7885     std::vector<bool>::const_iterator it(v.begin());
7886     for(;it!=v.end();it++,i++)
7887       {
7888         if(*it)
7889           {
7890             if(w!=end2)
7891               {
7892                 if(*w++==i)
7893                   {
7894                     if(i>refVal)
7895                       refVal=i;
7896                     else
7897                       {
7898                         std::ostringstream oss; oss << "DataArrayInt::isFittingWith : At pos #" << std::distance(this->begin(),w-1) << " this is not sorted ascendingly !";
7899                         throw INTERP_KERNEL::Exception(oss.str().c_str());
7900                       }
7901                   }
7902                 else
7903                   return false;
7904               }
7905             else
7906               return false;
7907           }
7908       }
7909     return w==end2;
7910   }
7911 }
7912
7913 #endif