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

Data provider which allows stats framework to iterate through a masked lattice. More...

#include <MaskedLatticeStatsDataProvider.h>

Inheritance diagram for casacore::MaskedLatticeStatsDataProvider< T >:
casacore::LatticeStatsDataProviderBase< T > casacore::StatsDataProvider< NumericTraits< T >::PrecisionType, const T *, const Bool * >

Public Member Functions

 MaskedLatticeStatsDataProvider ()
 default constructor. More...
 
 MaskedLatticeStatsDataProvider (MaskedLattice< T > &lattice, uInt iteratorLimitBytes=4096 *4096)
 iteratorLimitBytes is related to the size of the lattice. More...
 
 ~MaskedLatticeStatsDataProvider ()
 
void operator++ ()
 increment the data provider to the next dataset, mask, range set, and weights. More...
 
uInt estimatedSteps () const
 estimated number of steps to iterate through the the lattice More...
 
Bool atEnd () const
 Are there any data sets left to provide? More...
 
void finalize ()
 Take any actions necessary to finalize the provider. More...
 
uInt64 getCount ()
 get the count of elements in the current data set. More...
 
const T * getData ()
 get the current data set More...
 
const BoolgetMask ()
 Get the associated mask of the current dataset. More...
 
uInt getNMaxThreads () const
 returns something reasonable based on the lattice size. More...
 
Bool hasMask () const
 Does the current data set have an associated mask? More...
 
void reset ()
 reset the provider to point to the first data set it manages. More...
 
void setLattice (const MaskedLattice< T > &lattice, uInt iteratorLimitBytes=4096 *4096)
 set the lattice. More...
 
void updateMaxPos (const std::pair< Int64, Int64 > &maxpos)
 see base class documentation. More...
 
void updateMinPos (const std::pair< Int64, Int64 > &minpos)
 
- Public Member Functions inherited from casacore::LatticeStatsDataProviderBase< T >
virtual ~LatticeStatsDataProviderBase ()
 
uInt getMaskStride ()
 Get the stride for the current mask (only called if hasMask() returns True). More...
 
std::vector< std::pair
< typename NumericTraits< T >
::PrecisionType, typename
NumericTraits< T >
::PrecisionType > > 
getRanges ()
 Get the associated range(s) of the current dataset. More...
 
uInt getStride ()
 Get the stride for the current data set. More...
 
const T * getWeights ()
 Returns NULL; lattices do not have associated weights. More...
 
Bool hasRanges () const
 Does the current data set have associated range(s)? More...
 
Bool hasWeights () const
 returns False; lattices do not have associated weights. More...
 
Bool isInclude () const
 If the associated data set has ranges, are these include (return True) or exclude (return False) ranges? More...
 
void minMaxPos (IPosition &minpos, IPosition &maxpos) const
 get the positions of the min and max More...
 
void setProgressMeter (CountedPtr< LattStatsProgress > pm)
 
void setRanges (const std::vector< std::pair< typename NumericTraits< T >::PrecisionType, typename NumericTraits< T >::PrecisionType > > &ranges, Bool isInclude)
 set the data ranges More...
 
- Public Member Functions inherited from casacore::StatsDataProvider< NumericTraits< T >::PrecisionType, const T *, const Bool * >
virtual ~StatsDataProvider ()
 
virtual void updateMaxPos (const LocationType &)
 In general, unless you are writing statistics algorithm code, you shouldn't need to call these methods. More...
 
virtual void updateMinPos (const LocationType &)
 

Private Member Functions

void _freeStorage ()
 

Private Attributes

CountedPtr
< RO_MaskedLatticeIterator< T > > 
_iter
 
Array< T > _currentSlice
 
Array< Bool_currentMaskSlice
 
const T * _currentPtr
 
const Bool_currentMaskPtr
 
Bool _delData
 
Bool _delMask
 
Bool _atEnd
 
uInt _nMaxThreads
 

Additional Inherited Members

- Protected Member Functions inherited from casacore::LatticeStatsDataProviderBase< T >
 LatticeStatsDataProviderBase ()
 
void _updateMaxPos (const IPosition &maxPos)
 
void _updateMinPos (const IPosition &minPos)
 
void _updateProgress ()
 
- Protected Member Functions inherited from casacore::StatsDataProvider< NumericTraits< T >::PrecisionType, const T *, const Bool * >
 StatsDataProvider ()
 

Detailed Description

template<class T>
class casacore::MaskedLatticeStatsDataProvider< T >

Data provider which allows stats framework to iterate through a masked lattice.

Definition at line 41 of file MaskedLatticeStatsDataProvider.h.

Constructor & Destructor Documentation

default constructor.

Must set lattice after construction but before using the object

template<class T>
casacore::MaskedLatticeStatsDataProvider< T >::MaskedLatticeStatsDataProvider ( MaskedLattice< T > &  lattice,
uInt  iteratorLimitBytes = 4096 *4096 
)

iteratorLimitBytes is related to the size of the lattice.

If the lattice is greater than this size, then a lattice iterator will be used to step through the lattice. If less, then all the data in the values in the lattice are retrieved in a single chunk. The advantage of the iterator is that less memory is used. The disadvantage is there is a significant performace cost, so if the lattice is small, it is better to get all its values in a single chunk and forgo the iterator. This is particularly true when looping for a large number of iterations and creating a MaskedLatticeStatsDataProvider each loop (in that case, you probably will want to create a single object before the loop and use setLattice() to update its lattice).

