LSSTApplications  19.0.0-14-gb0260a2+72efe9b372,20.0.0+7927753e06,20.0.0+8829bf0056,20.0.0+995114c5d2,20.0.0+b6f4b2abd1,20.0.0+bddc4f4cbe,20.0.0-1-g253301a+8829bf0056,20.0.0-1-g2b7511a+0d71a2d77f,20.0.0-1-g5b95a8c+7461dd0434,20.0.0-12-g321c96ea+23efe4bbff,20.0.0-16-gfab17e72e+fdf35455f6,20.0.0-2-g0070d88+ba3ffc8f0b,20.0.0-2-g4dae9ad+ee58a624b3,20.0.0-2-g61b8584+5d3db074ba,20.0.0-2-gb780d76+d529cf1a41,20.0.0-2-ged6426c+226a441f5f,20.0.0-2-gf072044+8829bf0056,20.0.0-2-gf1f7952+ee58a624b3,20.0.0-20-geae50cf+e37fec0aee,20.0.0-25-g3dcad98+544a109665,20.0.0-25-g5eafb0f+ee58a624b3,20.0.0-27-g64178ef+f1f297b00a,20.0.0-3-g4cc78c6+e0676b0dc8,20.0.0-3-g8f21e14+4fd2c12c9a,20.0.0-3-gbd60e8c+187b78b4b8,20.0.0-3-gbecbe05+48431fa087,20.0.0-38-ge4adf513+a12e1f8e37,20.0.0-4-g97dc21a+544a109665,20.0.0-4-gb4befbc+087873070b,20.0.0-4-gf910f65+5d3db074ba,20.0.0-5-gdfe0fee+199202a608,20.0.0-5-gfbfe500+d529cf1a41,20.0.0-6-g64f541c+d529cf1a41,20.0.0-6-g9a5b7a1+a1cd37312e,20.0.0-68-ga3f3dda+5fca18c6a4,20.0.0-9-g4aef684+e18322736b,w.2020.45
LSSTDataManagementBasePackage
Public Member Functions | Public Attributes | List of all members
lsst::jointcal::FastFinder::Iterator Class Reference

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

#include <FastFinder.h>

Public Member Functions

void check () const
 
 Iterator (const FastFinder &f, const Point &where, double maxDist)
 
void operator++ ()
 
stars_element operator* () const
 

Public Attributes

const FastFinderfinder
 
int currentSlice
 
int endSlice
 
double yStart
 
double yEnd
 
pstar current
 
pstar pend
 
pstar null_value
 

Detailed Description

Iterator meant to traverse objects within some limiting distance.

Initializer is beginScan and end condition is (*it == NULL). Used by findClosest & co.

Definition at line 90 of file FastFinder.h.

Constructor & Destructor Documentation

◆ Iterator()

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

Definition at line 180 of file FastFinder.cc.

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 }

Member Function Documentation

◆ check()

void lsst::jointcal::FastFinder::Iterator::check ( ) const

Definition at line 225 of file FastFinder.cc.

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

◆ operator*()

FastFinder::stars_element lsst::jointcal::Iterator::operator* ( ) const

Definition at line 205 of file FastFinder.cc.

205  {
206  if (current != null_value) return *current;
207  return nullptr;
208 }

◆ operator++()

void lsst::jointcal::Iterator::operator++ ( )

Definition at line 210 of file FastFinder.cc.

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

Member Data Documentation

◆ current

pstar lsst::jointcal::FastFinder::Iterator::current

Definition at line 97 of file FastFinder.h.

◆ currentSlice

int lsst::jointcal::FastFinder::Iterator::currentSlice

Definition at line 93 of file FastFinder.h.

◆ endSlice

int lsst::jointcal::FastFinder::Iterator::endSlice

Definition at line 93 of file FastFinder.h.

◆ finder

const FastFinder& lsst::jointcal::FastFinder::Iterator::finder

Definition at line 92 of file FastFinder.h.

◆ null_value

pstar lsst::jointcal::FastFinder::Iterator::null_value

Definition at line 98 of file FastFinder.h.

◆ pend

pstar lsst::jointcal::FastFinder::Iterator::pend

Definition at line 97 of file FastFinder.h.

◆ yEnd

double lsst::jointcal::FastFinder::Iterator::yEnd

Definition at line 94 of file FastFinder.h.

◆ yStart

double lsst::jointcal::FastFinder::Iterator::yStart

Definition at line 94 of file FastFinder.h.


The documentation for this class was generated from the following files:
lsst::jointcal::FastFinder::Iterator::check
void check() const
Definition: FastFinder.cc:225
lsst::jointcal::FastFinder::count
unsigned count
Definition: FastFinder.h:58
lsst::jointcal::FastFinder::findRangeInSlice
void findRangeInSlice(const int iSlice, const double yStart, const double yEnd, pstar &start, pstar &end) const
Definition: FastFinder.cc:168
lsst::jointcal::FastFinder::xstep
double xstep
Definition: FastFinder.h:67
lsst::jointcal::FastFinder::Iterator::current
pstar current
Definition: FastFinder.h:97
LOGLS_ERROR
#define LOGLS_ERROR(logger, message)
Definition: Log.h:668
lsst::jointcal::FastFinder::Iterator::yStart
double yStart
Definition: FastFinder.h:94
lsst::jointcal::FastFinder::stars
std::vector< std::shared_ptr< const BaseStar > > stars
Definition: FastFinder.h:64
lsst::jointcal::FastFinder::Iterator::null_value
pstar null_value
Definition: FastFinder.h:98
lsst::jointcal::FastFinder::Iterator::endSlice
int endSlice
Definition: FastFinder.h:93
lsst::jointcal::FastFinder::Iterator::yEnd
double yEnd
Definition: FastFinder.h:94
std::min
T min(T... args)
lsst::jointcal::FastFinder::Iterator::finder
const FastFinder & finder
Definition: FastFinder.h:92
lsst::jointcal::FastFinder::xmin
double xmin
Definition: FastFinder.h:67
lsst::jointcal::FastFinder::Iterator::currentSlice
int currentSlice
Definition: FastFinder.h:93
std::max
T max(T... args)
lsst::jointcal::FastFinder::nslice
unsigned nslice
Definition: FastFinder.h:65
lsst::jointcal::FastFinder::Iterator::pend
pstar pend
Definition: FastFinder.h:97