LSST Applications g0485b4d2cb+45260c2012,g0fba68d861+90dd06f399,g1ec0fe41b4+eb5f8a2046,g1fd858c14a+551e8cb373,g2440f9efcc+8c5ae1fdc5,g35bb328faa+8c5ae1fdc5,g4d2262a081+ba77bf3834,g53246c7159+8c5ae1fdc5,g56a49b3a55+c2ace9aa91,g60b5630c4e+9860a7649d,g65f11fe441+7edbc1d107,g67b6fd64d1+0750dd6554,g6ba5f4ee81+86bfe0b13d,g78460c75b0+7e33a9eb6d,g786e29fd12+668abc6043,g8352419a5c+8c5ae1fdc5,g8852436030+7a386a17a7,g89139ef638+0750dd6554,g94187f82dc+9860a7649d,g989de1cb63+0750dd6554,g9d31334357+9860a7649d,g9f33ca652e+e619319a72,gabe3b4be73+8856018cbb,gabf8522325+7d313c7892,gb1101e3267+e9bfafe6b0,gb89ab40317+0750dd6554,gc91f06edcd+1820ccfa51,gcef618a4dd+9860a7649d,gcf25f946ba+7a386a17a7,gd6cbbdb0b4+d675535a7f,gdb8242c116+6d284a1357,gde0f65d7ad+2573be6663,ge278dab8ac+edfcd09300,ge410e46f29+0750dd6554,gf35d7ec915+97dd712d81,gf5e32f922b+8c5ae1fdc5,gf67bdafdda+0750dd6554,gf6800124b1+167e910d43,w.2025.20
LSST Data Management Base Package
Loading...
Searching...
No Matches
lsst::jointcal::FatPoint Class Reference

A Point with uncertainties. More...

#include <FatPoint.h>

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

Public Member Functions

 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)
 
void print (std::ostream &s=std::cout) const
 
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.
 

Public Attributes

double vx
 
double vy
 
double vxy
 
double x
 coordinate
 
double y
 

Detailed Description

A Point with uncertainties.

Definition at line 34 of file FatPoint.h.

Constructor & Destructor Documentation

◆ FatPoint() [1/3]

lsst::jointcal::FatPoint::FatPoint ( )
inline

Definition at line 38 of file FatPoint.h.

38 : Point() {
39 vx = vy = 1;
40 vxy = 0;
41 };

◆ FatPoint() [2/3]

lsst::jointcal::FatPoint::FatPoint ( const Point & P,
double Vx = 1,
double Vy = 1,
double Vxy = 0 )
inline

Definition at line 43 of file FatPoint.h.

44 : Point(P), vx(Vx), vy(Vy), vxy(Vxy){};

◆ FatPoint() [3/3]

lsst::jointcal::FatPoint::FatPoint ( const double X,
const double Y,
const double Vx = 1,
const double Vy = 1,
const double Vxy = 0 )
inline

Definition at line 46 of file FatPoint.h.

47 : Point(X, Y), vx(Vx), vy(Vy), vxy(Vxy){};

Member Function Documentation

◆ 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)

◆ 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); }

◆ print()

void lsst::jointcal::FatPoint::print ( std::ostream & s = std::cout) const
inlinevirtual

Reimplemented from lsst::jointcal::Point.

Reimplemented in lsst::jointcal::FittedStar, and lsst::jointcal::MeasuredStar.

Definition at line 49 of file FatPoint.h.

49 {
50 Point::print(s);
51 s << std::setprecision(8) << " vxx,vyy,vxy " << vx << ',' << vy << ',' << vxy;
52 }
virtual void print(std::ostream &s=std::cout) const
Definition Point.h:66
T setprecision(T... args)

Member Data Documentation

◆ vx

double lsst::jointcal::FatPoint::vx

Definition at line 36 of file FatPoint.h.

◆ vxy

double lsst::jointcal::FatPoint::vxy

Definition at line 36 of file FatPoint.h.

◆ vy

double lsst::jointcal::FatPoint::vy

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 file: