LSST Applications  21.0.0-147-g0e635eb1+1acddb5be5,22.0.0+052faf71bd,22.0.0+1ea9a8b2b2,22.0.0+6312710a6c,22.0.0+729191ecac,22.0.0+7589c3a021,22.0.0+9f079a9461,22.0.1-1-g7d6de66+b8044ec9de,22.0.1-1-g87000a6+536b1ee016,22.0.1-1-g8e32f31+6312710a6c,22.0.1-10-gd060f87+016f7cdc03,22.0.1-12-g9c3108e+df145f6f68,22.0.1-16-g314fa6d+c825727ab8,22.0.1-19-g93a5c75+d23f2fb6d8,22.0.1-19-gb93eaa13+aab3ef7709,22.0.1-2-g8ef0a89+b8044ec9de,22.0.1-2-g92698f7+9f079a9461,22.0.1-2-ga9b0f51+052faf71bd,22.0.1-2-gac51dbf+052faf71bd,22.0.1-2-gb66926d+6312710a6c,22.0.1-2-gcb770ba+09e3807989,22.0.1-20-g32debb5+b8044ec9de,22.0.1-23-gc2439a9a+fb0756638e,22.0.1-3-g496fd5d+09117f784f,22.0.1-3-g59f966b+1e6ba2c031,22.0.1-3-g849a1b8+f8b568069f,22.0.1-3-gaaec9c0+c5c846a8b1,22.0.1-32-g5ddfab5d3+60ce4897b0,22.0.1-4-g037fbe1+64e601228d,22.0.1-4-g8623105+b8044ec9de,22.0.1-5-g096abc9+d18c45d440,22.0.1-5-g15c806e+57f5c03693,22.0.1-7-gba73697+57f5c03693,master-g6e05de7fdc+c1283a92b8,master-g72cdda8301+729191ecac,w.2021.39
LSST Data Management Base Package
FastFinder.cc
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 #include <algorithm>
26 
27 #include "lsst/log/Log.h"
28 #include "lsst/jointcal/BaseStar.h"
30 
31 namespace {
32 LOG_LOGGER _log = LOG_GET("jointcal.FastFinder");
33 }
34 
35 namespace lsst {
36 namespace jointcal {
37 
38 FastFinder::FastFinder(const BaseStarList &list, const unsigned nXSlice)
39  : baselist(list), count(list.size()), stars(count), nslice(nXSlice), index(nslice + 1) {
40  if (count == 0) return;
41 
42  // fill "stars"
43  unsigned j = 0;
44  for (auto const &ci : list) {
45  stars[j] = ci;
46  ++j;
47  }
48 
49  sort(stars.begin(), stars.end(),
50  [](const stars_element &E1, const stars_element &E2) { return (E1->x < E2->x); });
51 
52  xmin = stars[0]->x;
53  xmax = stars[count - 1]->x;
55  if (xmin == xmax) nslice = 1;
56 
57  // the x size of each slice:
58  xstep = (xmax - xmin) / nslice;
59 
60  // fill the index array with the first star beyond the slice limit.
61  index[0] = 0; // first
62  unsigned istar = 0;
63  for (unsigned islice = 1; islice < nslice; ++islice) {
64  double xend = xmin + (islice)*xstep;
65  while (istar < count && stars[istar]->x < xend) ++istar;
66  index[islice] = istar;
67  }
68  index[nslice] = count; // last
69  for (unsigned islice = 0; islice < nslice; ++islice) {
70  sort(stars.begin() + index[islice], stars.begin() + index[islice + 1],
71  [](const stars_element &E1, const stars_element &E2) {
72  return (E1->y < E2->y);
73  }); // sort each slice in y.
74  }
75 }
76 
77 void FastFinder::print(std::ostream &out) const {
78  for (unsigned i = 0; i < count; ++i) {
79  stars[i]->print(out);
80  }
81 }
82 
84  bool (*SkipIt)(const BaseStar &)) const {
85  if (count == 0) return nullptr;
86  FastFinder::Iterator it = beginScan(where, maxDist);
87  if (*it == nullptr) return nullptr;
89  double minDist2 = maxDist * maxDist;
90  for (; *it != nullptr; ++it) {
91  if (SkipIt && SkipIt(**it)) continue;
92  double dist2 = where.computeDist2(**it);
93  if (dist2 < minDist2) {
94  pbest = *it;
95  minDist2 = dist2;
96  }
97  }
98  return pbest;
99 }
100 
103  bool (*SkipIt)(const BaseStar &)) const {
104  closest = nullptr;
105  if (count == 0) return nullptr;
106  FastFinder::Iterator it = beginScan(where, maxDist);
107  if (*it == nullptr) return nullptr;
108  std::shared_ptr<const BaseStar> pbest1; // closest
109  std::shared_ptr<const BaseStar> pbest2; // second closest
110  double minDist1_2 = maxDist * maxDist;
111  double minDist2_2 = maxDist * maxDist;
112  for (; *it != nullptr; ++it) {
113  if (SkipIt && SkipIt(**it)) continue;
114  double dist2 = where.computeDist2(**it);
115  if (dist2 < minDist1_2) {
116  pbest2 = pbest1;
117  minDist2_2 = minDist1_2;
118  pbest1 = *it;
119  minDist1_2 = dist2;
120  } else if (dist2 < minDist2_2) {
121  pbest2 = *it;
122  minDist2_2 = dist2;
123  }
124  }
125  closest = pbest1;
126  return pbest2;
127 }
128 
129 /* It is by no means clear the the 2 following routines are actually needed.
130  It is nor clear to me (P.A) why they are different... but they really are.
131 */
132 /* Locate the last position (in the sorted array) between begin and
133  end that lies before yVal.*/
134 FastFinder::pstar FastFinder::locateYStart(pstar begin, pstar end, double yVal) const {
135  if (begin == stars.end() || begin == end) return stars.end();
136  int span = end - begin - 1;
137  while (span > 1) {
138  int half_span = span / 2;
139  pstar middle = begin + half_span;
140  if ((*middle)->y < yVal) {
141  begin += half_span;
142  span -= half_span;
143  } else {
144  span -= (span - half_span);
145  }
146  }
147  return begin;
148 }
149 
150 /* Locate the first position (in the sorted array) between begin and
151  end that lies beyond yVal.*/
152 FastFinder::pstar FastFinder::locateYEnd(pstar begin, pstar end, double yVal) const {
153  if (begin == stars.end()) return stars.end();
154  int span = end - begin - 1;
155  while (span > 1) {
156  int half_span = span / 2;
157  pstar middle = end - half_span;
158  if ((*middle)->y > yVal) {
159  end -= half_span;
160  span -= half_span;
161  } else {
162  span -= (span - half_span);
163  }
164  }
165  return end - 1;
166 }
167 
168 void FastFinder::findRangeInSlice(const int iSlice, const double yStart, const double yEnd, pstar &start,
169  pstar &end) const {
170  start = locateYStart(stars.begin() + index[iSlice], stars.begin() + index[iSlice + 1], yStart);
171  end = locateYEnd(start, stars.begin() + index[iSlice + 1], yEnd);
172 }
173 
174 FastFinder::Iterator FastFinder::beginScan(const Point &where, double maxDist) const {
175  return FastFinder::Iterator(*this, where, maxDist);
176 }
177 
179 
180 Iterator::Iterator(const FastFinder &F, const Point &where, double maxDist)
181  : finder(F), null_value(F.stars.end()) {
182  current = pend = null_value; // does not iterate
183  int startSlice = 0;
184  if (finder.xstep != 0) // means we have several slices
185  {
186  startSlice = std::max(0, int((where.x - maxDist - finder.xmin) / finder.xstep));
187  /* obviously, endSlice (and starSlice) can be negative.
188  This is why slice indices are "int" rather than "unsigned". */
189  endSlice = std::min(int(finder.nslice), int((where.x + maxDist - finder.xmin) / finder.xstep) + 1);
190  } else {
191  startSlice = 0;
192  endSlice = 1;
193  }
194  // beyond limits:
195  if (startSlice >= int(finder.nslice) || endSlice < 0) return;
196  // we are inside in x, so, we setup the y range:
197  yStart = where.y - maxDist;
198  yEnd = where.y + maxDist;
199  /* rather than initializing here, we step back one
200  slice and let "++" do its job */
201  currentSlice = startSlice - 1; // again, this requires "int" slices
202  ++(*this);
203 }
204 
206  if (current != null_value) return *current;
207  return nullptr;
208 }
209 
211  if (current != pend) {
212  current++;
213  } else
214  do {
215  currentSlice++;
216  if (currentSlice >= endSlice) {
218  return;
219  }
221  } while (current == null_value);
222  check();
223 }
224 
226  if (current != null_value &&
227  (current < finder.stars.begin() || current >= finder.stars.begin() + finder.count)) {
228  LOGLS_ERROR(_log, "Error in FastFinder " << *current << " " << *(finder.stars.begin()) << ' '
229  << *(finder.stars.begin() + finder.count));
230  }
231 }
232 } // namespace jointcal
233 } // namespace lsst
int end
double x
Fast locator in starlists.
LSST DM logging module built on log4cxx.
#define LOG_GET(logger)
Returns a Log object associated with logger.
Definition: Log.h:75
#define LOG_LOGGER
Definition: Log.h:714
#define LOGLS_ERROR(logger, message)
Log a error-level message using an iostream-based interface.
Definition: Log.h:679
T begin(T... args)
The base class for handling stars. Used by all matching routines.
Definition: BaseStar.h:51
Iterator meant to traverse objects within some limiting distance.
Definition: FastFinder.h:90
Iterator(const FastFinder &f, const Point &where, double maxDist)
Definition: FastFinder.cc:180
stars_element operator*() const
Definition: FastFinder.cc:205
This is an auxillary class for matching objects from starlists.
Definition: FastFinder.h:54
pstar locateYStart(pstar begin, pstar end, double yVal) const
Definition: FastFinder.cc:134
std::shared_ptr< const BaseStar > findClosest(const Point &where, const double maxDist, bool(*SkipIt)(const BaseStar &)=nullptr) const
Find the closest with some rejection capability.
Definition: FastFinder.cc:83
void print(std::ostream &out) const
mostly for debugging
Definition: FastFinder.cc:77
void findRangeInSlice(const int iSlice, const double yStart, const double yEnd, pstar &start, pstar &end) const
Definition: FastFinder.cc:168
decltype(stars) typedef ::value_type stars_element
Definition: FastFinder.h:69
decltype(stars) typedef ::const_iterator pstar
Definition: FastFinder.h:70
Iterator beginScan(const Point &where, double maxDist) const
Definition: FastFinder.cc:174
FastFinder(const BaseStarList &list, const unsigned nXSlice=100)
Constructor.
Definition: FastFinder.cc:38
std::vector< unsigned > index
Definition: FastFinder.h:66
std::vector< std::shared_ptr< const BaseStar > > stars
Definition: FastFinder.h:64
std::shared_ptr< const BaseStar > secondClosest(const Point &where, const double maxDist, std::shared_ptr< const BaseStar > &closest, bool(*SkipIt)(const BaseStar &)=nullptr) const
Definition: FastFinder.cc:101
pstar locateYEnd(pstar begin, pstar end, double yVal) const
Definition: FastFinder.cc:152
A point in a plane.
Definition: Point.h:37
double x
coordinate
Definition: Point.h:42
double computeDist2(const Point &other) const
distance squared to other
Definition: Point.h:56
std::lists of Stars.
Definition: StarList.h:58
T count(T... args)
T max(T... args)
T min(T... args)
FastFinder::Iterator Iterator
Definition: FastFinder.cc:178
A base class for image defects.
T sort(T... args)