|
lsst.afw g712618294e+4813a5392e
|
An iterator that only returns usable members of the SpatialCell. More...
#include <SpatialCell.h>
Public Member Functions | |
| void | operator++ () |
| Advance the iterator, maybe skipping over candidates labelled BAD. More... | |
| size_t | operator- (SpatialCellCandidateIterator const &rhs) const |
| Return the number of candidate between this and rhs. More... | |
| std::shared_ptr< SpatialCellCandidate const > | operator* () const |
| Dereference the iterator to return the Candidate (if there is one) More... | |
| std::shared_ptr< SpatialCellCandidate > | operator* () |
| Return the std::shared_ptr<CellCandidate> More... | |
| bool | operator== (SpatialCellCandidateIterator const &rhs) const |
| Are two SpatialCellCandidateIterators equal? More... | |
| bool | operator!= (SpatialCellCandidateIterator const &rhs) const |
| Are two SpatialCellCandidateIterators unequal? More... | |
Protected Member Functions | |
| SpatialCellCandidateIterator (CandidateList::iterator iterator, CandidateList::iterator end, bool ignoreBad) | |
| ctor; designed to be used to pass begin to SpatialCellCandidateIterator More... | |
| SpatialCellCandidateIterator (CandidateList::iterator iterator, CandidateList::iterator end, bool ignoreBad, bool) | |
| ctor; designed to be used to pass end to SpatialCellCandidateIterator More... | |
Friends | |
| class | SpatialCell |
An iterator that only returns usable members of the SpatialCell.
Definition at line 159 of file SpatialCell.h.
|
protected |
ctor; designed to be used to pass begin to SpatialCellCandidateIterator
| iterator | Where this iterator should start |
| end | One-past-the-end of iterator's range |
| ignoreBad | Should we pass over bad Candidates? |
Definition at line 240 of file SpatialCell.cc.
|
protected |
ctor; designed to be used to pass end to SpatialCellCandidateIterator
| iterator | start of of iterator's range; not used |
| end | Where this iterator should start |
| ignoreBad | Should we pass over bad Candidates? |
Definition at line 252 of file SpatialCell.cc.
|
inline |
Are two SpatialCellCandidateIterators unequal?
Definition at line 186 of file SpatialCell.h.
| std::shared_ptr< SpatialCellCandidate > lsst::afw::math::SpatialCellCandidateIterator::operator* | ( | ) |
Return the std::shared_ptr<CellCandidate>
Definition at line 294 of file SpatialCell.cc.
| std::shared_ptr< SpatialCellCandidate const > lsst::afw::math::SpatialCellCandidateIterator::operator* | ( | ) | const |
Dereference the iterator to return the Candidate (if there is one)
| lsst::pex::exceptions::NotFoundError | if no candidate is available |
Definition at line 286 of file SpatialCell.cc.
| void lsst::afw::math::SpatialCellCandidateIterator::operator++ | ( | ) |
Advance the iterator, maybe skipping over candidates labelled BAD.
Definition at line 261 of file SpatialCell.cc.
| size_t lsst::afw::math::SpatialCellCandidateIterator::operator- | ( | SpatialCellCandidateIterator const & | rhs | ) | const |
Return the number of candidate between this and rhs.
Definition at line 275 of file SpatialCell.cc.
|
inline |
Are two SpatialCellCandidateIterators equal?
Definition at line 184 of file SpatialCell.h.
|
friend |
Definition at line 160 of file SpatialCell.h.