File MaskedVector.h

namespace lsst

Class for a simple mapping implementing a generic AstrometryTransform.

Remove all non-astronomical counts from the Chunk Exposure’s pixels.

Forward declarations for lsst::utils::Cache

For details on the Cache class, see the Cache.h file.

It uses a template rather than a pointer so that the derived classes can use the specifics of the transform. The class simplePolyMapping overloads a few routines.

A base class for image defects

Numeric constants used by the Integrate.h integrator routines.

Compute Image Statistics

Note

Gauss-Kronrod-Patterson quadrature coefficients for use in quadpack routine qng. These coefficients were calculated with 101 decimal digit arithmetic by L. W. Fullerton, Bell Labs, Nov 1981.

Note

The Statistics class itself can only handle lsst::afw::image::MaskedImage() types. The philosophy has been to handle other types by making them look like lsst::afw::image::MaskedImage() and reusing that code. Users should have no need to instantiate a Statistics object directly, but should use the overloaded makeStatistics() factory functions.

namespace afw
namespace math
template<typename EntryT>
class MaskedVector : private lsst::afw::image::MaskedImage<EntryT>

Public Types

typedef lsst::afw::image::MaskedImage<EntryT>::Pixel Pixel

Public Functions

MaskedVector(int width = 0)
MaskedVector(MaskedVector const&)
MaskedVector(MaskedVector&&)
MaskedVector &operator=(MaskedVector const&)
MaskedVector &operator=(MaskedVector&&)
~MaskedVector()
std::shared_ptr<std::vector<EntryT>> getVector(bool const noThrow = false) const

Return a (Ptr to) the MaskedImage’s image.

Pixel &operator[](int const i)
lsst::afw::image::MaskedImage<EntryT>::Image::Pixel &value(int const i)
lsst::afw::image::MaskedImage<EntryT>::Mask::Pixel &mask(int const i)
lsst::afw::image::MaskedImage<EntryT>::Variance::Pixel &variance(int const i)
lsst::afw::image::MaskedImage<EntryT>::ImagePtr getImage() const
lsst::afw::image::MaskedImage<EntryT>::MaskPtr getMask() const
lsst::afw::image::MaskedImage<EntryT>::VariancePtr getVariance() const
int size()
bool empty()
iterator begin()
iterator end()
class iterator : public lsst::afw::image::MaskedImage<ImagePixelT, MaskPixelT, VariancePixelT>::MaskedImageIterator<ImageIterator, MaskIterator, VarianceIterator>

Public Functions

template<>
iterator(typename lsst::afw::image::MaskedImage<EntryT>::Image::x_iterator im, typename lsst::afw::image::MaskedImage<EntryT>::Mask::x_iterator msk, typename lsst::afw::image::MaskedImage<EntryT>::Variance::x_iterator var)
template<>
iterator(typename lsst::afw::image::MaskedImage<EntryT>::x_iterator ptr)
template<>
lsst::afw::image::MaskedImage<EntryT>::Image::Pixel &value()