//# VectorIter.h: Iterate a vector cursor through another array
//# Copyright (C) 1993,1994,1995,1999
//# Associated Universities, Inc. Washington DC, USA.
//#
//# This library is free software; you can redistribute it and/or modify it
//# under the terms of the GNU Library General Public License as published by
//# the Free Software Foundation; either version 2 of the License, or (at your
//# option) any later version.
//#
//# This library is distributed in the hope that it will be useful, but WITHOUT
//# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
//# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
//# License for more details.
//#
//# You should have received a copy of the GNU Library General Public License
//# along with this library; if not, write to the Free Software Foundation,
//# Inc., 675 Massachusetts Ave, Cambridge, MA 02139, USA.
//#
//# Correspondence concerning AIPS++ should be addressed as follows:
//# Internet email: aips2-request@nrao.edu.
//# Postal address: AIPS++ Project Office
//# National Radio Astronomy Observatory
//# 520 Edgemont Road
//# Charlottesville, VA 22903-2475 USA
//#
//# $Id$
#ifndef CASA_VECTORITER_2_H
#define CASA_VECTORITER_2_H
#include "ArrayIter.h"
#include "Vector.h"
namespace casacore { //# NAMESPACE CASACORE - BEGIN
//
// 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.
//
//
// 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 af;
// // set af
// VectorIterator vi(af);
// float sum = 0.0;
// size_t 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();
// }
//
template>
class VectorIterator : public ArrayIterator
{
public:
// Iterate by vector cursors through array "a".
// The vector cursor is taken for the given axis.
explicit VectorIterator(Array &a, size_t axis=0);
// Return a Vector at the current position.
Vector &vector() {return *(Vector *)this->ap_p.get();}
private:
// Not implemented.
VectorIterator(const VectorIterator &) = delete;
// Not implemented.
VectorIterator &operator=(const VectorIterator &) = delete;
};
//
// Iterate a Vector cursor through another Array.
//
//
//
// ReadOnlyVectorIterator behaves exactly like VectorIterator (cf.) only
// it should be used on const Arrays.
//
// Note that the R/O VectorIterator is not derived from R/O
// ArrayIterator.
//
template> class ReadOnlyVectorIterator
{
public:
//
explicit ReadOnlyVectorIterator(const Array &a, size_t axis=0)
: vi(const_cast&>(a), axis) {}
void next() {vi.next();}
void reset() {vi.origin();}
void origin() {vi.origin();}
const Array &array() {return vi.array();}
const Vector &vector() {return vi.vector();}
bool atStart() const {return vi.atStart();}
bool pastEnd() const {return vi.pastEnd();}
const IPosition &pos() const {return vi.pos();}
IPosition endPos() const {return vi.endPos();}
size_t ndim() const {return vi.ndim();}
//
private:
// Not implemented.
ReadOnlyVectorIterator(const ReadOnlyVectorIterator &) = delete;
// Not implemented.
ReadOnlyVectorIterator &operator=(const ReadOnlyVectorIterator &) = delete;
VectorIterator vi;
};
} //# NAMESPACE CASACORE - END
#include "VectorIter.tcc"
#endif