LSST Applications g0265f82a02+0e5473021a,g02d81e74bb+0dd8ce4237,g1470d8bcf6+3ea6592b6f,g2079a07aa2+86d27d4dc4,g2305ad1205+5ca4c0b359,g295015adf3+d10818ec9d,g2a9a014e59+6f9be1b9cd,g2bbee38e9b+0e5473021a,g337abbeb29+0e5473021a,g3ddfee87b4+703ba97ebf,g487adcacf7+4fa16da234,g50ff169b8f+96c6868917,g52b1c1532d+585e252eca,g591dd9f2cf+ffa42b374e,g5a732f18d5+53520f316c,g64a986408d+0dd8ce4237,g858d7b2824+0dd8ce4237,g8a8a8dda67+585e252eca,g99cad8db69+d39438377f,g9ddcbc5298+9a081db1e4,ga1e77700b3+15fc3df1f7,ga8c6da7877+f1d96605c8,gb0e22166c9+60f28cb32d,gb6a65358fc+0e5473021a,gba4ed39666+c2a2e4ac27,gbb8dafda3b+e5339d463f,gc120e1dc64+da31e9920e,gc28159a63d+0e5473021a,gcf0d15dbbd+703ba97ebf,gdaeeff99f8+f9a426f77a,ge6526c86ff+889fc9d533,ge79ae78c31+0e5473021a,gee10cc3b42+585e252eca,gf18bd8381d+7268b93478,gff1a9f87cc+0dd8ce4237,w.2024.16
LSST Data Management Base Package
Loading...
Searching...
No Matches
Classes | Public Types | Public Member Functions | Public Attributes | List of all members
lsst::jointcal::FastFinder Class Reference

This is an auxillary class for matching objects from starlists. More...

#include <FastFinder.h>

Classes

class  Iterator
 Iterator meant to traverse objects within some limiting distance. More...
 

Public Types

using stars_element = decltype(stars)::value_type
 
using pstar = decltype(stars)::const_iterator
 

Public Member Functions

 FastFinder (const BaseStarList &list, unsigned nXSlice=100)
 Constructor.
 
std::shared_ptr< const BaseStarfindClosest (const Point &where, double maxDist, bool(*SkipIt)(const BaseStar &)=nullptr) const
 Find the closest with some rejection capability.
 
std::shared_ptr< const BaseStarsecondClosest (const Point &where, double maxDist, std::shared_ptr< const BaseStar > &closest, bool(*SkipIt)(const BaseStar &)=nullptr) const
 
void print (std::ostream &out) const
 mostly for debugging
 
Iterator beginScan (const Point &where, double maxDist) const
 
void findRangeInSlice (int iSlice, double yStart, double yEnd, pstar &start, pstar &end) const
 
pstar locateYStart (pstar begin, pstar end, double yVal) const
 
pstar locateYEnd (pstar begin, pstar end, double yVal) const
 

Public Attributes

const BaseStarList baselist
 
unsigned count
 
std::vector< std::shared_ptr< const BaseStar > > stars
 
unsigned nslice
 
std::vector< unsigned > index
 
double xmin
 
double xmax
 
double xstep
 

Detailed Description

This is an auxillary class for matching objects from starlists.

It allows to locate rapidly the closest objects from a given position. The very simple strategy is to sort objects according to 1 coordinate x, and to build an index that allows to select the objects with the x coordinate inside an interval. Then every slice in x is sorted according to y, which enables a fast scan inside a x slice. listMatchCollect takes about 10ms (PC 450 MHz, optimized "-O4") for a match between lists of about 2000 objects each, which is fast enough for our needs. The same "locator" is used in listMatchupShift, to avoid scanning the whole input lists. Timing on listMatchCollect and listMatchupShift indicates a gain in speed by more than one order of magnitude after implementation of this FastFinder. Fast locator in starlists.

Definition at line 54 of file FastFinder.h.

Member Typedef Documentation

◆ pstar

using lsst::jointcal::FastFinder::pstar = decltype(stars)::const_iterator

Definition at line 70 of file FastFinder.h.

◆ stars_element

using lsst::jointcal::FastFinder::stars_element = decltype(stars)::value_type

