#if !defined(TESTSPATIALCELL_H)
#define TESTSPATIALCELL_H
#include "boost/shared_ptr.hpp"
public:
typedef boost::shared_ptr<ExampleCandidate>
Ptr;
ExampleCandidate(float const xCenter, float const yCenter,
private:
ExampleCandidate::MaskedImageT::ConstPtr _parent;
};
public:
ExampleCandidateVisitor() : lsst::afw::math::CandidateVisitor(),
_n(0), _npix(0) {}
}
int getN()
const {
return _n; }
int getNPix() const { return _npix; }
private:
int _npix;
};
#endif