lsst.jointcal g15c59248fb+49dda8497f
Classes | Namespaces | Functions | Variables
StarMatch.h File Reference

pairs of points More...

#include <iostream>
#include <iterator>
#include <algorithm>
#include <string>
#include <list>
#include "lsst/jointcal/Point.h"
#include "lsst/jointcal/BaseStar.h"
#include "lsst/jointcal/AstrometryTransform.h"

Go to the source code of this file.

Classes

class  lsst::jointcal::StarMatch
 A hanger for star associations. More...
 
class  lsst::jointcal::StarMatchList
 

Namespaces

namespace  lsst
 Class for a simple mapping implementing a generic AstrometryTransform.
 
namespace  lsst::jointcal
 

Functions

bool lsst::jointcal::compareStar1 (const StarMatch &one, const StarMatch &two)
 
bool lsst::jointcal::sameStar1 (const StarMatch &one, const StarMatch &two)
 
bool lsst::jointcal::compareStar2 (const StarMatch &one, const StarMatch &two)
 
bool lsst::jointcal::sameStar2 (const StarMatch &one, const StarMatch &two)
 
std::ostreamlsst::jointcal::operator<< (std::ostream &stream, const StarMatch &match)
 
std::ostreamlsst::jointcal::operator<< (std::ostream &stream, const StarMatchList &starMatchList)
 A std::list of star matches,. More...
 
double lsst::jointcal::computeDist2 (const StarMatchList &S, const AstrometryTransform &transform)
 sum of distance squared More...
 
double lsst::jointcal::computeChi2 (const StarMatchList &L, const AstrometryTransform &transform)
 the actual chi2 More...
 

Variables

typedef::std::list< StarMatch >::iterator lsst::jointcal::StarMatchIterator
 
typedef::std::list< StarMatch >::const_iterator lsst::jointcal::StarMatchCIterator
 

Detailed Description

pairs of points

Used to handles matches of star std::lists (image/image) or image/catalog to fit geometrical and photometric transformations. a pair of stars, usually belonging to different images. One would normally assume that they are the same object of the sky. The object contains basically two 2d points (called later point1 and point2), and two pointers (unused by the class and its satellites), that enable in the end to trace back the stars in the caller data structures. *‍/

Definition in file StarMatch.h.