LSSTApplications  10.0-2-g4f67435,11.0.rc2+1,11.0.rc2+12,11.0.rc2+3,11.0.rc2+4,11.0.rc2+5,11.0.rc2+6,11.0.rc2+7,11.0.rc2+8
LSSTDataManagementBasePackage
Public Types | Public Member Functions | Private Attributes | List of all members
lsst.afw.math::MaskImposter< ValueT > Class Template Reference

A Mask wrapper to provide an infinite_iterator for Mask::row_begin(). This allows a fake Mask to be passed in to Statistics with a regular (non-masked) Image. More...

#include <Statistics.h>

Public Types

typedef infinite_iterator< ValueT > x_iterator
 

Public Member Functions

 MaskImposter (ValueT val=0)
 
x_iterator row_begin (int) const
 

Private Attributes

ValueT _val [1]
 

Detailed Description

template<typename ValueT>
class lsst.afw.math::MaskImposter< ValueT >

A Mask wrapper to provide an infinite_iterator for Mask::row_begin(). This allows a fake Mask to be passed in to Statistics with a regular (non-masked) Image.

Definition at line 289 of file Statistics.h.

Member Typedef Documentation

template<typename ValueT>
typedef infinite_iterator<ValueT> lsst.afw.math::MaskImposter< ValueT >::x_iterator

Definition at line 291 of file Statistics.h.

Constructor & Destructor Documentation

template<typename ValueT>
lsst.afw.math::MaskImposter< ValueT >::MaskImposter ( ValueT  val = 0)
inlineexplicit

Definition at line 292 of file Statistics.h.

292 { _val[0] = val; }
ImageT val
Definition: CR.cc:154

Member Function Documentation

template<typename ValueT>
x_iterator lsst.afw.math::MaskImposter< ValueT >::row_begin ( int  ) const
inline

Definition at line 293 of file Statistics.h.

293 { return x_iterator(_val); }
infinite_iterator< ValueT > x_iterator
Definition: Statistics.h:291

Member Data Documentation

template<typename ValueT>
ValueT lsst.afw.math::MaskImposter< ValueT >::_val[1]
private

Definition at line 295 of file Statistics.h.


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