File BaseStar.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 jointcal

Typedefs

typedef StarList<BaseStar> BaseStarList
typedef BaseStarList::const_iterator BaseStarCIterator
typedef BaseStarList::iterator BaseStarIterator
class BaseStar : public lsst::jointcal::FatPoint
#include <BaseStar.h>

The base class for handling stars. Used by all matching routines.

Subclassed by lsst::jointcal::FittedStar, lsst::jointcal::MeasuredStar, lsst::jointcal::RefStar

Public Functions

BaseStar()
BaseStar(double xx, double yy, double flux, double fluxErr)

constructor

BaseStar(Point const &point, double flux, double fluxErr, double mag, double magErr)
double getX() const

access stuff.

double getY() const
virtual void dump(std::ostream &s = std::cout) const

utility

BaseStar &operator=(Point const &point)
virtual ~BaseStar()
double getFlux() const
double &getFlux()
void setFlux(double flux)
double getFluxErr() const
void setFluxErr(double fluxErr)
double getMag() const
double &getMag()
double getMagErr() const
void setMagErr(double magErr)

Public Static Functions

static const char *typeName()

Protected Attributes

double _flux
double _fluxErr
double _mag
double _magErr

Friends

std::ostream &operator<<(std::ostream &stream, BaseStar const &s)

allows std::cout << aBaseStar;