casacore
|
#include <VectorIter.h>
Public Member Functions | |
VectorIterator (Array< T, Alloc > &a, size_t axis=0) | |
Iterate by vector cursors through array "a". More... | |
Vector< T, Alloc > & | vector () |
Return a Vector at the current position. More... | |
Public Member Functions inherited from casacore::ArrayIterator< T, std::allocator< T > > | |
ArrayIterator (const Array< T, std::allocator< T > > &arr, size_t byDim=1) | |
Step through array "arr" over the first byDim axes (using a cursor of dimensionality "byDim"). More... | |
ArrayIterator (const Array< T, std::allocator< T > > &arr, const IPosition &axes, bool axesAreCursor=true) | |
Step through an array using the given axes. More... | |
virtual void | next () override |
Move the cursor to the next position. More... | |
virtual void | set (const IPosition &cursorPos) override |
Set the cursor to the given position. More... | |
virtual void | reset () override |
Reset the cursor to the beginning. More... | |
Array< T, std::allocator< T > > & | array () |
Return the cursor. More... | |
virtual ArrayBase & | getArray () override |
Get the array in the cursor. More... | |
Public Member Functions inherited from casacore::ArrayPositionIterator | |
ArrayPositionIterator (const IPosition &shape, const IPosition &origin, size_t byDim) | |
Define the shape and origin of the volume the cursor will step through. More... | |
ArrayPositionIterator (const IPosition &shape, size_t byDim) | |
ArrayPositionIterator (const IPosition &shape, const IPosition &axes, bool axesAreCursor=true) | |
Step through an array using the given axes. More... | |
virtual | ~ArrayPositionIterator () |
void | origin () |
bool | atStart () const |
Returns true of the cursor is at the origin. More... | |
bool | pastEnd () const |
Returns true if the cursor has moved past the end of its volume. More... | |
const IPosition & | pos () const |
Return the position of the cursor. More... | |
IPosition | endPos () const |
Return the end position of the cursor. More... | |
size_t | ndim () const |
What is the dimensionality of the volume we are iterating through? More... | |
const IPosition & | iterAxes () const |
Return the iteration axes. More... | |
const IPosition & | cursorAxes () const |
Return the cursor axes. More... | |
Private Member Functions | |
VectorIterator (const VectorIterator< T, Alloc > &)=delete | |
Not implemented. More... | |
VectorIterator< T, Alloc > & | operator= (const VectorIterator< T, Alloc > &)=delete |
Not implemented. More... | |
Additional Inherited Members | |
Protected Member Functions inherited from casacore::ArrayPositionIterator | |
size_t | nextStep () |
Advance cursor to its next position and tell which dimension stepped. More... | |
size_t | dimIter () const |
What is the dimensionality of the "step" the cursor takes, i.e. More... | |
Protected Attributes inherited from casacore::ArrayIterator< T, std::allocator< T > > | |
std::unique_ptr< Array< T, std::allocator< T > > > | ap_p |
The cursor. More... | |
Iterate an Vector cursor through another Array.
VectorIterator steps a Vector (the "cursor") through an array for the given axis. The cursor "refers" to storage in the array, so that changing the values in the cursor changes values in the original array.
This class is derived from ArrayIterator; basically it only adds the vector() member function which allows you to access the cursor as a Vector.
Tip: The origin of the cursor, i;e; the subarray that moves through the larger array, is always zero;
In this example we sum all the elements of an array; of course we already have the "sum" function in ArrayMath.h that we should use instead.
Definition at line 73 of file VectorIter.h.
|
explicit |
Iterate by vector cursors through array "a".
The vector cursor is taken for the given axis.
|
privatedelete |
Not implemented.
|
privatedelete |
Not implemented.
|
inline |
Return a Vector at the current position.
Definition at line 81 of file VectorIter.h.
References casacore::ArrayIterator< T, std::allocator< T > >::ap_p.