File MaskDict.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 image
namespace detail
class MaskDict

Public Types

typedef MaskPlaneDict::value_type value_type
typedef MaskPlaneDict::const_iterator const_iterator

Public Functions

MaskDict &operator=(MaskDict const&)
MaskDict &operator=(MaskDict&&)
~MaskDict()
std::shared_ptr<MaskDict> clone() const
int getUnusedPlane() const
int getMaskPlane(std::string const &name) const
void print() const
bool operator==(MaskDict const &rhs) const
bool operator!=(MaskDict const &rhs) const
const_iterator begin() const
const_iterator end() const
const_iterator find(std::string const &name) const
std::size_t size() const
bool empty() const
MaskPlaneDict const &getMaskPlaneDict() const
void add(std::string const &name, int bitId)
void erase(std::string const &name)
void clear()

Public Static Functions

static std::shared_ptr<MaskDict> copyOrGetDefault(MaskPlaneDict const &dict)
static std::shared_ptr<MaskDict> getDefault()
static void setDefault(std::shared_ptr<MaskDict> dict)
static std::shared_ptr<MaskDict> detachDefault()
static void addAllMasksPlane(std::string const &name, int bitId)

Private Functions

void _addInitialMaskPlanes()
MaskDict()
MaskDict(MaskPlaneDict const &dict)
MaskDict(MaskDict const&)
MaskDict(MaskDict&&)

Private Members

MaskPlaneDict _dict
std::size_t _hash