LSST Applications g042eb84c57+730a74494b,g04e9c324dd+8c5ae1fdc5,g134cb467dc+1f1e3e7524,g199a45376c+0ba108daf9,g1fd858c14a+fa7d31856b,g210f2d0738+f66ac109ec,g262e1987ae+83a3acc0e5,g29ae962dfc+d856a2cb1f,g2cef7863aa+aef1011c0b,g35bb328faa+8c5ae1fdc5,g3fd5ace14f+a1e0c9f713,g47891489e3+0d594cb711,g4d44eb3520+c57ec8f3ed,g4d7b6aa1c5+f66ac109ec,g53246c7159+8c5ae1fdc5,g56a1a4eaf3+fd7ad03fde,g64539dfbff+f66ac109ec,g67b6fd64d1+0d594cb711,g67fd3c3899+f66ac109ec,g6985122a63+0d594cb711,g74acd417e5+3098891321,g786e29fd12+668abc6043,g81db2e9a8d+98e2ab9f28,g87389fa792+8856018cbb,g89139ef638+0d594cb711,g8d7436a09f+80fda9ce03,g8ea07a8fe4+760ca7c3fc,g90f42f885a+033b1d468d,g97be763408+a8a29bda4b,g99822b682c+e3ec3c61f9,g9d5c6a246b+0d5dac0c3d,ga41d0fce20+9243b26dd2,gbf99507273+8c5ae1fdc5,gd7ef33dd92+0d594cb711,gdab6d2f7ff+3098891321,ge410e46f29+0d594cb711,geaed405ab2+c4bbc419c6,gf9a733ac38+8c5ae1fdc5,w.2025.38
LSST Data Management Base Package
Loading...
Searching...
No Matches
CoaddBoundedField.cc
Go to the documentation of this file.
1// -*- LSST-C++ -*-
2/*
3 * LSST Data Management System
4 * Copyright 2008-2014, 2010 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
25#include "lsst/geom/Box.h"
32
33namespace lsst {
34namespace afw {
35namespace table {
36namespace io {
37
38template std::shared_ptr<meas::algorithms::CoaddBoundedField>
40
41} // namespace io
42} // namespace table
43} // namespace afw
44namespace meas {
45namespace algorithms {
46namespace {
47
48/*
49 * Compare two pointers of the same type
50 *
51 * If both pointers are set then return *a == *b
52 * else return a == b
53 */
54template <typename T>
55bool ptrEquals(T a, T b) {
56 if (a == b) {
57 // test this first for efficiency
58 return true;
59 } else if (a && b) {
60 // both pointers are set, so it is safe to check value equality
61 return *a == *b;
62 }
63 return false;
64}
65
66} // namespace
67
69 return ptrEquals(field, rhs.field) && ptrEquals(wcs, rhs.wcs) &&
70 ptrEquals(validPolygon, rhs.validPolygon) && (weight == rhs.weight);
71}
72
74 ElementVector const& elements)
75 : afw::math::BoundedField(bbox),
76 _throwOnMissing(true),
77 _default(0.0), // unused
78 _coaddWcs(coaddWcs),
79 _elements(elements) {}
80
82 ElementVector const& elements, double default_)
83 : afw::math::BoundedField(bbox),
84 _throwOnMissing(false),
85 _default(default_),
86 _coaddWcs(coaddWcs),
87 _elements(elements) {}
88
89double CoaddBoundedField::evaluate(geom::Point2D const& position) const {
90 auto coord = _coaddWcs->pixelToSky(position);
91 double sum = 0.0;
92 double wSum = 0.0;
93 for (ElementVector::const_iterator i = _elements.begin(); i != _elements.end(); ++i) {
94 geom::Point2D transformedPosition = i->wcs->skyToPixel(coord);
95 bool inValidArea = i->validPolygon ? i->validPolygon->contains(transformedPosition) : true;
96 if (geom::Box2D(i->field->getBBox()).contains(transformedPosition) && inValidArea) {
97 sum += i->weight * i->field->evaluate(transformedPosition);
98 wSum += i->weight;
99 }
100 }
101 if (wSum == 0.0) {
102 if (_throwOnMissing) {
104 (boost::format("No constituent fields to evaluate at point %f, %f") %
105 position.getX() % position.getY())
106 .str());
107 } else {
108 return _default;
109 }
110 }
111 return sum / wSum;
112}
113
114// ---------- Persistence -----------------------------------------------------------------------------------
115
116// For persistence of CoaddBoundedField, we have two catalogs: the first has just one record, and contains
117// the archive ID of the coadd WCS and the parameters that control missing data. The other catalog
118// has one record for each element, with fields corresponding to the data members of the Element struct.
119
120namespace {
121
122// Singleton class that manages the first persistence catalog's schema and keys
123class CoaddBoundedFieldPersistenceKeys1 {
124public:
125 afw::table::Schema schema;
128 afw::table::Key<int> coaddWcs;
131
132 static CoaddBoundedFieldPersistenceKeys1 const& get() {
133 static CoaddBoundedFieldPersistenceKeys1 const instance;
134 return instance;
135 }
136
137 // No copying
138 CoaddBoundedFieldPersistenceKeys1(const CoaddBoundedFieldPersistenceKeys1&) = delete;
139 CoaddBoundedFieldPersistenceKeys1& operator=(const CoaddBoundedFieldPersistenceKeys1&) = delete;
140
141 // No moving
142 CoaddBoundedFieldPersistenceKeys1(CoaddBoundedFieldPersistenceKeys1&&) = delete;
143 CoaddBoundedFieldPersistenceKeys1& operator=(CoaddBoundedFieldPersistenceKeys1&&) = delete;
144
145private:
146 CoaddBoundedFieldPersistenceKeys1()
147 : schema(),
148 bboxMin(afw::table::PointKey<int>::addFields(schema, "bbox_min",
149 "lower-left corner of bounding box", "pixel")),
150 bboxMax(afw::table::PointKey<int>::addFields(schema, "bbox_max",
151 "upper-right corner of bounding box", "pixel")),
152 coaddWcs(schema.addField<int>("coaddWcs", "archive ID of the coadd's WCS")),
153 throwOnMissing(schema.addField<afw::table::Flag>(
154 "throwOnMissing", "whether to throw an exception on missing data")),
155 default_(schema.addField<double>("default",
156 "default value to use when throwOnMissing is False")) {}
157};
158
159// Singleton class that manages the second persistence catalog's schema and keys
160class CoaddBoundedFieldPersistenceKeys2 {
161public:
162 afw::table::Schema schema;
163 afw::table::Key<int> field;
164 afw::table::Key<int> wcs;
165 afw::table::Key<int> validPolygon;
166 afw::table::Key<double> weight;
167
168 static CoaddBoundedFieldPersistenceKeys2 const& get() {
169 static CoaddBoundedFieldPersistenceKeys2 const instance;
170 return instance;
171 }
172
173 // No copying
174 CoaddBoundedFieldPersistenceKeys2(const CoaddBoundedFieldPersistenceKeys2&) = delete;
175 CoaddBoundedFieldPersistenceKeys2& operator=(const CoaddBoundedFieldPersistenceKeys2&) = delete;
176
177 // No moving
178 CoaddBoundedFieldPersistenceKeys2(CoaddBoundedFieldPersistenceKeys2&&) = delete;
179 CoaddBoundedFieldPersistenceKeys2& operator=(CoaddBoundedFieldPersistenceKeys2&&) = delete;
180
181private:
182 CoaddBoundedFieldPersistenceKeys2()
183 : schema(),
184 field(schema.addField<int>("field", "archive ID of the BoundedField to be coadded")),
185 wcs(schema.addField<int>("wcs", "archive ID of the Wcs associated with this element")),
186 validPolygon(schema.addField<int>("validPolygon",
187 "archive ID of the Polygon associated with this element")),
188 weight(schema.addField<double>("weight", "weight value for this element")) {}
189};
190
191} // namespace
192
194public:
196 read(InputArchive const& archive, CatalogVector const& catalogs) const {
197 CoaddBoundedFieldPersistenceKeys1 const& keys1 = CoaddBoundedFieldPersistenceKeys1::get();
198 CoaddBoundedFieldPersistenceKeys2 const& keys2 = CoaddBoundedFieldPersistenceKeys2::get();
199 LSST_ARCHIVE_ASSERT(catalogs.size() == 2u);
200 LSST_ARCHIVE_ASSERT(catalogs.front().getSchema() == keys1.schema);
201 LSST_ARCHIVE_ASSERT(catalogs.back().getSchema() == keys2.schema);
202 afw::table::BaseRecord const& record1 = catalogs.front().front();
203 ElementVector elements;
204 elements.reserve(catalogs.back().size());
205 for (afw::table::BaseCatalog::const_iterator i = catalogs.back().begin(); i != catalogs.back().end();
206 ++i) {
207 elements.push_back(Element(archive.get<afw::math::BoundedField>(i->get(keys2.field)),
208 archive.get<afw::geom::SkyWcs>(i->get(keys2.wcs)),
209 archive.get<afw::geom::polygon::Polygon>(i->get(keys2.validPolygon)),
210 i->get(keys2.weight)));
211 }
213 geom::Box2I(record1.get(keys1.bboxMin), record1.get(keys1.bboxMax)),
214 archive.get<afw::geom::SkyWcs>(record1.get(keys1.coaddWcs)), elements,
215 record1.get(keys1.default_));
216 }
217
218 Factory(std::string const& name) : afw::table::io::PersistableFactory(name) {}
219};
220
221namespace {
222
223std::string getCoaddBoundedFieldPersistenceName() { return "CoaddBoundedField"; }
224
225CoaddBoundedField::Factory registration(getCoaddBoundedFieldPersistenceName());
226
227} // namespace
228
229std::string CoaddBoundedField::getPersistenceName() const { return getCoaddBoundedFieldPersistenceName(); }
230
231std::string CoaddBoundedField::getPythonModule() const { return "lsst.meas.algorithms"; }
232
234 CoaddBoundedFieldPersistenceKeys1 const& keys1 = CoaddBoundedFieldPersistenceKeys1::get();
235 CoaddBoundedFieldPersistenceKeys2 const& keys2 = CoaddBoundedFieldPersistenceKeys2::get();
236 afw::table::BaseCatalog cat1 = handle.makeCatalog(keys1.schema);
238 record1->set(keys1.bboxMin, getBBox().getMin());
239 record1->set(keys1.bboxMax, getBBox().getMax());
240 record1->set(keys1.coaddWcs, handle.put(_coaddWcs));
241 record1->set(keys1.default_, _default);
242 handle.saveCatalog(cat1);
243 afw::table::BaseCatalog cat2 = handle.makeCatalog(keys2.schema);
244 for (ElementVector::const_iterator i = _elements.begin(); i != _elements.end(); ++i) {
246 record2->set(keys2.field, handle.put(i->field));
247 record2->set(keys2.wcs, handle.put(i->wcs));
248 record2->set(keys2.validPolygon, handle.put(i->validPolygon));
249 record2->set(keys2.weight, i->weight);
250 }
251 handle.saveCatalog(cat2);
252}
253
255 throw LSST_EXCEPT(pex::exceptions::NotFoundError, "Scaling of CoaddBoundedField is not implemented");
256}
257
259 auto rhsCasted = dynamic_cast<CoaddBoundedField const*>(&rhs);
260 if (!rhsCasted) return false;
261
262 return (getBBox() == rhsCasted->getBBox()) && (_default == rhsCasted->_default) &&
263 ptrEquals(_coaddWcs, rhsCasted->_coaddWcs) && (_elements == rhsCasted->_elements);
264}
265
266} // namespace algorithms
267} // namespace meas
268} // namespace lsst
#define LSST_EXCEPT(type,...)
Create an exception with a given type.
Definition Exception.h:48
#define LSST_ARCHIVE_ASSERT(EXPR)
An assertion macro used to validate the structure of an InputArchive.
Definition Persistable.h:48
A 2-dimensional celestial WCS that transform pixels to ICRS RA/Dec, using the LSST standard for pixel...
Definition SkyWcs.h:118
Cartesian polygons.
Definition Polygon.h:59
An abstract base class for 2-d functions defined on an integer bounding boxes.
lsst::geom::Box2I getBBox() const
Return the bounding box that defines the region where the field is valid.
BoundedField(BoundedField const &)=default
Base class for all records.
Definition BaseRecord.h:31
Field< T >::Value get(Key< T > const &key) const
Return the value of a field for the given key.
Definition BaseRecord.h:151
std::shared_ptr< RecordT > addNew()
Create a new record, add it to the end of the catalog, and return a pointer to it.
Definition Catalog.h:490
CatalogIterator< typename Internal::const_iterator > const_iterator
Definition Catalog.h:111
A class used as a handle to a particular field in a table.
Definition Key.h:53
A FunctorKey used to get or set a lsst::geom::Point from an (x,y) pair of int or double Keys.
Definition aggregates.h:51
Defines the fields and offsets for a table.
Definition Schema.h:51
std::shared_ptr< Persistable > get(int id) const
Load the Persistable with the given ID and return it.
void saveCatalog(BaseCatalog const &catalog)
Save a catalog in the archive.
BaseCatalog makeCatalog(Schema const &schema)
Return a new, empty catalog with the given schema.
int put(Persistable const *obj, bool permissive=false)
Save an object to the archive and return a unique ID that can be used to retrieve it from an InputArc...
static std::shared_ptr< T > dynamicCast(std::shared_ptr< Persistable > const &ptr)
Dynamically cast a shared_ptr.
A base class for factory classes used to reconstruct objects from records.
PersistableFactory(std::string const &name)
Constructor for the factory.
io::OutputArchiveHandle OutputArchiveHandle
A floating-point coordinate rectangle geometry.
Definition Box.h:413
bool contains(Point2D const &point) const noexcept
Return true if the box contains the point.
Definition Box.cc:322
An integer coordinate rectangle.
Definition Box.h:55
virtual std::shared_ptr< afw::table::io::Persistable > read(InputArchive const &archive, CatalogVector const &catalogs) const
Construct a new object from the given InputArchive and vector of catalogs.
CoaddBoundedField(geom::Box2I const &bbox, std::shared_ptr< afw::geom::SkyWcs const > coaddWcs, ElementVector const &elements)
void write(OutputArchiveHandle &handle) const override
Write the object to one or more catalogs.
std::shared_ptr< afw::math::BoundedField > operator*(double const scale) const override
Return a scaled BoundedField.
std::string getPythonModule() const override
Return the fully-qualified Python module that should be imported to guarantee that its factory is reg...
double evaluate(geom::Point2D const &position) const override
Evaluate the field at the given point.
bool operator==(BoundedField const &rhs) const override
BoundedFields (of the same sublcass) are equal if their bounding boxes and parameters are equal.
std::string getPersistenceName() const override
Return the unique name used to persist this object and look up its factory.
Reports arguments outside the domain of an operation.
Definition Runtime.h:57
Reports attempts to access elements using an invalid key.
Definition Runtime.h:151
T make_shared(T... args)
CatalogT< BaseRecord > BaseCatalog
Definition fwd.h:72
Point< double, 2 > Point2D
Definition Point.h:324
T push_back(T... args)
T reserve(T... args)
std::shared_ptr< afw::geom::SkyWcs const > wcs
std::shared_ptr< afw::math::BoundedField > field
std::shared_ptr< afw::geom::polygon::Polygon const > validPolygon
CoaddBoundedFieldElement(std::shared_ptr< afw::math::BoundedField > field_, std::shared_ptr< afw::geom::SkyWcs const > wcs_, std::shared_ptr< afw::geom::polygon::Polygon const > validPolygon_, double weight_=1.0)
bool operator==(CoaddBoundedFieldElement const &rhs) const
Elements are equal if all their components are equal.