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