Definition at line 69 of file FastFinder.h.

Constructor & Destructor Documentation

◆ FastFinder()

lsst::jointcal::FastFinder::FastFinder ( const BaseStarList & list,
unsigned nXSlice = 100 )

Constructor.

Definition at line 38 of file FastFinder.cc.

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}
T begin(T... args)
decltype(stars)::value_type stars_element
Definition FastFinder.h:69
const BaseStarList baselist
Definition FastFinder.h:56
std::vector< unsigned > index
Definition FastFinder.h:66
std::vector< std::shared_ptr< const BaseStar > > stars
Definition FastFinder.h:64
T min(T... args)
T sort(T... args)

Member Function Documentation

◆ beginScan()

FastFinder::Iterator lsst::jointcal::FastFinder::beginScan ( const Point & where,
double maxDist ) const

Definition at line 174 of file FastFinder.cc.

174 {
175 return FastFinder::Iterator(*this, where, maxDist);
176}

◆ findClosest()

std::shared_ptr< const BaseStar > lsst::jointcal::FastFinder::findClosest ( const Point & where,
double maxDist,
bool(*)(const BaseStar &) SkipIt = nullptr ) const

Find the closest with some rejection capability.

Definition at line 83 of file FastFinder.cc.

84 {
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}
Iterator beginScan(const Point &where, double maxDist) const

◆ findRangeInSlice()

void lsst::jointcal::FastFinder::findRangeInSlice ( int iSlice,
double yStart,
double yEnd,
pstar & start,
pstar & end ) const

Definition at line 168 of file FastFinder.cc.

169 {
170 start = locateYStart(stars.begin() + index[iSlice], stars.begin() + index[iSlice + 1], yStart);
171 end = locateYEnd(start, stars.begin() + index[iSlice + 1], yEnd);
172}
int end
pstar locateYStart(pstar begin, pstar end, double yVal) const
pstar locateYEnd(pstar begin, pstar end, double yVal) const

◆ locateYEnd()

FastFinder::pstar lsst::jointcal::FastFinder::locateYEnd ( pstar begin,
pstar end,
double yVal ) const

Definition at line 152 of file FastFinder.cc.

152 {
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 auto 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}

◆ locateYStart()

FastFinder::pstar lsst::jointcal::FastFinder::locateYStart ( pstar begin,
pstar end,
double yVal ) const

Definition at line 134 of file FastFinder.cc.

134 {
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 auto 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}

◆ print()

void lsst::jointcal::FastFinder::print ( std::ostream & out) const

mostly for debugging

Definition at line 77 of file FastFinder.cc.

77 {
78 for (unsigned i = 0; i < count; ++i) {
79 stars[i]->print(out);
80 }
81}

◆ secondClosest()

std::shared_ptr< const BaseStar > lsst::jointcal::FastFinder::secondClosest ( const Point & where,
double maxDist,
std::shared_ptr< const BaseStar > & closest,
bool(*)(const BaseStar &) SkipIt = nullptr ) const

Definition at line 101 of file FastFinder.cc.

103 {
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}

Member Data Documentation

◆ baselist

const BaseStarList lsst::jointcal::FastFinder::baselist

Definition at line 56 of file FastFinder.h.

◆ count

unsigned lsst::jointcal::FastFinder::count

Definition at line 58 of file FastFinder.h.

◆ index

std::vector<unsigned> lsst::jointcal::FastFinder::index

Definition at line 66 of file FastFinder.h.

◆ nslice

unsigned lsst::jointcal::FastFinder::nslice

Definition at line 65 of file FastFinder.h.

◆ stars

std::vector<std::shared_ptr<const BaseStar> > lsst::jointcal::FastFinder::stars

Definition at line 64 of file FastFinder.h.

◆ xmax

double lsst::jointcal::FastFinder::xmax

Definition at line 67 of file FastFinder.h.

◆ xmin

double lsst::jointcal::FastFinder::xmin

Definition at line 67 of file FastFinder.h.

◆ xstep

double lsst::jointcal::FastFinder::xstep

Definition at line 67 of file FastFinder.h.


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