Member Function Documentation

template<class T>
void casacore::MaskedLatticeStatsDataProvider< T >::_freeStorage ( )
private
template<class T>
Bool casacore::MaskedLatticeStatsDataProvider< T >::atEnd ( ) const
virtual
template<class T>
uInt casacore::MaskedLatticeStatsDataProvider< T >::estimatedSteps ( ) const
virtual

estimated number of steps to iterate through the the lattice

Implements casacore::LatticeStatsDataProviderBase< T >.

template<class T>
void casacore::MaskedLatticeStatsDataProvider< T >::finalize ( )
virtual

Take any actions necessary to finalize the provider.

This will be called when atEnd() returns True.

Reimplemented from casacore::LatticeStatsDataProviderBase< T >.

template<class T>
uInt64 casacore::MaskedLatticeStatsDataProvider< T >::getCount ( )
virtual

get the count of elements in the current data set.

When implementing this method, be certain to take stride into account; ie for a data set with nominally 100 elements that is to have a stride of two, this method should return 50.

Implements casacore::StatsDataProvider< NumericTraits< T >::PrecisionType, const T *, const Bool * >.

template<class T>
const T* casacore::MaskedLatticeStatsDataProvider< T >::getData ( )
virtual
template<class T>
const Bool* casacore::MaskedLatticeStatsDataProvider< T >::getMask ( )
virtual

Get the associated mask of the current dataset.

Only called if hasMask() returns True;

Implements casacore::StatsDataProvider< NumericTraits< T >::PrecisionType, const T *, const Bool * >.

template<class T>
uInt casacore::MaskedLatticeStatsDataProvider< T >::getNMaxThreads ( ) const
virtual

returns something reasonable based on the lattice size.

Reimplemented from casacore::StatsDataProvider< NumericTraits< T >::PrecisionType, const T *, const Bool * >.

template<class T>
Bool casacore::MaskedLatticeStatsDataProvider< T >::hasMask ( ) const
virtual

Does the current data set have an associated mask?

Implements casacore::StatsDataProvider< NumericTraits< T >::PrecisionType, const T *, const Bool * >.

template<class T>
void casacore::MaskedLatticeStatsDataProvider< T >::operator++ ( )
virtual

increment the data provider to the next dataset, mask, range set, and weights.

Implements casacore::StatsDataProvider< NumericTraits< T >::PrecisionType, const T *, const Bool * >.

template<class T>
void casacore::MaskedLatticeStatsDataProvider< T >::reset ( )
virtual

reset the provider to point to the first data set it manages.

Reimplemented from casacore::LatticeStatsDataProviderBase< T >.

template<class T>
void casacore::MaskedLatticeStatsDataProvider< T >::setLattice ( const MaskedLattice< T > &  lattice,
uInt  iteratorLimitBytes = 4096 *4096 
)

set the lattice.

Automatically resets the lattice iterator. iteratorLimitBytes is related to the size of the lattice. If the lattice is greater than this size, then a lattice iterator will be used to step through the lattice. If less, then all the data in the values in the lattice are retrieved in a single chunk. The advantage of the iterator is that less memory is used. The disadvantage is there is a significant performace cost, so if the lattice is small, it is better to get all its values in a single chunk and forgo the iterator. This is particularly true when looping for a large number of iterations and creating a MaskedLatticeStatsDataProvider each loop (in that case, you probably will want to create a single object before the loop and use setLattice() to update its lattice).

template<class T>
void casacore::MaskedLatticeStatsDataProvider< T >::updateMaxPos ( const std::pair< Int64, Int64 > &  maxpos)

see base class documentation.

template<class T>
void casacore::MaskedLatticeStatsDataProvider< T >::updateMinPos ( const std::pair< Int64, Int64 > &  minpos)

Member Data Documentation

template<class T>
Bool casacore::MaskedLatticeStatsDataProvider< T >::_atEnd
private

Definition at line 126 of file MaskedLatticeStatsDataProvider.h.

template<class T>
const Bool* casacore::MaskedLatticeStatsDataProvider< T >::_currentMaskPtr
private

Definition at line 125 of file MaskedLatticeStatsDataProvider.h.

template<class T>
Array<Bool> casacore::MaskedLatticeStatsDataProvider< T >::_currentMaskSlice
private

Definition at line 123 of file MaskedLatticeStatsDataProvider.h.

template<class T>
const T* casacore::MaskedLatticeStatsDataProvider< T >::_currentPtr
private

Definition at line 124 of file MaskedLatticeStatsDataProvider.h.

template<class T>
Array<T> casacore::MaskedLatticeStatsDataProvider< T >::_currentSlice
private

Definition at line 122 of file MaskedLatticeStatsDataProvider.h.

template<class T>
Bool casacore::MaskedLatticeStatsDataProvider< T >::_delData
private

Definition at line 126 of file MaskedLatticeStatsDataProvider.h.

template<class T>
Bool casacore::MaskedLatticeStatsDataProvider< T >::_delMask
private

Definition at line 126 of file MaskedLatticeStatsDataProvider.h.

Definition at line 121 of file MaskedLatticeStatsDataProvider.h.

template<class T>
uInt casacore::MaskedLatticeStatsDataProvider< T >::_nMaxThreads
private

Definition at line 127 of file MaskedLatticeStatsDataProvider.h.


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