|
| MeasuredStar () |
|
| MeasuredStar (BaseStar const &baseStar) |
|
| MeasuredStar (MeasuredStar const &)=default |
| No move, allow copy constructor: we may copy the fitted StarLists when associating and matching catalogs, otherwise Stars should be managed by shared_ptr only. More...
|
|
| MeasuredStar (MeasuredStar &&)=delete |
|
MeasuredStar & | operator= (MeasuredStar const &)=delete |
|
MeasuredStar & | operator= (MeasuredStar &&)=delete |
|
void | setFittedStar (std::shared_ptr< FittedStar > fittedStar) |
|
void | dump (std::ostream &stream=std::cout) const |
| utility More...
|
|
void | setInstFlux (double instFlux) |
|
void | setInstFluxErr (double instFluxErr) |
|
double | getInstFlux () const |
|
double | getInstFluxErr () const |
|
double | getMag () const |
|
void | setId (unsigned id) |
|
unsigned | getId () |
|
double | getMagWeight () const |
| the inverse of the mag variance More...
|
|
std::shared_ptr< const FittedStar > | getFittedStar () const |
|
CcdImage const & | getCcdImage () const |
|
void | setCcdImage (const CcdImage *ccdImage) |
|
bool | isValid () const |
| Fits may use that to discard outliers. More...
|
|
void | setValid (bool v) |
| Fits may use that to discard outliers. More...
|
|
| BaseStar () |
|
| BaseStar (double xx, double yy, double flux, double fluxErr) |
| constructor More...
|
|
| BaseStar (Point const &point, double flux, double fluxErr) |
|
double | getX () const |
| access stuff. More...
|
|
double | getY () const |
|
virtual std::string | __str__ () const |
|
BaseStar & | operator= (Point const &point) |
|
virtual | ~BaseStar () |
|
double | getFlux () const |
|
double & | getFlux () |
|
void | setFlux (double flux) |
|
double | getFluxErr () const |
|
void | setFluxErr (double fluxErr) |
|
| FatPoint () |
|
| FatPoint (const Point &P, double Vx=1, double Vy=1, double Vxy=0) |
|
| FatPoint (const double X, const double Y, const double Vx=1, const double Vy=1, const double Vxy=0) |
|
virtual | ~Point () |
|
| Point () |
|
| Point (double xx, double yy) |
|
double | Distance (const Point &other) const |
|
double | computeDist2 (const Point &other) const |
| distance squared to other More...
|
|
Point | operator+ (const Point &Right) const |
| Sum. More...
|
|
Point | operator- (const Point &Right) const |
| Difference. More...
|
|
objects measured on actual images.
Coordinates and uncertainties are expressed in pixel image frame. Flux expressed in ADU/s.
Definition at line 18 of file MeasuredStar.h.