LSST Applications  21.0.0+04719a4bac,21.0.0-1-ga51b5d4+f5e6047307,21.0.0-11-g2b59f77+a9c1acf22d,21.0.0-11-ga42c5b2+86977b0b17,21.0.0-12-gf4ce030+76814010d2,21.0.0-13-g1721dae+760e7a6536,21.0.0-13-g3a573fe+768d78a30a,21.0.0-15-g5a7caf0+f21cbc5713,21.0.0-16-g0fb55c1+b60e2d390c,21.0.0-19-g4cded4ca+71a93a33c0,21.0.0-2-g103fe59+bb20972958,21.0.0-2-g45278ab+04719a4bac,21.0.0-2-g5242d73+3ad5d60fb1,21.0.0-2-g7f82c8f+8babb168e8,21.0.0-2-g8f08a60+06509c8b61,21.0.0-2-g8faa9b5+616205b9df,21.0.0-2-ga326454+8babb168e8,21.0.0-2-gde069b7+5e4aea9c2f,21.0.0-2-gecfae73+1d3a86e577,21.0.0-2-gfc62afb+3ad5d60fb1,21.0.0-25-g1d57be3cd+e73869a214,21.0.0-3-g357aad2+ed88757d29,21.0.0-3-g4a4ce7f+3ad5d60fb1,21.0.0-3-g4be5c26+3ad5d60fb1,21.0.0-3-g65f322c+e0b24896a3,21.0.0-3-g7d9da8d+616205b9df,21.0.0-3-ge02ed75+a9c1acf22d,21.0.0-4-g591bb35+a9c1acf22d,21.0.0-4-g65b4814+b60e2d390c,21.0.0-4-gccdca77+0de219a2bc,21.0.0-4-ge8a399c+6c55c39e83,21.0.0-5-gd00fb1e+05fce91b99,21.0.0-6-gc675373+3ad5d60fb1,21.0.0-64-g1122c245+4fb2b8f86e,21.0.0-7-g04766d7+cd19d05db2,21.0.0-7-gdf92d54+04719a4bac,21.0.0-8-g5674e7b+d1bd76f71f,master-gac4afde19b+a9c1acf22d,w.2021.13
LSST Data Management Base Package
StarMatch.h
Go to the documentation of this file.
1 // -*- LSST-C++ -*-
2 /*
3  * This file is part of jointcal.
4  *
5  * Developed for the LSST Data Management System.
6  * This product includes software developed by the LSST Project
7  * (https://www.lsst.org).
8  * See the COPYRIGHT file at the top-level directory of this distribution
9  * for details of code ownership.
10  *
11  * This program is free software: you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation, either version 3 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program. If not, see <https://www.gnu.org/licenses/>.
23  */
24 
25 #ifndef LSST_JOINTCAL_STAR_MATCH_H
26 #define LSST_JOINTCAL_STAR_MATCH_H
27 
28 #include <iostream>
29 #include <iterator> // for std::ostream_iterator
30 #include <algorithm> // for swap
31 #include <string>
32 #include <list>
33 
34 #include "lsst/jointcal/Point.h"
35 #include "lsst/jointcal/BaseStar.h" // class definition used in inlined functions
36 #include "lsst/jointcal/AstrometryTransform.h" // inlined function calls AstrometryTransform::apply()
37 
38 namespace lsst {
39 namespace jointcal {
40 
52 
54 class StarMatch {
55  friend class StarMatchList;
56 
57 public:
58  /* if one sets that private, then fitting routines will be a nightmare. we could set all the Transform
59  * classes friend... */
63  double distance;
64  double chi2;
65 
67 
71  : point1(point1), point2(point2), s1(std::move(star1)), s2(std::move(star2)), distance(0.){};
72 
73  // the next one would require that StarMatch knows BaseStar which is not mandatory for StarMatch to work
74  // StarMatch(BaseStar *star1, BaseStar *star2) : point1(*star1), point2(*star2), s1(star1), s2(star2) {};
75 
78  return point2.Distance(transform.apply(point1));
79  };
80 
82  double computeChi2(const AstrometryTransform &transform) const;
83 
87  double getDistance() const { return distance; }
88 
89  void swap() {
91  std::swap(s1, s2);
92  }
93 
94  /* comparison that ensures that after a sort, duplicates are next one another */
95  explicit StarMatch(){};
96 
97  friend std::ostream &operator<<(std::ostream &stream, const StarMatch &Match);
98 
100 
101 private:
102  // bool operator < (const StarMatch & other) const { return (s1 > other.s1) ? s1 > other.s1 : s2 >
103  // other.s2;}
104 
105  /* for unique to remove duplicates */
106  bool operator==(const StarMatch &other) const { return (s1 == other.s1 && s2 == other.s2); };
107  bool operator!=(const StarMatch &other) const { return (s1 != other.s1 || s2 != other.s2); };
108 
109  friend bool compareStar1(const StarMatch &one, const StarMatch &two);
110  friend bool sameStar1(const StarMatch &one, const StarMatch &two);
111  friend bool compareStar2(const StarMatch &one, const StarMatch &two);
112  friend bool sameStar2(const StarMatch &one, const StarMatch &two);
113 };
114 
115 inline bool compareStar1(const StarMatch &one, const StarMatch &two) {
116  return ((one.s1 == two.s1) ? (one.distance < two.distance) : (&(*one.s1) > &(*two.s1)));
117 }
118 
119 inline bool sameStar1(const StarMatch &one, const StarMatch &two) { return (one.s1 == two.s1); }
120 
121 inline bool compareStar2(const StarMatch &one, const StarMatch &two) {
122  return ((one.s2 == two.s2) ? (one.distance < two.distance) : (&(*one.s2) > &(*two.s2)));
123 }
124 
125 inline bool sameStar2(const StarMatch &one, const StarMatch &two) { return (one.s2 == two.s2); }
126 
127 /* =================================== StarMatchList
128  * ============================================================ */
129 
130 std::ostream &operator<<(std::ostream &stream, const StarMatch &match);
131 
132 //#ifdef TO_BE_FIXED
133 typedef ::std::list<StarMatch>::iterator StarMatchIterator;
134 typedef ::std::list<StarMatch>::const_iterator StarMatchCIterator;
135 //#endif
136 
138 
147 std::ostream &operator<<(std::ostream &stream, const StarMatchList &starMatchList);
148 
149 class StarMatchList : public std::list<StarMatch> {
150 public:
151  void refineTransform(double nSigmas);
152 
155  void applyTransform(StarMatchList &transformed, const AstrometryTransform *priorTransform,
156  const AstrometryTransform *posteriorTransform = nullptr) const;
157 
158  /* constructor */
159  StarMatchList() : _order(0), _chi2(0){};
160 
162 
165 
167  double getDist2() const { return _dist2; }
168 
170  double getChi2() const { return _chi2; }
171 
173  int getTransformOrder() const { return _order; }
174 
176  void swap();
177 
179  double computeResidual() const;
180 
184  unsigned removeAmbiguities(const AstrometryTransform &transform, int which = 3);
185 
187  void setTransform(const AstrometryTransform *transform) { _transform = transform->clone(); }
189  void setTransform(const AstrometryTransform &transform) { _transform = transform.clone(); }
191 
193  void setTransformOrder(int order);
194 
198 
201 
203  void cutTail(int nKeep);
204 
206  int recoveredNumber(double mindist) const;
207 
209  void printTransform(std::ostream &stream = std::cout) const;
210 
211  ~StarMatchList(){/* should delete the transform.... or use counted refs*/};
212 
213 private:
214  StarMatchList(const StarMatchList &); // copies nor properly handled
215  void operator=(const StarMatchList &);
216 
217  int _order;
218  double _chi2;
219  double _dist2;
221 };
222 
224 double computeDist2(const StarMatchList &S, const AstrometryTransform &transform);
225 
227 double computeChi2(const StarMatchList &L, const AstrometryTransform &transform);
228 } // namespace jointcal
229 } // namespace lsst
230 
231 #endif // LSST_JOINTCAL_STAR_MATCH_H
ItemVariant const * other
Definition: Schema.cc:56
table::Key< int > transform
a virtual (interface) class for geometric transformations.
A Point with uncertainties.
Definition: FatPoint.h:34
double Distance(const Point &other) const
Definition: Point.h:50
A hanger for star associations.
Definition: StarMatch.h:54
double computeChi2(const AstrometryTransform &transform) const
returns the chi2 (using errors in the FatPoint's)
Definition: StarMatch.cc:44
std::shared_ptr< const BaseStar > s1
Definition: StarMatch.h:62
std::shared_ptr< const BaseStar > s2
Definition: StarMatch.h:62
void setDistance(const AstrometryTransform &transform)
to be used before sorting on distances.
Definition: StarMatch.h:85
friend bool sameStar2(const StarMatch &one, const StarMatch &two)
Definition: StarMatch.h:125
StarMatch(const FatPoint &point1, const FatPoint &point2, std::shared_ptr< const BaseStar > star1, std::shared_ptr< const BaseStar > star2)
constructor.
Definition: StarMatch.h:69
double computeDistance(const AstrometryTransform &transform) const
returns the distance from transform(point1) to point2.
Definition: StarMatch.h:77
double getDistance() const
returns the value computed by the above one.
Definition: StarMatch.h:87
friend bool compareStar2(const StarMatch &one, const StarMatch &two)
Definition: StarMatch.h:121
FatPoint point2
2 points
Definition: StarMatch.h:60
friend std::ostream & operator<<(std::ostream &stream, const StarMatch &Match)
Definition: StarMatch.cc:56
friend bool sameStar1(const StarMatch &one, const StarMatch &two)
Definition: StarMatch.h:119
friend bool compareStar1(const StarMatch &one, const StarMatch &two)
Definition: StarMatch.h:115
std::unique_ptr< AstrometryTransform > inverseTransform()
returns the inverse transform (swap, fit(refineTransform) , and swap).
Definition: StarMatch.cc:174
void setDistance(const AstrometryTransform &transform)
Sets the distance (residual) field of all std::list elements. Mandatory before sorting on distances.
Definition: StarMatch.cc:141
void setTransform(const AstrometryTransform &transform)
Definition: StarMatch.h:189
void printTransform(std::ostream &stream=std::cout) const
print the matching transformation quality (transform, chi2, residual)
Definition: StarMatch.cc:230
void swap()
swaps elements 1 and 2 of each starmatch in std::list.
Definition: StarMatch.cc:199
double getChi2() const
access to the chi2 of the last call to refineTransform.
Definition: StarMatch.h:170
void setTransform(std::shared_ptr< AstrometryTransform > transform)
Definition: StarMatch.h:190
int getTransformOrder() const
returns the order of the used transform
Definition: StarMatch.h:173
void setTransform(const AstrometryTransform *transform)
sets a transform between the 2 std::lists and deletes the previous or default one....
Definition: StarMatch.h:187
int recoveredNumber(double mindist) const
count the number of elements for which distance is < mindist
Definition: StarMatch.cc:205
void setTransformOrder(int order)
set transform according to the given order.
Definition: StarMatch.cc:160
double computeResidual() const
returns the average 1d Residual (last call to refineTransform)
Definition: StarMatch.cc:136
unsigned removeAmbiguities(const AstrometryTransform &transform, int which=3)
cleans up the std::list of pairs for pairs that share one of their stars, keeping the closest one.
Definition: StarMatch.cc:145
double getDist2() const
access to the sum of squared residuals of the last call to refineTransform.
Definition: StarMatch.h:167
void cutTail(int nKeep)
deletes the tail of the match std::list
Definition: StarMatch.cc:191
void applyTransform(StarMatchList &transformed, const AstrometryTransform *priorTransform, const AstrometryTransform *posteriorTransform=nullptr) const
enables to get a transformed StarMatchList.
Definition: StarMatch.cc:214
void refineTransform(double nSigmas)
removes pairs beyond nSigmas in distance (where the sigma scale is set by the fit) and iterates until...
Definition: StarMatch.cc:94
std::shared_ptr< const AstrometryTransform > getTransform() const
carries out a fit with outlier rejection
Definition: StarMatch.h:164
T move(T... args)
bool operator==(FilterProperty const &rhs) const noexcept
Return true iff two FilterProperties are identical.
bool operator!=(FilterProperty const &rhs) const noexcept
Return true iff rhs != this.
Definition: Filter.h:100
bool compareStar1(const StarMatch &one, const StarMatch &two)
Definition: StarMatch.h:115
bool sameStar2(const StarMatch &one, const StarMatch &two)
Definition: StarMatch.h:125
bool sameStar1(const StarMatch &one, const StarMatch &two)
Definition: StarMatch.h:119
bool compareStar2(const StarMatch &one, const StarMatch &two)
Definition: StarMatch.h:121
double computeDist2(const StarMatchList &S, const AstrometryTransform &transform)
sum of distance squared
Definition: StarMatch.cc:239
::std::list< StarMatch >::const_iterator StarMatchCIterator
Definition: StarMatch.h:134
std::ostream & operator<<(std::ostream &stream, AstrometryMapping const &mapping)
::std::list< StarMatch >::iterator StarMatchIterator
Definition: StarMatch.h:133
double computeChi2(const StarMatchList &L, const AstrometryTransform &transform)
the actual chi2
Definition: StarMatch.cc:246
A base class for image defects.
STL namespace.
T swap(T... args)