casacore
|
Specialization for run-time axes. More...
#include <ArrayAccessor.h>
Public Member Functions | |
ArrayAccessor (const AxisN ax=AxisN(0)) | |
Constructors. | |
ArrayAccessor (Array< T > &arr, const AxisN ax=AxisN(0)) | |
ArrayAccessor (ArrayAccessor< T, AxisN > &other) | |
ArrayAccessor (ArrayAccessor< T, AxisN > &other, const AxisN ax) | |
template<size_t X> | |
ArrayAccessor (ArrayAccessor< T, Axis< X > > &other, const AxisN ax=AxisN(0)) | |
ArrayAccessor & | operator= (const ArrayAccessor< T, AxisN > &other) |
template<size_t X> | |
ArrayAccessor & | operator= (const ArrayAccessor< T, Axis< X > > &other) |
~ArrayAccessor () | |
Destructor. | |
void | init (const Array< T > &arr, const AxisN ax) |
(Re-)initialization to start of array (i.e. | |
void | init (const AxisN ax) |
void | reset () |
Reset to start of dimension or to specified pointer. | |
void | reset (const T *p) |
template<class X > | |
const T & | next () const |
Indexing operations along another axis than the one of the current object. | |
template<class X > | |
T & | next () |
template<class X > | |
const T & | prev () const |
template<class X > | |
T & | prev () |
const T & | next (const AxisN ax) const |
T & | next (const AxisN ax) |
const T & | prev (const AxisN ax) const |
T & | prev (const AxisN ax) |
template<class X > | |
const T & | index (const int ix) const |
template<class X > | |
T & | index (const int ix) |
const T & | index (const int ix, const AxisN(ax)) const |
T & | index (const int ix, const AxisN(ax)) |
bool | operator== (const ArrayAccessor< T, AxisN > &other) const |
Comparisons. | |
bool | operator!= (const ArrayAccessor< T, AxisN > &other) const |
bool | operator== (const T *other) const |
bool | operator!= (const T *other) const |
![]() | |
void | operator+= (const size_t ix) |
Iterator-like operations. | |
void | operator-= (const size_t ix) |
void | operator++ () |
void | operator++ (int) |
void | operator-- () |
void | operator-- (int) |
const T & | operator* () const |
Dereferencing. | |
T & | operator* () |
T * | data () |
const Array< T > & | baseArray () |
size_t | step () |
const T & | operator[] (const int ix) const |
Index along current axis. | |
T & | operator[] (const int ix) |
const T * | end () |
End of index on line. | |
const T * | end (const int n) |
const T * | begin () |
Start of index on line. | |
const T * | begin (const int n) |
const T * | rend () |
End when reverse indexing. | |
const T * | rend (const int n) |
const T * | rbegin () |
Begin when reverse indexing. | |
const T * | rbegin (const int n) |
Private Member Functions | |
int | initOff (int x, size_t ax) |
Get proper offset. | |
void | initStep () |
Initialize some internal values. | |
Additional Inherited Members | |
![]() | |
ArrayBaseAccessor () | |
Default constructor (for use in e.g. | |
ArrayBaseAccessor (const Array< T > &arr) | |
Construct from an Array. | |
ArrayBaseAccessor (const Array< T > &arr, const size_t ax) | |
ArrayBaseAccessor (const ArrayBaseAccessor< T > &other) | |
Copy constructor (copy semantics) | |
ArrayBaseAccessor (const ArrayBaseAccessor< T > &other, const size_t ax) | |
~ArrayBaseAccessor () | |
Destructor. | |
ArrayBaseAccessor & | operator= (const ArrayBaseAccessor< T > &other) |
Assignment (copy semantics) | |
void | init (const Array< T > &arr) |
(Re-)initialize from Array | |
void | init (const Array< T > &arr, const size_t ax) |
void | init (const size_t ax) |
![]() | |
const Array< T > * | arrayPtr_p |
The pointer to belonging array. | |
size_t | axis_p |
Current run-time axis. | |
T * | ptr_p |
Current access pointer. | |
int | step_p |
The increment to go from one point along an axis, to the next. | |
const T * | begin_p |
The start element of array. | |
const T * | end_p |
The one element beyond last on line. | |
Specialization for run-time axes.
Public interface
This class is a specialization for run-time axis selection within the array accessor. The axis is specified in the constructors and in the special indexing operators (prev, next, index
) with a parameter AxisN(n)
in stead of a template parameter <Axis<n> >
.
Definition at line 496 of file ArrayAccessor.h.
|
inlineexplicit |
Constructors.
Definition at line 501 of file ArrayAccessor.h.
|
inlineexplicit |
Definition at line 503 of file ArrayAccessor.h.
|
inline |
Definition at line 505 of file ArrayAccessor.h.
|
inlineexplicit |
Definition at line 507 of file ArrayAccessor.h.
|
inlineexplicit |
Definition at line 511 of file ArrayAccessor.h.
|
inline |
Destructor.
Definition at line 526 of file ArrayAccessor.h.
|
inline |
Definition at line 569 of file ArrayAccessor.h.
References casacore::ptr_p.
|
inline |
Definition at line 566 of file ArrayAccessor.h.
References casacore::ptr_p.
|
inline |
Definition at line 573 of file ArrayAccessor.h.
References casacore::ptr_p.
|
inline |
Definition at line 571 of file ArrayAccessor.h.
References casacore::ptr_p.
|
inline |
(Re-)initialization to start of array (i.e.
element (0,0,0,...)) or re-initialize to an axis.
Definition at line 531 of file ArrayAccessor.h.
References casacore::ArrayBaseAccessor< T >::init().
|
inline |
Definition at line 533 of file ArrayAccessor.h.
References casacore::ArrayBaseAccessor< T >::init().
|
inlineprivate |
Get proper offset.
Definition at line 589 of file ArrayAccessor.h.
|
inlineprivate |
Initialize some internal values.
Definition at line 593 of file ArrayAccessor.h.
References casacore::ptr_p.
Definition at line 551 of file ArrayAccessor.h.
References casacore::ptr_p.
|
inline |
Indexing operations along another axis than the one of the current object.
See for the indexing and iterator operations along the object's axis ArrayBaseAccessor
Definition at line 548 of file ArrayAccessor.h.
References casacore::ptr_p.
|
inline |
Definition at line 559 of file ArrayAccessor.h.
References casacore::ptr_p.
|
inline |
Definition at line 557 of file ArrayAccessor.h.
References casacore::ptr_p.
|
inline |
Definition at line 581 of file ArrayAccessor.h.
References casacore::ptr_p.
|
inline |
Definition at line 584 of file ArrayAccessor.h.
References casacore::ptr_p.
|
inline |
Definition at line 520 of file ArrayAccessor.h.
References casacore::ArrayBaseAccessor< T >::operator=().
|
inline |
Definition at line 514 of file ArrayAccessor.h.
References casacore::ArrayBaseAccessor< T >::operator=().
|
inline |
|
inline |
Definition at line 583 of file ArrayAccessor.h.
References casacore::ptr_p.
Definition at line 556 of file ArrayAccessor.h.
References casacore::ptr_p.
|
inline |
Definition at line 553 of file ArrayAccessor.h.
References casacore::ptr_p.
|
inline |
Definition at line 563 of file ArrayAccessor.h.
References casacore::ptr_p.
|
inline |
Definition at line 561 of file ArrayAccessor.h.
References casacore::ptr_p.
|
inline |
Reset to start of dimension or to specified pointer.
Definition at line 539 of file ArrayAccessor.h.
References casacore::ptr_p.
|
inline |
Definition at line 540 of file ArrayAccessor.h.
References casacore::ptr_p.