LSSTApplications
10.0-2-g4f67435,11.0.rc2+1,11.0.rc2+12,11.0.rc2+3,11.0.rc2+4,11.0.rc2+5,11.0.rc2+6,11.0.rc2+7,11.0.rc2+8
LSSTDataManagementBasePackage
|
Class to ensure constraints for spatial modeling. More...
#include <SpatialCell.h>
Public Types | |
typedef boost::shared_ptr < SpatialCell > | Ptr |
typedef boost::shared_ptr < const SpatialCell > | ConstPtr |
typedef std::vector < boost::shared_ptr < SpatialCellCandidate > > | CandidateList |
typedef SpatialCellCandidateIterator | iterator |
Public Member Functions | |
SpatialCell (std::string const &label, lsst::afw::geom::Box2I const &bbox=lsst::afw::geom::Box2I(), CandidateList const &candidateList=CandidateList()) | |
virtual | ~SpatialCell () |
bool | empty () const |
size_t | size () const |
void | sortCandidates () |
SpatialCellCandidateIterator | begin () |
SpatialCellCandidateIterator | begin (bool ignoreBad) |
SpatialCellCandidateIterator | end () |
SpatialCellCandidateIterator | end (bool ignoreBad) |
void | insertCandidate (boost::shared_ptr< SpatialCellCandidate > candidate) |
void | removeCandidate (boost::shared_ptr< SpatialCellCandidate > candidate) |
void | setIgnoreBad (bool ignoreBad) |
Set whether we should omit BAD candidates from candidate list when traversing. More... | |
bool | getIgnoreBad () const |
Get whether we are omitting BAD candidates from candidate list when traversing. More... | |
boost::shared_ptr < SpatialCellCandidate > | getCandidateById (int id, bool noThrow=false) |
std::string const & | getLabel () const |
lsst::afw::geom::Box2I const & | getBBox () const |
void | visitCandidates (CandidateVisitor *visitor, int const nMaxPerCell=-1, bool const ignoreExceptions=false, bool const reset=true) |
void | visitCandidates (CandidateVisitor *visitor, int const nMaxPerCell=-1, bool const ignoreExceptions=false, bool const reset=true) const |
void | visitAllCandidates (CandidateVisitor *visitor, bool const ignoreExceptions=false, bool const reset=true) |
void | visitAllCandidates (CandidateVisitor *visitor, bool const ignoreExceptions=false, bool const reset=true) const |
Private Attributes | |
std::string | _label |
lsst::afw::geom::Box2I | _bbox |
CandidateList | _candidateList |
bool | _ignoreBad |
Class to ensure constraints for spatial modeling.
A given image is divided up into cells, with each cell represented by an instance of this class. Each cell itself contains a list of instances of classes derived from SpatialCellCandidate. One class member from each cell will be chosen to fit to a spatial model. In case of a poor fit, the next class instance in the list will be fit for. If all instances in a list are rejected from the spatial model, the best one will be used.
Definition at line 290 of file SpatialCell.h.
typedef std::vector<boost::shared_ptr< SpatialCellCandidate > > lsst.afw.math::SpatialCell::CandidateList |
Definition at line 294 of file SpatialCell.h.
typedef boost::shared_ptr<const SpatialCell> lsst.afw.math::SpatialCell::ConstPtr |
Definition at line 293 of file SpatialCell.h.
Definition at line 295 of file SpatialCell.h.
typedef boost::shared_ptr<SpatialCell> lsst.afw.math::SpatialCell::Ptr |
Definition at line 292 of file SpatialCell.h.
lsst.afw.math::SpatialCell::SpatialCell | ( | std::string const & | label, |
lsst::afw::geom::Box2I const & | bbox = lsst::afw::geom::Box2I() , |
||
CandidateList const & | candidateList = CandidateList() |
||
) |
Constructor
Ctor
label | string representing "name" of cell |
bbox | Bounding box of cell in overall image |
candidateList | list of candidates to represent this cell |
Definition at line 80 of file SpatialCell.cc.
|
inlinevirtual |
|
inline |
|
inline |
bool lsst.afw.math::SpatialCell::empty | ( | ) | const |
Determine if cell has no usable candidates
Definition at line 128 of file SpatialCell.cc.
|
inline |
Return an iterator to (one after) the end of the Candidates
Definition at line 325 of file SpatialCell.h.
|
inline |
ignoreBad | If true, ignore BAD candidates |
Definition at line 328 of file SpatialCell.h.
|
inline |
SpatialCellCandidate::Ptr lsst.afw.math::SpatialCell::getCandidateById | ( | int | id, |
bool | noThrow = false |
||
) |
Return the SpatialCellCandidate with the specified id
lsst::pex::exceptions::NotFoundError | if no candidate matches the id |
id | The desired ID |
noThrow | Return NULL in case of error |
Definition at line 159 of file SpatialCell.cc.
|
inline |
Get whether we are omitting BAD candidates from candidate list when traversing.
Definition at line 345 of file SpatialCell.h.
|
inline |
void lsst.afw.math::SpatialCell::insertCandidate | ( | boost::shared_ptr< SpatialCellCandidate > | candidate | ) |
void lsst.afw.math::SpatialCell::removeCandidate | ( | boost::shared_ptr< SpatialCellCandidate > | candidate | ) |
Remove a candidate from the list
This is not a particularly efficient operation, since we're using a std::vector, but should not hurt too much if the number of candidates in a cell is small.
Definition at line 114 of file SpatialCell.cc.
|
inline |
Set whether we should omit BAD candidates from candidate list when traversing.
Definition at line 343 of file SpatialCell.h.
size_t lsst.afw.math::SpatialCell::size | ( | ) | const |
Return number of usable candidates in Cell
Definition at line 145 of file SpatialCell.cc.
void lsst.afw.math::SpatialCell::sortCandidates | ( | ) |
Rearrange the candidates to reflect their current ratings
Definition at line 99 of file SpatialCell.cc.
void lsst.afw.math::SpatialCell::visitAllCandidates | ( | CandidateVisitor * | visitor, |
bool const | ignoreExceptions = false , |
||
bool const | reset = true |
||
) |
Call the visitor's processCandidate method for every Candidate in the SpatialCell
visitor | Pass this object to every Candidate |
ignoreExceptions | Ignore any exceptions thrown by |
reset | Reset visitor before passing it around |
Definition at line 261 of file SpatialCell.cc.
void lsst.afw.math::SpatialCell::visitAllCandidates | ( | CandidateVisitor * | visitor, |
bool const | ignoreExceptions = false , |
||
bool const | reset = true |
||
) | const |
Call the visitor's processCandidate method for each Candidate in the SpatialCell (const version)
This is the const version of SpatialCellSet::visitAllCandidates
visitor | Pass this object to every Candidate |
ignoreExceptions | Ignore any exceptions thrown by the processing |
reset | Reset visitor before passing it around |
Definition at line 293 of file SpatialCell.cc.
void lsst.afw.math::SpatialCell::visitCandidates | ( | CandidateVisitor * | visitor, |
int const | nMaxPerCell = -1 , |
||
bool const | ignoreExceptions = false , |
||
bool const | reset = true |
||
) |
Call the visitor's processCandidate method for each Candidate in the SpatialCell
visitor | Pass this object to every Candidate |
nMaxPerCell | Visit no more than this many Candidates (<= 0: all) |
ignoreExceptions | Ignore any exceptions thrown by the processing |
reset | Reset visitor before passing it around |
Definition at line 183 of file SpatialCell.cc.
void lsst.afw.math::SpatialCell::visitCandidates | ( | CandidateVisitor * | visitor, |
int const | nMaxPerCell = -1 , |
||
bool const | ignoreExceptions = false , |
||
bool const | reset = true |
||
) | const |
Call the visitor's processCandidate method for each Candidate in the SpatialCell (const version)
This is the const version of SpatialCellSet::visitCandidates
visitor | Pass this object to every Candidate |
nMaxPerCell | Visit no more than this many Candidates (-ve: all) |
ignoreExceptions | Ignore any exceptions thrown by the processing |
reset | Reset visitor before passing it around |
Definition at line 222 of file SpatialCell.cc.
|
private |
Definition at line 370 of file SpatialCell.h.
|
private |
Definition at line 371 of file SpatialCell.h.
|
private |
Definition at line 372 of file SpatialCell.h.
|
private |
Definition at line 369 of file SpatialCell.h.