[772] | 1 | // This may look like C code, but it is really -*- C++ -*-
|
---|
| 2 | // template array class for numerical types
|
---|
| 3 | // R. Ansari, C.Magneville 03/2000
|
---|
| 4 |
|
---|
| 5 | #ifndef TArray_SEEN
|
---|
| 6 | #define TArray_SEEN
|
---|
| 7 |
|
---|
| 8 | #include "machdefs.h"
|
---|
| 9 | #include <math.h>
|
---|
| 10 | #include <iostream.h>
|
---|
[787] | 11 | #include "basarr.h"
|
---|
[772] | 12 | #include "ndatablock.h"
|
---|
| 13 | #include <complex>
|
---|
[785] | 14 | #include "utilarr.h"
|
---|
[772] | 15 |
|
---|
| 16 |
|
---|
| 17 | namespace SOPHYA {
|
---|
| 18 |
|
---|
| 19 | // Forward declaration
|
---|
| 20 | template <class T> class FIO_TArray;
|
---|
| 21 |
|
---|
[787] | 22 | // --------------------------- classe template Array -----------------------
|
---|
| 23 | // ( See BaseArray class for data organisation in memory and related methods )
|
---|
| 24 |
|
---|
[894] | 25 | //! Class for template arrays
|
---|
[772] | 26 | template <class T>
|
---|
[787] | 27 | class TArray : public BaseArray {
|
---|
[772] | 28 | public:
|
---|
| 29 | // Creation / destruction
|
---|
| 30 | TArray();
|
---|
[804] | 31 | TArray(uint_4 ndim, const uint_4 * siz, uint_4 step =1);
|
---|
| 32 | TArray(uint_4 nx, uint_4 ny=0, uint_4 nz=0, uint_4 nt=0, uint_4 nu=0);
|
---|
| 33 | TArray(uint_4 ndim, const uint_4 * siz, NDataBlock<T> & db, bool share=false, uint_4 step=1, uint_8 offset=0);
|
---|
| 34 | TArray(uint_4 ndim, const uint_4 * siz, T* values, uint_4 step=1, uint_8 offset=0, Bridge* br=NULL);
|
---|
[772] | 35 | TArray(const TArray<T>& a);
|
---|
| 36 | TArray(const TArray<T>& a, bool share);
|
---|
[1081] | 37 | TArray(const BaseArray& a);
|
---|
[772] | 38 |
|
---|
| 39 | virtual ~TArray();
|
---|
| 40 |
|
---|
[967] | 41 | // A = B
|
---|
[894] | 42 | //! = operator between TArray
|
---|
[976] | 43 | /*! \warning Datas are copied (cloned) from \b a.
|
---|
| 44 | \sa Set \sa NDataBlock::operator=(const NDataBlock<T>&) */
|
---|
[804] | 45 | inline TArray<T>& operator = (const TArray<T>& a) { return Set(a); }
|
---|
| 46 | virtual TArray<T>& Set(const TArray<T>& a);
|
---|
[772] | 47 |
|
---|
[1081] | 48 | //! = operator between TArray 's with different types - Elements are converted.
|
---|
| 49 | inline TArray<T>& operator = (const BaseArray& a) { return SetBA(a); }
|
---|
| 50 | virtual TArray<T>& SetBA(const BaseArray& a);
|
---|
| 51 |
|
---|
[772] | 52 | // Gestion taille/Remplissage
|
---|
| 53 | virtual void Clone(const TArray<T>& a);
|
---|
[970] | 54 | // partage les donnees si "a" temporaire, clone sinon.
|
---|
| 55 | void CloneOrShare(const TArray<T>& a);
|
---|
| 56 | // Share: partage les donnees de "a"
|
---|
| 57 |
|
---|
| 58 | void Share(const TArray<T>& a);
|
---|
[804] | 59 | void ReSize(uint_4 ndim, uint_4 * siz, uint_4 step=1);
|
---|
| 60 | void Realloc(uint_4 ndim, uint_4 * siz, uint_4 step=1, bool force=false);
|
---|
[787] | 61 |
|
---|
[785] | 62 | // Compacts size=1 array dimensions
|
---|
[787] | 63 | virtual TArray<T>& CompactAllDimensions();
|
---|
| 64 | virtual TArray<T>& CompactTrailingDimensions();
|
---|
[785] | 65 |
|
---|
[804] | 66 | // Packing array elements in memory
|
---|
| 67 | virtual TArray<T> PackElements(bool force=false) const ;
|
---|
[772] | 68 |
|
---|
[804] | 69 | // SubArrays - $CHECK$ Reza 03/2000 je ne sais pas s'il faut declarer ca const ??
|
---|
[894] | 70 | TArray<T> SubArray(Range rx, Range ry, Range rz, Range rt, Range ru) const ;
|
---|
[963] | 71 | #if !defined(__GNUG__)
|
---|
[894] | 72 | //! () operator for Sub arrays extraction
|
---|
| 73 | /*! \sa SubArray */
|
---|
[804] | 74 | inline TArray<T> operator () (Range rx, Range ry, Range rz, Range rt=0, Range ru=0) const
|
---|
| 75 | { return SubArray(rx, ry, rz, rt, ru); }
|
---|
[963] | 76 | #else
|
---|
| 77 | // g++ (2.95) se melange les pinceaux avec les arguments par defaut !
|
---|
| 78 | //! () operator for Sub arrays extraction
|
---|
| 79 | /*! \sa SubArray */
|
---|
| 80 | inline TArray<T> operator () (Range rx, Range ry, Range rz) const
|
---|
| 81 | { return SubArray(rx, ry, rz, Range(0), Range(0)); }
|
---|
| 82 | inline TArray<T> operator () (Range rx, Range ry, Range rz, Range rt) const
|
---|
| 83 | { return SubArray(rx, ry, rz, rt, Range(0)); }
|
---|
| 84 | inline TArray<T> operator () (Range rx, Range ry, Range rz, Range rt, Range ru) const
|
---|
| 85 | { return SubArray(rx, ry, rz, rt, ru); }
|
---|
| 86 | #endif
|
---|
[772] | 87 |
|
---|
[787] | 88 | // ---- Access to data
|
---|
| 89 | // Definition of virtual element acces method inherited from BaseArray class
|
---|
[1081] | 90 | virtual MuTyV & ValueAtPosition(uint_8 ip) const;
|
---|
[785] | 91 |
|
---|
[787] | 92 | // Data Access: operator overloaded inline acces methods
|
---|
[772] | 93 | inline T const& operator()(uint_4 ix, uint_4 iy, uint_4 iz) const ;
|
---|
| 94 | inline T& operator()(uint_4 ix, uint_4 iy, uint_4 iz);
|
---|
| 95 | inline T const& operator()(uint_4 ix, uint_4 iy, uint_4 iz, uint_4 it, uint_4 iu=0) const ;
|
---|
| 96 | inline T& operator()(uint_4 ix, uint_4 iy, uint_4 iz, uint_4 it, uint_4 iu=0);
|
---|
[785] | 97 | inline T const& operator[](uint_8 ip) const ;
|
---|
| 98 | inline T& operator[](uint_8 ip);
|
---|
[772] | 99 |
|
---|
| 100 | inline T const& Elem(uint_4 ix, uint_4 iy, uint_4 iz, uint_4 it=0, uint_4 iu=0) const ;
|
---|
| 101 | inline T& Elem(uint_4 ix, uint_4 iy, uint_4 iz, uint_4 it=0, uint_4 iu=0);
|
---|
| 102 | inline T const& ElemCheckBound(uint_4 ix, uint_4 iy, uint_4 iz, uint_4 it=0, uint_4 iu=0) const ;
|
---|
| 103 | inline T& ElemCheckBound(uint_4 ix, uint_4 iy, uint_4 iz, uint_4 it=0, uint_4 iu=0);
|
---|
| 104 |
|
---|
[894] | 105 | //! Return pointer to first element adress
|
---|
[772] | 106 | inline T* Data() {return mNDBlock.Begin()+offset_;}
|
---|
[894] | 107 | //! Return pointer to first element adress
|
---|
[772] | 108 | inline const T* Data() const {return mNDBlock.Begin()+offset_;}
|
---|
[894] | 109 | //! Return reference to datablock NDataBlock
|
---|
[772] | 110 | inline NDataBlock<T>& DataBlock() {return mNDBlock;}
|
---|
[894] | 111 | //! Return reference to datablock NDataBlock
|
---|
[772] | 112 | inline const NDataBlock<T>& DataBlock() const {return mNDBlock;}
|
---|
| 113 |
|
---|
[787] | 114 | // Temporaire?
|
---|
[894] | 115 | //! Are the array temporay ?
|
---|
[787] | 116 | inline bool IsTemp(void) const {return mNDBlock.IsTemp();}
|
---|
[894] | 117 | //! Set the array as temporay
|
---|
[787] | 118 | inline void SetTemp(bool temp=false) const {mNDBlock.SetTemp(temp);}
|
---|
| 119 |
|
---|
[772] | 120 | // Operations diverses = , +=, ...
|
---|
| 121 | // Conversion en type T, if Size() == 1
|
---|
[787] | 122 | inline T toScalar();
|
---|
[772] | 123 | // Met les elements a une suite de valeurs
|
---|
[1103] | 124 | virtual TArray<T>& SetSeq(Sequence const & seq);
|
---|
[894] | 125 | //! Fill TArray with Sequence \b seq
|
---|
[1103] | 126 | inline TArray<T>& operator = (Sequence const & seq) { return SetSeq(seq); }
|
---|
[772] | 127 | // A = x (tous les elements a x)
|
---|
[813] | 128 | virtual TArray<T>& SetT(T x);
|
---|
[894] | 129 | //! Fill TArray with all elements equal to \b x
|
---|
[813] | 130 | inline TArray<T>& operator = (T x) { return SetT(x); }
|
---|
[772] | 131 | // A += -= *= /= x (ajoute, soustrait, ... x a tous les elements)
|
---|
[804] | 132 | virtual TArray<T>& Add(T x);
|
---|
[894] | 133 | //! Add \b x to all elements
|
---|
[804] | 134 | inline TArray<T>& operator += (T x) { return Add(x); }
|
---|
[970] | 135 | virtual TArray<T>& Sub(T x, bool fginv=false);
|
---|
[894] | 136 | //! Substract \b x to all elements
|
---|
[804] | 137 | inline TArray<T>& operator -= (T x) { return Sub(x); }
|
---|
| 138 | virtual TArray<T>& Mul(T x);
|
---|
[894] | 139 | //! Multiply all elements by \b x
|
---|
[804] | 140 | inline TArray<T>& operator *= (T x) { return Mul(x); }
|
---|
[970] | 141 | virtual TArray<T>& Div(T x, bool fginv=false);
|
---|
[894] | 142 | //! Divide all elements by \b x
|
---|
[804] | 143 | inline TArray<T>& operator /= (T x) { return Div(x); }
|
---|
| 144 |
|
---|
[772] | 145 | // A += -= (ajoute, soustrait element par element les deux tableaux )
|
---|
[804] | 146 | virtual TArray<T>& AddElt(const TArray<T>& a);
|
---|
[894] | 147 | //! Operator TArray += TArray
|
---|
[804] | 148 | inline TArray<T>& operator += (const TArray<T>& a) { return AddElt(a); }
|
---|
[970] | 149 | virtual TArray<T>& SubElt(const TArray<T>& a, bool fginv=false);
|
---|
[894] | 150 | //! Operator TArray -= TArray
|
---|
[804] | 151 | inline TArray<T>& operator -= (const TArray<T>& a) { return SubElt(a); }
|
---|
[787] | 152 | // Multiplication, division element par element les deux tableaux
|
---|
[804] | 153 | virtual TArray<T>& MulElt(const TArray<T>& a);
|
---|
[1072] | 154 | virtual TArray<T>& DivElt(const TArray<T>& a, bool fginv=false, bool divzero=false);
|
---|
[804] | 155 | // Recopie des valeurs, element par element
|
---|
| 156 | virtual TArray<T>& CopyElt(const TArray<T>& a);
|
---|
[1081] | 157 | // Recopie des valeurs avec conversion prealable, element par element
|
---|
| 158 | virtual TArray<T>& ConvertAndCopyElt(const BaseArray& a);
|
---|
[772] | 159 |
|
---|
[804] | 160 | // Somme et produit des elements
|
---|
| 161 | virtual T Sum() const ;
|
---|
| 162 | virtual T Product() const ;
|
---|
[1113] | 163 | // Somme du carre des elements
|
---|
| 164 | virtual T SumX2() const;
|
---|
| 165 | // Valeur min et max des elements
|
---|
| 166 | virtual void MinMax(T& min, T& max) const ;
|
---|
[804] | 167 |
|
---|
[772] | 168 | // Impression, I/O, ...
|
---|
[813] | 169 | virtual string InfoString() const;
|
---|
| 170 | virtual void Print(ostream& os, int_4 maxprt=-1, bool si=false) const ;
|
---|
[772] | 171 |
|
---|
| 172 | // Pour la gestion de persistance
|
---|
| 173 | friend class FIO_TArray<T>;
|
---|
| 174 |
|
---|
| 175 | protected:
|
---|
| 176 |
|
---|
[894] | 177 | NDataBlock<T> mNDBlock; //!< Block for datas
|
---|
[1081] | 178 | mutable MuTyV my_mtv; //!< for use by ValueAtPosition()
|
---|
[772] | 179 | };
|
---|
| 180 |
|
---|
| 181 | ////////////////////////////////////////////////////////////////
|
---|
| 182 | // Surcharge d'operateur <<
|
---|
[894] | 183 | //! Print TArray \b a on stream \b os
|
---|
[772] | 184 | template <class T>
|
---|
| 185 | inline ostream& operator << (ostream& os, const TArray<T>& a)
|
---|
| 186 | { a.Print(os); return(os); }
|
---|
| 187 |
|
---|
| 188 | ////////////////////////////////////////////////////////////////
|
---|
| 189 | // Surcharge d'operateurs A (+,-,*,/) (T) x
|
---|
| 190 |
|
---|
[958] | 191 | /*! \ingroup TArray \fn operator+(const TArray<T>&,T)
|
---|
| 192 | \brief Operator TArray = TArray + constant */
|
---|
[772] | 193 | template <class T> inline TArray<T> operator + (const TArray<T>& a, T b)
|
---|
[970] | 194 | {TArray<T> result; result.CloneOrShare(a); result.SetTemp(true);
|
---|
| 195 | result.Add(b); return result;}
|
---|
[772] | 196 |
|
---|
[958] | 197 | /*! \ingroup TArray \fn operator+(T,const TArray<T>&)
|
---|
| 198 | \brief Operator TArray = constant + TArray */
|
---|
[772] | 199 | template <class T> inline TArray<T> operator + (T b,const TArray<T>& a)
|
---|
[970] | 200 | {TArray<T> result; result.CloneOrShare(a); result.SetTemp(true);
|
---|
| 201 | result.Add(b); return result;}
|
---|
[772] | 202 |
|
---|
[958] | 203 | /*! \ingroup TArray \fn operator-(const TArray<T>&,T)
|
---|
| 204 | \brief Operator TArray = TArray - constant */
|
---|
[772] | 205 | template <class T> inline TArray<T> operator - (const TArray<T>& a, T b)
|
---|
[970] | 206 | {TArray<T> result; result.CloneOrShare(a); result.SetTemp(true);
|
---|
| 207 | result.Sub(b); return result;}
|
---|
[772] | 208 |
|
---|
[958] | 209 | /*! \ingroup TArray \fn operator-(T,const TArray<T>&)
|
---|
| 210 | \brief Operator TArray = constant - TArray */
|
---|
[772] | 211 | template <class T> inline TArray<T> operator - (T b,const TArray<T>& a)
|
---|
[970] | 212 | {TArray<T> result; result.CloneOrShare(a); result.SetTemp(true);
|
---|
| 213 | result.Sub(b,true); return result;}
|
---|
[772] | 214 |
|
---|
[958] | 215 | /*! \ingroup TArray \fn operator*(const TArray<T>&,T)
|
---|
| 216 | \brief Operator TArray = TArray * constant */
|
---|
[772] | 217 | template <class T> inline TArray<T> operator * (const TArray<T>& a, T b)
|
---|
[970] | 218 | {TArray<T> result; result.CloneOrShare(a); result.SetTemp(true);
|
---|
| 219 | result.Mul(b); return result;}
|
---|
[772] | 220 |
|
---|
[958] | 221 | /*! \ingroup TArray \fn operator*(T,const TArray<T>&)
|
---|
| 222 | \brief Operator TArray = constant * TArray */
|
---|
[772] | 223 | template <class T> inline TArray<T> operator * (T b,const TArray<T>& a)
|
---|
[970] | 224 | {TArray<T> result; result.CloneOrShare(a); result.SetTemp(true);
|
---|
| 225 | result.Mul(b); return result;}
|
---|
[772] | 226 |
|
---|
[958] | 227 | /*! \ingroup TArray \fn operator/(const TArray<T>&,T)
|
---|
| 228 | \brief Operator TArray = TArray / constant */
|
---|
[772] | 229 | template <class T> inline TArray<T> operator / (const TArray<T>& a, T b)
|
---|
[970] | 230 | {TArray<T> result; result.CloneOrShare(a); result.SetTemp(true);
|
---|
| 231 | result.Div(b); return result;}
|
---|
[772] | 232 |
|
---|
[970] | 233 | /*! \ingroup TArray \fn operator/(T,const TArray<T>&)
|
---|
| 234 | \brief Operator TArray = constant / TArray */
|
---|
| 235 | template <class T> inline TArray<T> operator / (T b, const TArray<T>& a)
|
---|
| 236 | {TArray<T> result; result.CloneOrShare(a); result.SetTemp(true);
|
---|
| 237 | result.Div(b, true); return result;}
|
---|
| 238 |
|
---|
[772] | 239 | ////////////////////////////////////////////////////////////////
|
---|
| 240 | // Surcharge d'operateurs C = A (+,-) B
|
---|
| 241 |
|
---|
[958] | 242 | /*! \ingroup TArray \fn operator+(const TArray<T>&,const TArray<T>&)
|
---|
| 243 | \brief Operator TArray = TArray + TArray */
|
---|
[772] | 244 | template <class T>
|
---|
| 245 | inline TArray<T> operator + (const TArray<T>& a,const TArray<T>& b)
|
---|
[970] | 246 | { TArray<T> result; result.SetTemp(true);
|
---|
| 247 | if (b.IsTemp()) { result.Share(b); result.AddElt(a); }
|
---|
| 248 | else { result.CloneOrShare(a); result.AddElt(b); }
|
---|
| 249 | return result; }
|
---|
[772] | 250 |
|
---|
[958] | 251 | /*! \ingroup TArray \fn operator-(const TArray<T>&,const TArray<T>&)
|
---|
| 252 | \brief Operator TArray = TArray - TArray */
|
---|
[772] | 253 | template <class T>
|
---|
| 254 | inline TArray<T> operator - (const TArray<T>& a,const TArray<T>& b)
|
---|
[970] | 255 | { TArray<T> result; result.SetTemp(true);
|
---|
| 256 | if (b.IsTemp()) { result.Share(b); result.SubElt(a, true); }
|
---|
| 257 | else { result.CloneOrShare(a); result.SubElt(b); }
|
---|
| 258 | return result; }
|
---|
[772] | 259 |
|
---|
| 260 |
|
---|
| 261 | // --------------------------------------------------
|
---|
| 262 | // inline element acces methods
|
---|
| 263 | // --------------------------------------------------
|
---|
[894] | 264 |
|
---|
| 265 | //! Return element (ix,iy,iz,it,iu) value
|
---|
[772] | 266 | template <class T>
|
---|
| 267 | inline T const& TArray<T>::Elem(uint_4 ix, uint_4 iy, uint_4 iz, uint_4 it, uint_4 iu) const
|
---|
| 268 | {
|
---|
| 269 | return ( *( mNDBlock.Begin()+ offset_+
|
---|
| 270 | ix*step_[0] + iy*step_[1] + iz*step_[2] +
|
---|
| 271 | it*step_[3] + iu*step_[4]) );
|
---|
| 272 | }
|
---|
| 273 |
|
---|
[894] | 274 | //! Return element (ix,iy,iz,it,iu) value
|
---|
[772] | 275 | template <class T>
|
---|
| 276 | inline T & TArray<T>::Elem(uint_4 ix, uint_4 iy, uint_4 iz, uint_4 it, uint_4 iu)
|
---|
| 277 | {
|
---|
| 278 | return ( *( mNDBlock.Begin()+ offset_+
|
---|
| 279 | ix*step_[0] + iy*step_[1] + iz*step_[2] +
|
---|
| 280 | it*step_[3] + iu*step_[4]) );
|
---|
| 281 | }
|
---|
| 282 |
|
---|
[894] | 283 | //! Return element (ix,iy,iz,it,iu) value with Check of indexes bound first
|
---|
[772] | 284 | template <class T>
|
---|
| 285 | inline T const& TArray<T>::ElemCheckBound(uint_4 ix, uint_4 iy, uint_4 iz, uint_4 it, uint_4 iu) const
|
---|
| 286 | {
|
---|
| 287 | CheckBound(ix, iy, iz, it, iu, 4);
|
---|
[804] | 288 | return(Elem(ix, iy, iz, it, iu));
|
---|
[772] | 289 | }
|
---|
| 290 |
|
---|
[894] | 291 | //! Return element (ix,iy,iz,it,iu) value with Check of indexes bound first
|
---|
[772] | 292 | template <class T>
|
---|
| 293 | inline T & TArray<T>::ElemCheckBound(uint_4 ix, uint_4 iy, uint_4 iz, uint_4 it, uint_4 iu)
|
---|
| 294 | {
|
---|
| 295 | CheckBound(ix, iy, iz, it, iu, 4);
|
---|
[804] | 296 | return(Elem(ix, iy, iz, it, iu));
|
---|
[772] | 297 | }
|
---|
| 298 |
|
---|
[894] | 299 | //! Return element (ix,iy,iz) value
|
---|
[772] | 300 | template <class T>
|
---|
| 301 | inline T const& TArray<T>::operator()(uint_4 ix, uint_4 iy, uint_4 iz) const
|
---|
| 302 | {
|
---|
| 303 | #ifdef SO_BOUNDCHECKING
|
---|
| 304 | CheckBound(ix, iy, iz, 0, 0, 4);
|
---|
| 305 | #endif
|
---|
| 306 | return ( *( mNDBlock.Begin()+ offset_+
|
---|
| 307 | ix*step_[0] + iy*step_[1] + iz*step_[2]) );
|
---|
| 308 | }
|
---|
| 309 |
|
---|
[894] | 310 | //! Return element (ix,iy,iz) value
|
---|
[772] | 311 | template <class T>
|
---|
| 312 | inline T & TArray<T>::operator()(uint_4 ix, uint_4 iy, uint_4 iz)
|
---|
| 313 | {
|
---|
| 314 | #ifdef SO_BOUNDCHECKING
|
---|
| 315 | CheckBound(ix, iy, iz, 0, 0, 4);
|
---|
| 316 | #endif
|
---|
| 317 | return ( *( mNDBlock.Begin()+ offset_+
|
---|
| 318 | ix*step_[0] + iy*step_[1] + iz*step_[2]) );
|
---|
| 319 | }
|
---|
| 320 |
|
---|
[894] | 321 | //! Operator () : return element (ix,iy,iz,it,iu) value
|
---|
[772] | 322 | template <class T>
|
---|
| 323 | inline T const& TArray<T>::operator()(uint_4 ix, uint_4 iy, uint_4 iz, uint_4 it, uint_4 iu) const
|
---|
| 324 | {
|
---|
| 325 | #ifdef SO_BOUNDCHECKING
|
---|
| 326 | CheckBound(ix, iy, iz, it, iu, 4);
|
---|
| 327 | #endif
|
---|
| 328 | return ( *( mNDBlock.Begin()+ offset_+
|
---|
| 329 | ix*step_[0] + iy*step_[1] + iz*step_[2] +
|
---|
| 330 | it*step_[3] + iu*step_[4]) );
|
---|
| 331 | }
|
---|
| 332 |
|
---|
[894] | 333 | //! Operator () : return element (ix,iy,iz,it,iu) value
|
---|
[772] | 334 | template <class T>
|
---|
| 335 | inline T & TArray<T>::operator()(uint_4 ix, uint_4 iy, uint_4 iz, uint_4 it, uint_4 iu)
|
---|
| 336 | {
|
---|
| 337 | #ifdef SO_BOUNDCHECKING
|
---|
| 338 | CheckBound(ix, iy, iz, it, iu, 4);
|
---|
| 339 | #endif
|
---|
| 340 | return ( *( mNDBlock.Begin()+ offset_+
|
---|
| 341 | ix*step_[0] + iy*step_[1] + iz*step_[2] +
|
---|
| 342 | it*step_[3] + iu*step_[4]) );
|
---|
| 343 | }
|
---|
| 344 |
|
---|
[785] | 345 |
|
---|
[894] | 346 | //! Operator [] : return element at positon ip
|
---|
[772] | 347 | template <class T>
|
---|
[785] | 348 | inline T const& TArray<T>::operator[](uint_8 ip) const
|
---|
[772] | 349 | {
|
---|
| 350 | #ifdef SO_BOUNDCHECKING
|
---|
| 351 | if (ip >= totsize_) throw( ParmError("TArray<T>::operator[] Out-of-bound Error") );
|
---|
| 352 | #endif
|
---|
[785] | 353 | return *(mNDBlock.Begin()+Offset(ip));
|
---|
[772] | 354 | }
|
---|
| 355 |
|
---|
[894] | 356 | //! Operator [] : return element at positon ip
|
---|
[772] | 357 | template <class T>
|
---|
[785] | 358 | inline T & TArray<T>::operator[](uint_8 ip)
|
---|
[772] | 359 | {
|
---|
| 360 | #ifdef SO_BOUNDCHECKING
|
---|
| 361 | if (ip >= totsize_) throw( ParmError("TArray<T>::operator[] Out-of-bound Error") );
|
---|
| 362 | #endif
|
---|
[785] | 363 | return *(mNDBlock.Begin()+Offset(ip));
|
---|
[772] | 364 | }
|
---|
| 365 |
|
---|
[785] | 366 |
|
---|
[894] | 367 | //! Return the value of first element
|
---|
[772] | 368 | template <class T>
|
---|
[787] | 369 | inline T TArray<T>::toScalar()
|
---|
[772] | 370 | {
|
---|
| 371 | if (Size() != 1) throw(SzMismatchError("TArray<T>::operator T() Size() != 1")) ;
|
---|
| 372 | return ( (*this)[0] );
|
---|
| 373 | }
|
---|
| 374 |
|
---|
[804] | 375 | // Typedef pour simplifier
|
---|
[956] | 376 | /*! \ingroup TArray
|
---|
| 377 | \typedef Array
|
---|
| 378 | \brief To simplified TArray<r_8> writing
|
---|
| 379 | */
|
---|
[804] | 380 | typedef TArray<r_8> Array;
|
---|
| 381 |
|
---|
[772] | 382 | } // Fin du namespace
|
---|
| 383 |
|
---|
| 384 | #endif
|
---|