LSST Applications g0265f82a02+0e5473021a,g02d81e74bb+f5613e8b4f,g1470d8bcf6+190ad2ba91,g14a832a312+311607e4ab,g2079a07aa2+86d27d4dc4,g2305ad1205+a8e3196225,g295015adf3+b67ee847e5,g2bbee38e9b+0e5473021a,g337abbeb29+0e5473021a,g3ddfee87b4+a761f810f3,g487adcacf7+17c8fdbcbd,g50ff169b8f+96c6868917,g52b1c1532d+585e252eca,g591dd9f2cf+65b5bd823e,g5a732f18d5+53520f316c,g64a986408d+f5613e8b4f,g6c1bc301e9+51106c2951,g858d7b2824+f5613e8b4f,g8a8a8dda67+585e252eca,g99cad8db69+6729933424,g9ddcbc5298+9a081db1e4,ga1e77700b3+15fc3df1f7,ga8c6da7877+ef4e3a5875,gb0e22166c9+60f28cb32d,gb6a65358fc+0e5473021a,gba4ed39666+c2a2e4ac27,gbb8dafda3b+e9bba80f27,gc120e1dc64+eee469a5e5,gc28159a63d+0e5473021a,gcf0d15dbbd+a761f810f3,gdaeeff99f8+f9a426f77a,ge6526c86ff+d4c1d4bfef,ge79ae78c31+0e5473021a,gee10cc3b42+585e252eca,gf1cff7945b+f5613e8b4f,w.2024.16
LSST Data Management Base Package
Loading...
Searching...
No Matches
Public Member Functions | Static Public Member Functions | Public Attributes | Protected Attributes | List of all members
lsst::jointcal::FittedStar Class Reference

FittedStars are objects whose position or flux is going to be fitted, and which come from the association of multiple MeasuredStars. More...

#include <FittedStar.h>

Inheritance diagram for lsst::jointcal::FittedStar:
lsst::jointcal::BaseStar lsst::jointcal::FatPoint lsst::jointcal::Point

Public Member Functions

 FittedStar ()
 
 FittedStar (const BaseStar &baseStar)
 
 FittedStar (const MeasuredStar &measuredStar)
 
 FittedStar (FittedStar 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.
 
 FittedStar (FittedStar &&)=delete
 
FittedStaroperator= (FittedStar const &)=delete
 
FittedStaroperator= (FittedStar &&)=delete
 
void clearBeforeAssoc ()
 
void print (std::ostream &stream=std::cout) const
 
void addMagMeasurement (double magValue, double magWeight)
 Add a measuredStar on-sky magnitude.
 
void setIndexInMatrix (Eigen::Index const index)
 index is a value that a fit can set and reread....
 
Eigen::Index getIndexInMatrix () const
 
void setRefStar (const RefStar *_refStar)
 Set the astrometric reference star associated with this star.
 
const RefStargetRefStar () const
 Get the astrometric reference star associated with this star.
 
double getX () const
 access stuff.
 
double getY () const
 
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)
 
double Distance (const Point &other) const
 

 
double computeDist2 (const Point &other) const
 distance squared to other
 
Point operator+ (const Point &Right) const
 Sum.
 
Point operator- (const Point &Right) const
 Difference.
 
int getMeasurementCount () const
 The number of MeasuredStars currently associated with this FittedStar.
 
int & getMeasurementCount ()
 The number of MeasuredStars currently associated with this FittedStar.
 

Static Public Member Functions

static const char * typeName ()
 

Public Attributes

double vx
 
double vy
 
double vxy
 
double x
 coordinate
 
double y
 

Protected Attributes

double _flux
 
double _fluxErr {}
 
double _mag {}
 
double _magErr {}
 

Detailed Description

FittedStars are objects whose position or flux is going to be fitted, and which come from the association of multiple MeasuredStars.

x/y Coordinates are in the Common Tangent Plane (degrees). MeasuredStars from different CcdImages that represent the same on-sky object all point to one FittedStar.

Definition at line 50 of file FittedStar.h.

Constructor & Destructor Documentation

◆ FittedStar() [1/5]

lsst::jointcal::FittedStar::FittedStar ( )
inline

Definition at line 52 of file FittedStar.h.

52: BaseStar(), _indexInMatrix(-1), _measurementCount(0), _refStar(nullptr) {}

◆ FittedStar() [2/5]

