StRoot
1
|
#include <AliHLTArray.h>
Public Types | |
typedef ReturnTypeHelper< T >::Type | R |
Public Member Functions | |
ArrayBase (const ArrayBase &rhs) | |
ArrayBase & | operator= (const ArrayBase &rhs) |
R & | operator() (int x, int y) |
const R & | operator() (int x, int y) const |
AliHLTArray< T, 1 > | operator[] (int x) |
const AliHLTArray< T, 1 > | operator[] (int x) const |
Protected Member Functions | |
void | SetSize (int x, int y, int) |
Protected Member Functions inherited from AliHLTInternal::ArrayBoundsCheck | |
bool | IsInBounds (int) const |
void | SetBounds (int, int) |
void | MoveBounds (int) |
void | ReinterpretCast (const ArrayBoundsCheck &, int, int) |
Protected Attributes | |
T * | fData |
int | fSize |
int | fStride |
Friends | |
class | ArrayBase< T, 3 > |
2-dim arrays should use operator(int, int) operator[] can be used to return a 1-dim array
Definition at line 266 of file AliHLTArray.h.
|
inline |
return a reference to the value at the given indexes
Definition at line 277 of file AliHLTArray.h.
|
inline |
return a const reference to the value at the given indexes
Definition at line 281 of file AliHLTArray.h.
|
inline |
return a 1-dim array at the given index. This makes it behave like a 2-dim C-Array.
Definition at line 594 of file AliHLTArray.h.
|
inline |
return a const 1-dim array at the given index. This makes it behave like a 2-dim C-Array.
Definition at line 609 of file AliHLTArray.h.