LSSTApplications  11.0-13-gbb96280,12.1+18,12.1+7,12.1-1-g14f38d3+72,12.1-1-g16c0db7+5,12.1-1-g5961e7a+84,12.1-1-ge22e12b+23,12.1-11-g06625e2+4,12.1-11-g0d7f63b+4,12.1-19-gd507bfc,12.1-2-g7dda0ab+38,12.1-2-gc0bc6ab+81,12.1-21-g6ffe579+2,12.1-21-gbdb6c2a+4,12.1-24-g941c398+5,12.1-3-g57f6835+7,12.1-3-gf0736f3,12.1-37-g3ddd237,12.1-4-gf46015e+5,12.1-5-g06c326c+20,12.1-5-g648ee80+3,12.1-5-gc2189d7+4,12.1-6-ga608fc0+1,12.1-7-g3349e2a+5,12.1-7-gfd75620+9,12.1-9-g577b946+5,12.1-9-gc4df26a+10
LSSTDataManagementBasePackage
testSpatialCell.h
/*
* LSST Data Management System
* Copyright 2008, 2009, 2010 LSST Corporation.
*
* This product includes software developed by the
* LSST Project (http://www.lsst.org/).
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the LSST License Statement and
* the GNU General Public License along with this program. If not,
* see <http://www.lsstcorp.org/LegalNotices/>.
*/
#if !defined(TESTSPATIALCELL_H)
#define TESTSPATIALCELL_H
#include <memory>
#include "lsst/afw/math.h"
#include "lsst/afw/geom.h"
/************************************************************************************************************/
/*
* Test class for SpatialCellImageCandidate
*/
class ExampleCandidate : public lsst::afw::math::SpatialCellImageCandidate {
public:
typedef float PixelT;
ExampleCandidate(float const xCenter, float const yCenter,
std::shared_ptr<MaskedImageT const> parent, lsst::afw::geom::Box2I bbox);
lsst::afw::geom::Box2I getBBox() const { return _bbox; }
double getCandidateRating() const;
std::shared_ptr<MaskedImageT const> getMaskedImage() const;
private:
mutable std::shared_ptr<MaskedImageT> _image;
std::shared_ptr<MaskedImageT const> _parent;
};
/************************************************************************************************************/
/*
* Class to pass around to all our ExampleCandidates. All this one does is count acceptable candidates
*/
class ExampleCandidateVisitor : public lsst::afw::math::CandidateVisitor {
public:
ExampleCandidateVisitor() : lsst::afw::math::CandidateVisitor(), _n(0), _npix(0) {}
// Called by SpatialCellSet::visitCandidates before visiting any Candidates
void reset() { _n = _npix = 0; }
// Called by SpatialCellSet::visitCandidates for each Candidate
++_n;
lsst::afw::geom::Box2I box = dynamic_cast<ExampleCandidate *>(candidate)->getBBox();
_npix += box.getArea();
}
int getN() const { return _n; }
int getNPix() const { return _npix; }
private:
int _n; // number of ExampleCandidates
int _npix; // number of pixels in ExampleCandidates's bounding boxes
};
#endif