lsst::jointcal::FittedStar::FittedStar ( const BaseStar & baseStar)
inline

Definition at line 54 of file FittedStar.h.

55 : BaseStar(baseStar), _indexInMatrix(0), _measurementCount(0), _refStar(nullptr) {}

◆ FittedStar() [3/5]

lsst::jointcal::FittedStar::FittedStar ( const MeasuredStar & measuredStar)

Definition at line 43 of file FittedStar.cc.

44 : BaseStar(measuredStar), _indexInMatrix(-1), _measurementCount(0), _refStar(nullptr) {}

◆ FittedStar() [4/5]

lsst::jointcal::FittedStar::FittedStar ( FittedStar 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.

◆ FittedStar() [5/5]

lsst::jointcal::FittedStar::FittedStar ( FittedStar && )
delete

Member Function Documentation

◆ addMagMeasurement()

void lsst::jointcal::FittedStar::addMagMeasurement ( double magValue,
double magWeight )

Add a measuredStar on-sky magnitude.

Definition at line 57 of file FittedStar.cc.

57 {
58 _mag = (_mag * _magErr + magValue * magWeight) / (_magErr + magWeight);
59 _magErr += magWeight;
60}

◆ clearBeforeAssoc()

void lsst::jointcal::FittedStar::clearBeforeAssoc ( )
inline

Definition at line 68 of file FittedStar.h.

68 {
69 _indexInMatrix = -1;
70 _measurementCount = 0;
71 _refStar = nullptr;
72 _flux = 0;
73 _fluxErr = 0;
74 _mag = 0;
75 _magErr = 0;
76 }

◆ computeDist2()

double lsst::jointcal::Point::computeDist2 ( const Point & other) const
inlineinherited

distance squared to other

Definition at line 56 of file Point.h.

56 {
57 return ((x - other.x) * (x - other.x) + (y - other.y) * (y - other.y));
58 };
double x
coordinate
Definition Point.h:42

◆ Distance()

double lsst::jointcal::Point::Distance ( const Point & other) const
inlineinherited

Definition at line 51 of file Point.h.

51 {
52 return sqrt((x - other.x) * (x - other.x) + (y - other.y) * (y - other.y));
53 };
T sqrt(T... args)

◆ getFlux() [1/2]

double & lsst::jointcal::BaseStar::getFlux ( )
inlineinherited

Definition at line 99 of file BaseStar.h.

99{ return _flux; }

◆ getFlux() [2/2]

double lsst::jointcal::BaseStar::getFlux ( ) const
inlineinherited

Definition at line 98 of file BaseStar.h.

98{ return _flux; }

◆ getFluxErr()

double lsst::jointcal::BaseStar::getFluxErr ( ) const
inlineinherited

Definition at line 102 of file BaseStar.h.

102{ return _fluxErr; }

◆ getIndexInMatrix()

Eigen::Index lsst::jointcal::FittedStar::getIndexInMatrix ( ) const
inline

Definition at line 99 of file FittedStar.h.

99{ return _indexInMatrix; }

◆ getMag() [1/2]

double & lsst::jointcal::BaseStar::getMag ( )
inlineinherited

Definition at line 106 of file BaseStar.h.

106{ return _mag; }

◆ getMag() [2/2]

double lsst::jointcal::BaseStar::getMag ( ) const
inlineinherited

Definition at line 105 of file BaseStar.h.

105{ return _mag; }

◆ getMagErr()

double lsst::jointcal::BaseStar::getMagErr ( ) const
inlineinherited

Definition at line 108 of file BaseStar.h.

108{ return _magErr; }

◆ getMeasurementCount() [1/2]

int & lsst::jointcal::FittedStar::getMeasurementCount ( )
inline

The number of MeasuredStars currently associated with this FittedStar.

Definition at line 89 of file FittedStar.h.

89{ return _measurementCount; }

◆ getMeasurementCount() [2/2]

int lsst::jointcal::FittedStar::getMeasurementCount ( ) const
inline

The number of MeasuredStars currently associated with this FittedStar.

Definition at line 88 of file FittedStar.h.

88{ return _measurementCount; }

◆ getRefStar()

const RefStar * lsst::jointcal::FittedStar::getRefStar ( ) const
inline

Get the astrometric reference star associated with this star.

Definition at line 105 of file FittedStar.h.

105{ return _refStar; };

◆ getX()

double lsst::jointcal::BaseStar::getX ( ) const
inlineinherited

access stuff.

Definition at line 73 of file BaseStar.h.

73{ return x; }

◆ getY()

double lsst::jointcal::BaseStar::getY ( ) const
inlineinherited

Definition at line 75 of file BaseStar.h.

75{ return y; }

◆ operator+()

Point lsst::jointcal::Point::operator+ ( const Point & Right) const
inlineinherited

Sum.

Definition at line 61 of file Point.h.

61{ return Point(x + Right.x, y + Right.y); }

◆ operator-()

Point lsst::jointcal::Point::operator- ( const Point & Right) const
inlineinherited

Difference.

Definition at line 64 of file Point.h.

64{ return Point(x - Right.x, y - Right.y); }

◆ operator=() [1/2]

FittedStar & lsst::jointcal::FittedStar::operator= ( FittedStar && )
delete

◆ operator=() [2/2]

FittedStar & lsst::jointcal::FittedStar::operator= ( FittedStar const & )
delete

◆ print()

void lsst::jointcal::FittedStar::print ( std::ostream & stream = std::cout) const
inlinevirtual

Reimplemented from lsst::jointcal::BaseStar.

Definition at line 79 of file FittedStar.h.

79 {
80 BaseStar::print(stream);
81 stream << " mcount: " << _measurementCount;
82 }
virtual void print(std::ostream &out) const
Definition BaseStar.h:83

◆ setFlux()

void lsst::jointcal::BaseStar::setFlux ( double flux)
inlineinherited

Definition at line 100 of file BaseStar.h.

100{ _flux = flux; }

◆ setFluxErr()

void lsst::jointcal::BaseStar::setFluxErr ( double fluxErr)
inlineinherited

Definition at line 103 of file BaseStar.h.

103{ _fluxErr = fluxErr; }

◆ setIndexInMatrix()

void lsst::jointcal::FittedStar::setIndexInMatrix ( Eigen::Index const index)
inline

index is a value that a fit can set and reread....

Definition at line 96 of file FittedStar.h.

96{ _indexInMatrix = index; };

◆ setMagErr()

void lsst::jointcal::BaseStar::setMagErr ( double magErr)
inlineinherited

Definition at line 109 of file BaseStar.h.

109{ _magErr = magErr; }

◆ setRefStar()

void lsst::jointcal::FittedStar::setRefStar ( const RefStar * _refStar)

Set the astrometric reference star associated with this star.

Definition at line 46 of file FittedStar.cc.

46 {
47 if ((_refStar != nullptr) && (refStar != nullptr)) {
48 // TODO: should we raise an Exception in this case?
49 LOGLS_ERROR(_log, "FittedStar: " << *this
50 << " is already matched to another RefStar. Clean up your lists.");
51 LOGLS_ERROR(_log, "old refStar: " << *_refStar);
52 LOGLS_ERROR(_log, "new refStar: " << *refStar);
53 } else
54 _refStar = refStar;
55}
#define LOGLS_ERROR(logger, message)
Log a error-level message using an iostream-based interface.
Definition Log.h:679

◆ typeName()

static const char * lsst::jointcal::BaseStar::typeName ( )
inlinestaticinherited

Definition at line 94 of file BaseStar.h.

94{ return "BaseStar"; }

Member Data Documentation

◆ _flux

double lsst::jointcal::BaseStar::_flux
protectedinherited

Definition at line 113 of file BaseStar.h.

◆ _fluxErr

double lsst::jointcal::BaseStar::_fluxErr {}
protectedinherited

Definition at line 114 of file BaseStar.h.

114{};

◆ _mag

double lsst::jointcal::BaseStar::_mag {}
protectedinherited

Definition at line 117 of file BaseStar.h.

117{};

◆ _magErr

double lsst::jointcal::BaseStar::_magErr {}
protectedinherited

Definition at line 118 of file BaseStar.h.

118{};

◆ vx

double lsst::jointcal::FatPoint::vx
inherited

Definition at line 36 of file FatPoint.h.

◆ vxy

double lsst::jointcal::FatPoint::vxy
inherited

Definition at line 36 of file FatPoint.h.

◆ vy

double lsst::jointcal::FatPoint::vy
inherited

Definition at line 36 of file FatPoint.h.

◆ x

double lsst::jointcal::Point::x
inherited

coordinate

Definition at line 42 of file Point.h.

◆ y

double lsst::jointcal::Point::y
inherited

Definition at line 42 of file Point.h.


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