LSST Applications g20cdd03214+d88ae33dbb,g2305ad1205+638a192319,g2bbee38e9b+5488e2da00,g337abbeb29+5488e2da00,g3a166c0a6a+5488e2da00,g4322eb9e3a+01538450c4,g461a3dce89+b86e4b8053,g4e26c3aaff+a9db0e6ea7,g50ff169b8f+f991eae79d,g52b1c1532d+b86e4b8053,g591dd9f2cf+fea6c8736d,g607f77f49a+d88ae33dbb,g69c4c69b53+5488e2da00,g77c1c8096b+d88ae33dbb,g858d7b2824+d88ae33dbb,g990b35512c+03bd065f16,g99cad8db69+bbdd020e07,g9ddcbc5298+f24b38b85a,ga1e77700b3+90cfe334c1,ga8d6e2f9c9+928643a972,gae0086650b+b86e4b8053,gb0e22166c9+907bb29ecb,gbb8dafda3b+23dd5020e0,gc120e1dc64+c4de370f5c,gc28159a63d+5488e2da00,gc2a6998b7e+c3cd773fe2,gcdd4ae20e8+6d3b77500b,gcf0d15dbbd+6d3b77500b,gd1535ee943+ed51c3f255,gdaeeff99f8+006e14e809,gde2a1005d8+577b09038d,ge79ae78c31+5488e2da00,gf375526af1+f4c6e0185a,gf905fbdb4b+0c234ed4b8,gfbcc870c63+c086b01567,w.2024.27
LSST Data Management Base Package
Loading...
Searching...
No Matches
Algorithm.cc
Go to the documentation of this file.
1// -*- lsst-c++ -*-
2/*
3 * LSST Data Management System
4 * Copyright 2008-2014 LSST Corporation.
5 *
6 * This product includes software developed by the
7 * LSST Project (http://www.lsst.org/).
8 *
9 * This program is free software: you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation, either version 3 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the LSST License Statement and
20 * the GNU General Public License along with this program. If not,
21 * see <http://www.lsstcorp.org/LegalNotices/>.
22 */
23
26
27namespace lsst {
28namespace meas {
29namespace base {
30
32 afw::image::Exposure<float> const& exposure) const {
33 throw LSST_EXCEPT(pex::exceptions::LogicError, "measureN not implemented for this algorithm");
34}
35
37 afw::image::Exposure<float> const& exposure,
38 afw::table::SourceCatalog const& refRecord,
39 afw::geom::SkyWcs const& refWcs) const {
40 throw LSST_EXCEPT(pex::exceptions::LogicError, "measureN not implemented for this algorithm");
41}
42
43} // namespace base
44} // namespace meas
45} // namespace lsst
#define LSST_EXCEPT(type,...)
Create an exception with a given type.
Definition Exception.h:48
A 2-dimensional celestial WCS that transform pixels to ICRS RA/Dec, using the LSST standard for pixel...
Definition SkyWcs.h:117
A class to contain the data, WCS, and other information needed to describe an image of the sky.
Definition Exposure.h:72
virtual void measureNForced(afw::table::SourceCatalog const &measCat, afw::image::Exposure< float > const &exposure, afw::table::SourceCatalog const &refRecord, afw::geom::SkyWcs const &refWcs) const
Called to simultaneously measure all children in a deblend family, in a single image.
Definition Algorithm.cc:36
virtual void measureN(afw::table::SourceCatalog const &measCat, afw::image::Exposure< float > const &exposure) const
Called to simultaneously measure all children in a deblend family, in a single image.
Definition Algorithm.cc:31
Reports errors in the logical structure of the program.
Definition Runtime.h:46