casa  5.7.0-16
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Public Member Functions | Private Member Functions | List of all members
casacore::VectorIterator< T > Class Template Reference

Iterate an Vector cursor through another Array. More...

#include <VectorIter.h>

Inheritance diagram for casacore::VectorIterator< T >:
casacore::ArrayIterator< T > casacore::ArrayPositionIterator

Public Member Functions

 VectorIterator (Array< T > &a, uInt axis=0)
 Iterate by vector cursors through array "a". More...
 
Vector< T > & vector ()
 Return a Vector at the current position. More...
 
- Public Member Functions inherited from casacore::ArrayIterator< T >
 ArrayIterator (const Array< T > &arr, uInt byDim=1)
 Step through array "arr" over the first byDim axes (using a cursor of dimensionality "byDim"). More...
 
 ArrayIterator (const Array< T > &arr, const IPosition &axes, Bool axesAreCursor=True)
 Step through an array using the given axes. More...
 
virtual ~ArrayIterator ()
 
virtual void next ()
 Move the cursor to the next position. More...
 
virtual void set (const IPosition &cursorPos)
 Set the cursor to the given position. More...
 
virtual void reset ()
 Reset the cursor to the beginning. More...
 
Array< T > & array ()
 Return the cursor. More...
 
virtual ArrayBasegetArray ()
 Get the array in the cursor. More...
 
- Public Member Functions inherited from casacore::ArrayPositionIterator
 ArrayPositionIterator (const IPosition &shape, const IPosition &origin, uInt byDim)
 Define the shape and origin of the volume the cursor will step through. More...
 
 ArrayPositionIterator (const IPosition &shape, uInt 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 IPositionpos () const
 Return the position of the cursor. More...
 
IPosition endPos () const
 Return the end position of the cursor. More...
 
uInt ndim () const
 What is the dimensionality of the volume we are iterating through? More...
 
const IPositioniterAxes () const
 Return the iteration axes. More...
 
const IPositioncursorAxes () const
 Return the cursor axes. More...
 

Private Member Functions

 VectorIterator (const VectorIterator< T > &)
 Not implemented. More...
 
VectorIterator< T > & operator= (const VectorIterator< T > &)
 Not implemented. More...
 

Additional Inherited Members

- Protected Member Functions inherited from casacore::ArrayPositionIterator
uInt nextStep ()
 Advance cursor to its next position and tell which dimension stepped. More...
 
uInt dimIter () const
 What is the dimensionality of the "step" the cursor takes, i.e. More...
 
- Protected Attributes inherited from casacore::ArrayIterator< T >
Array< T > * ap_p
 A pointer to the cursor. More...
 

Detailed Description

template<class T>
class casacore::VectorIterator< T >

Iterate an Vector cursor through another Array.

Review Status

Reviewed By:
UNKNOWN
Date Reviewed:
before2004/08/25

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.

Array<Float> af;
// set af
Float sum = 0.0;
uInt n = vi.vector().nelements();
while (! vi.pastEnd()) {
for (Int i=0; i < n; i++) { // N.B.; cursor always 0 based.
sum += vi.vector()(i);
}
vi.next();
}

Definition at line 74 of file VectorIter.h.

Constructor & Destructor Documentation

template<class T>
casacore::VectorIterator< T >::VectorIterator ( Array< T > &  a,
uInt  axis = 0 
)
explicit

Iterate by vector cursors through array "a".

The vector cursor is taken for the given axis.

template<class T>
casacore::VectorIterator< T >::VectorIterator ( const VectorIterator< T > &  )
private

Not implemented.

Member Function Documentation

template<class T>
VectorIterator<T>& casacore::VectorIterator< T >::operator= ( const VectorIterator< T > &  )
private

Not implemented.

template<class T>
Vector<T>& casacore::VectorIterator< T >::vector ( )
inline

Return a Vector at the current position.

Definition at line 82 of file VectorIter.h.

References casacore::ArrayIterator< T >::ap_p.


The documentation for this class was generated from the following file: