LSSTApplications  18.0.0+106,18.0.0+50,19.0.0,19.0.0+1,19.0.0+10,19.0.0+11,19.0.0+13,19.0.0+17,19.0.0+2,19.0.0-1-g20d9b18+6,19.0.0-1-g425ff20,19.0.0-1-g5549ca4,19.0.0-1-g580fafe+6,19.0.0-1-g6fe20d0+1,19.0.0-1-g7011481+9,19.0.0-1-g8c57eb9+6,19.0.0-1-gb5175dc+11,19.0.0-1-gdc0e4a7+9,19.0.0-1-ge272bc4+6,19.0.0-1-ge3aa853,19.0.0-10-g448f008b,19.0.0-12-g6990b2c,19.0.0-2-g0d9f9cd+11,19.0.0-2-g3d9e4fb2+11,19.0.0-2-g5037de4,19.0.0-2-gb96a1c4+3,19.0.0-2-gd955cfd+15,19.0.0-3-g2d13df8,19.0.0-3-g6f3c7dc,19.0.0-4-g725f80e+11,19.0.0-4-ga671dab3b+1,19.0.0-4-gad373c5+3,19.0.0-5-ga2acb9c+2,19.0.0-5-gfe96e6c+2,w.2020.01
LSSTDataManagementBasePackage
CoaddPsf.cc
Go to the documentation of this file.
1 // -*- LSST-C++ -*-
2 
3 /*
4  * LSST Data Management System
5  * Copyright 2008, 2009, 2010 LSST Corporation.
6  *
7  * This product includes software developed by the
8  * LSST Project (http://www.lsst.org/).
9  *
10  * This program is free software: you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation, either version 3 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the LSST License Statement and
21  * the GNU General Public License along with this program. If not,
22  * see <http://www.lsstcorp.org/LegalNotices/>.
23  */
24 
25 /*
26  * Represent a PSF as for a Coadd based on the James Jee stacking
27  * algorithm which was extracted from Stackfit.
28  */
29 #include <cmath>
30 #include <sstream>
31 #include <iostream>
32 #include <numeric>
33 #include "boost/iterator/iterator_adaptor.hpp"
34 #include "boost/iterator/transform_iterator.hpp"
35 #include "ndarray/eigen.h"
36 #include "lsst/base.h"
37 #include "lsst/pex/exceptions.h"
38 #include "lsst/geom/Box.h"
47 
48 namespace lsst {
49 namespace afw {
50 namespace table {
51 namespace io {
52 
55 
56 } // namespace io
57 } // namespace table
58 } // namespace afw
59 namespace meas {
60 namespace algorithms {
61 
62 namespace {
63 
64 // Struct used to simplify calculations in computeAveragePosition; lets us use
65 // std::accumulate instead of explicit for loop.
66 struct AvgPosItem {
67  double wx; // weighted x position
68  double wy; // weighted y position
69  double w; // weight value
70 
71  explicit AvgPosItem(double wx_ = 0.0, double wy_ = 0.0, double w_ = 0.0) : wx(wx_), wy(wy_), w(w_) {}
72 
73  // return point, assuming this is a sum of many AvgPosItems
74  geom::Point2D getPoint() const { return geom::Point2D(wx / w, wy / w); }
75 
76  // comparison so we can sort by weights
77  bool operator<(AvgPosItem const &other) const { return w < other.w; }
78 
79  AvgPosItem &operator+=(AvgPosItem const &other) {
80  wx += other.wx;
81  wy += other.wy;
82  w += other.w;
83  return *this;
84  }
85 
86  AvgPosItem &operator-=(AvgPosItem const &other) {
87  wx -= other.wx;
88  wy -= other.wy;
89  w -= other.w;
90  return *this;
91  }
92 
93  friend AvgPosItem operator+(AvgPosItem a, AvgPosItem const &b) { return a += b; }
94 
95  friend AvgPosItem operator-(AvgPosItem a, AvgPosItem const &b) { return a -= b; }
96 };
97 
98 geom::Point2D computeAveragePosition(afw::table::ExposureCatalog const &catalog,
99  afw::geom::SkyWcs const &coaddWcs, afw::table::Key<double> weightKey) {
100  afw::table::Key<int> goodPixKey;
101  try {
102  goodPixKey = catalog.getSchema()["goodpix"];
103  } catch (pex::exceptions::NotFoundError &) {
104  }
106  items.reserve(catalog.size());
107  for (afw::table::ExposureCatalog::const_iterator i = catalog.begin(); i != catalog.end(); ++i) {
108  geom::Point2D p = coaddWcs.skyToPixel(i->getWcs()->pixelToSky(i->getPsf()->getAveragePosition()));
109  AvgPosItem item(p.getX(), p.getY(), i->get(weightKey));
110  if (goodPixKey.isValid()) {
111  item.w *= i->get(goodPixKey);
112  }
113  item.wx *= item.w;
114  item.wy *= item.w;
115  items.push_back(item);
116  }
117  // This is a bit pessimistic - we save and sort all the weights all the time,
118  // even though we'll only need them if the average position from all of them
119  // is invalid. But it makes for simpler code, and it's not that expensive
120  // computationally anyhow.
121  std::sort(items.begin(), items.end());
122  AvgPosItem result = std::accumulate(items.begin(), items.end(), AvgPosItem());
123  // If the position isn't valid (no input frames contain it), we remove frames
124  // from the average until it does.
126  catalog.subsetContaining(result.getPoint(), coaddWcs, true).empty(); ++iter) {
127  if (iter == items.end()) {
128  // This should only happen if there are no inputs at all,
129  // or if constituent Psfs have a badly-behaved implementation
130  // of getAveragePosition().
131  throw LSST_EXCEPT(pex::exceptions::RuntimeError,
132  "Could not find a valid average position for CoaddPsf");
133  }
134  result -= *iter;
135  }
136  return result.getPoint();
137 }
138 
139 } // namespace
140 
141 CoaddPsf::CoaddPsf(afw::table::ExposureCatalog const &catalog, afw::geom::SkyWcs const &coaddWcs,
142  std::string const &weightFieldName, std::string const &warpingKernelName, int cacheSize)
143  : _coaddWcs(coaddWcs),
144  _warpingKernelName(warpingKernelName),
145  _warpingControl(std::make_shared<afw::math::WarpingControl>(warpingKernelName, "", cacheSize)) {
147  mapper.addMinimalSchema(afw::table::ExposureTable::makeMinimalSchema(), true);
148 
149  // copy the field "goodpix", if available, for computeAveragePosition to use
150  try {
151  afw::table::Key<int> goodPixKey = catalog.getSchema()["goodpix"]; // auto does not work
152  mapper.addMapping(goodPixKey, true);
153  } catch (pex::exceptions::NotFoundError &) {
154  }
155 
156  // copy the field specified by weightFieldName to field "weight"
157  afw::table::Field<double> weightField = afw::table::Field<double>("weight", "Coadd weight");
158  afw::table::Key<double> weightKey = catalog.getSchema()[weightFieldName];
159  _weightKey = mapper.addMapping(weightKey, weightField);
160 
161  _catalog = afw::table::ExposureCatalog(mapper.getOutputSchema());
162  for (afw::table::ExposureCatalog::const_iterator i = catalog.begin(); i != catalog.end(); ++i) {
163  PTR(afw::table::ExposureRecord) record = _catalog.getTable()->makeRecord();
164  record->assign(*i, mapper);
165  _catalog.push_back(record);
166  }
167  _averagePosition = computeAveragePosition(_catalog, _coaddWcs, _weightKey);
168 }
169 
170 PTR(afw::detection::Psf) CoaddPsf::clone() const { return std::make_shared<CoaddPsf>(*this); }
171 
172 PTR(afw::detection::Psf) CoaddPsf::resized(int width, int height) const {
173  // Not implemented for WarpedPsf
174  throw LSST_EXCEPT(pex::exceptions::LogicError, "Not Implemented");
175 }
176 
177 // Read all the images from the Image Vector and return the BBox in xy0 offset coordinates
178 
181  // Calculate the box which will contain them all
182  for (unsigned int i = 0; i < imgVector.size(); i++) {
183  PTR(afw::image::Image<double>) componentImg = imgVector[i];
184  geom::Box2I cBBox = componentImg->getBBox();
185  bbox.include(cBBox); // JFB: this works even on empty bboxes
186  }
187  return bbox;
188 }
189 
190 // Read all the images from the Image Vector and add them to image
191 
193  std::vector<PTR(afw::image::Image<double>)> const &imgVector,
194  std::vector<double> const &weightVector) {
195  assert(imgVector.size() == weightVector.size());
196  for (unsigned int i = 0; i < imgVector.size(); i++) {
197  PTR(afw::image::Image<double>) componentImg = imgVector[i];
198  double weight = weightVector[i];
199  double sum = ndarray::asEigenMatrix(componentImg->getArray()).sum();
200 
201  // Now get the portion of the component image which is appropriate to add
202  // If the default image size is used, the component is guaranteed to fit,
203  // but not if a size has been specified.
204  geom::Box2I cBBox = componentImg->getBBox();
205  geom::Box2I overlap(cBBox);
206  overlap.clip(image->getBBox());
207  // JFB: A subimage view of the image we want to add to, containing only the overlap region.
208  afw::image::Image<double> targetSubImage(*image, overlap);
209  // JFB: A subimage view of the image we want to add from, containing only the overlap region.
210  afw::image::Image<double> cSubImage(*componentImg, overlap);
211  targetSubImage.scaledPlus(weight / sum, cSubImage);
212  }
213 }
214 
216  afw::table::ExposureCatalog subcat = _catalog.subsetContaining(ccdXY, _coaddWcs, true);
217  if (subcat.empty()) {
218  throw LSST_EXCEPT(
220  (boost::format("Cannot compute BBox at point %s; no input images at that point.") % ccdXY)
221  .str());
222  }
223 
224  geom::Box2I ret;
225  for (auto const &exposureRecord : subcat) {
226  // compute transform from exposure pixels to coadd pixels
227  auto exposureToCoadd = afw::geom::makeWcsPairTransform(*exposureRecord.getWcs(), _coaddWcs);
228  WarpedPsf warpedPsf = WarpedPsf(exposureRecord.getPsf(), exposureToCoadd, _warpingControl);
229  geom::Box2I componentBBox = warpedPsf.computeBBox(ccdXY, color);
230  ret.include(componentBBox);
231  }
232 
233  return ret;
234 }
235 
237 CoaddPsf::doComputeKernelImage(geom::Point2D const &ccdXY, afw::image::Color const &color) const {
238  // Get the subset of expoures which contain our coordinate within their validPolygons.
239  afw::table::ExposureCatalog subcat = _catalog.subsetContaining(ccdXY, _coaddWcs, true);
240  if (subcat.empty()) {
241  throw LSST_EXCEPT(
243  (boost::format("Cannot compute CoaddPsf at point %s; no input images at that point.") % ccdXY)
244  .str());
245  }
246  double weightSum = 0.0;
247 
248  // Read all the Psf images into a vector. The code is set up so that this can be done in chunks,
249  // with the image modified to accomodate
250  // However, we currently read all of the images.
252  std::vector<double> weightVector;
253 
254  for (auto const &exposureRecord : subcat) {
255  // compute transform from exposure pixels to coadd pixels
256  auto exposureToCoadd = afw::geom::makeWcsPairTransform(*exposureRecord.getWcs(), _coaddWcs);
257  PTR(afw::image::Image<double>) componentImg;
258  try {
259  WarpedPsf warpedPsf = WarpedPsf(exposureRecord.getPsf(), exposureToCoadd, _warpingControl);
260  componentImg = warpedPsf.computeKernelImage(ccdXY, color);
261  } catch (pex::exceptions::RangeError &exc) {
262  LSST_EXCEPT_ADD(exc, (boost::format("Computing WarpedPsf kernel image for id=%d") %
263  exposureRecord.getId())
264  .str());
265  throw exc;
266  }
267  imgVector.push_back(componentImg);
268  weightSum += exposureRecord.get(_weightKey);
269  weightVector.push_back(exposureRecord.get(_weightKey));
270  }
271 
272  geom::Box2I bbox = getOverallBBox(imgVector);
273 
274  // create a zero image of the right size to sum into
275  PTR(afw::detection::Psf::Image) image = std::make_shared<afw::detection::Psf::Image>(bbox);
276  *image = 0.0;
277  addToImage(image, imgVector, weightVector);
278  *image /= weightSum;
279  return image;
280 }
281 
282 int CoaddPsf::getComponentCount() const { return _catalog.size(); }
283 
285  if (index < 0 || index >= getComponentCount()) {
286  throw LSST_EXCEPT(pex::exceptions::RangeError, "index of CoaddPsf component out of range");
287  }
288  return _catalog[index].getPsf();
289 }
290 
292  if (index < 0 || index >= getComponentCount()) {
293  throw LSST_EXCEPT(pex::exceptions::RangeError, "index of CoaddPsf component out of range");
294  }
295  return *_catalog[index].getWcs();
296 }
297 
299  if (index < 0 || index >= getComponentCount()) {
300  throw LSST_EXCEPT(pex::exceptions::RangeError, "index of CoaddPsf component out of range");
301  }
302  return _catalog[index].getValidPolygon();
303 }
304 
305 double CoaddPsf::getWeight(int index) {
306  if (index < 0 || index >= getComponentCount()) {
307  throw LSST_EXCEPT(pex::exceptions::RangeError, "index of CoaddPsf component out of range");
308  }
309  return _catalog[index].get(_weightKey);
310 }
311 
313  if (index < 0 || index >= getComponentCount()) {
314  throw LSST_EXCEPT(pex::exceptions::RangeError, "index of CoaddPsf component out of range");
315  }
316  return _catalog[index].getId();
317 }
318 
320  if (index < 0 || index >= getComponentCount()) {
321  throw LSST_EXCEPT(pex::exceptions::RangeError, "index of CoaddPsf component out of range");
322  }
323  return _catalog[index].getBBox();
324 }
325 
326 // ---------- Persistence -----------------------------------------------------------------------------------
327 
328 // For persistence of CoaddPsf, we have two catalogs: the first has just one record, and contains
329 // the archive ID of the coadd WCS, the size of the warping cache, the name of the warping kernel,
330 // and the average position. The latter is simply the ExposureCatalog.
331 
332 namespace {
333 
334 // Singleton class that manages the first persistence catalog's schema and keys
335 class CoaddPsfPersistenceHelper {
336 public:
337  afw::table::Schema schema;
338  afw::table::Key<int> coaddWcs;
339  afw::table::Key<int> cacheSize;
340  afw::table::PointKey<double> averagePosition;
341  afw::table::Key<std::string> warpingKernelName;
342 
343  static CoaddPsfPersistenceHelper const &get() {
344  static CoaddPsfPersistenceHelper const instance;
345  return instance;
346  }
347 
348 private:
349  CoaddPsfPersistenceHelper()
350  : schema(),
351  coaddWcs(schema.addField<int>("coaddwcs", "archive ID of the coadd's WCS")),
352  cacheSize(schema.addField<int>("cachesize", "size of the warping cache")),
354  schema, "avgpos", "PSF accessors default position", "pixel")),
356  schema.addField<std::string>("warpingkernelname", "warping kernel name", 32)) {}
357 };
358 
359 } // namespace
360 
362 public:
364  read(InputArchive const &archive, CatalogVector const &catalogs) const {
365  if (catalogs.size() == 1u) {
366  // Old CoaddPsfs were saved in only one catalog, because we didn't
367  // save the warping parameters and average position, and we could
368  // save the coadd Wcs in a special final record.
369  return readV0(archive, catalogs);
370  }
371  LSST_ARCHIVE_ASSERT(catalogs.size() == 2u);
372  CoaddPsfPersistenceHelper const &keys1 = CoaddPsfPersistenceHelper::get();
373  LSST_ARCHIVE_ASSERT(catalogs.front().getSchema() == keys1.schema);
374  afw::table::BaseRecord const &record1 = catalogs.front().front();
375  return PTR(CoaddPsf)(
376  new CoaddPsf(afw::table::ExposureCatalog::readFromArchive(archive, catalogs.back()),
377  *archive.get<afw::geom::SkyWcs>(record1.get(keys1.coaddWcs)),
378  record1.get(keys1.averagePosition), record1.get(keys1.warpingKernelName),
379  record1.get(keys1.cacheSize)));
380  }
381 
382  // Backwards compatibility for files saved before meas_algorithms commit
383  // 53e61fae (7/10/2013). Prior to that change, the warping configuration
384  // and the average position were not saved at all, making it impossible to
385  // reconstruct the average position exactly, but it's better to
386  // approximate than to fail completely.
388  CatalogVector const &catalogs) const {
389  auto internalCat = afw::table::ExposureCatalog::readFromArchive(archive, catalogs.front());
390  // Coadd WCS is stored in a special last record.
391  auto coaddWcs = internalCat.back().getWcs();
392  internalCat.pop_back();
393  // Attempt to reconstruct the average position. We can't do this
394  // exactly, since the catalog we saved isn't the same one that was
395  // used to compute the original average position.
396  afw::table::Key<double> weightKey;
397  try {
398  weightKey = internalCat.getSchema()["weight"];
399  } catch (pex::exceptions::NotFoundError &) {
400  }
401  auto averagePos = computeAveragePosition(internalCat, *coaddWcs, weightKey);
402  return std::shared_ptr<CoaddPsf>(new CoaddPsf(internalCat, *coaddWcs, averagePos));
403  }
404 
405  Factory(std::string const &name) : afw::table::io::PersistableFactory(name) {}
406 };
407 
408 namespace {
409 
410 std::string getCoaddPsfPersistenceName() { return "CoaddPsf"; }
411 
412 CoaddPsf::Factory registration(getCoaddPsfPersistenceName());
413 
414 } // namespace
415 
416 std::string CoaddPsf::getPersistenceName() const { return getCoaddPsfPersistenceName(); }
417 
418 std::string CoaddPsf::getPythonModule() const { return "lsst.meas.algorithms"; }
419 
421  CoaddPsfPersistenceHelper const &keys1 = CoaddPsfPersistenceHelper::get();
422  afw::table::BaseCatalog cat1 = handle.makeCatalog(keys1.schema);
423  PTR(afw::table::BaseRecord) record1 = cat1.addNew();
424  auto coaddWcsPtr = std::make_shared<afw::geom::SkyWcs>(_coaddWcs);
425  record1->set(keys1.coaddWcs, handle.put(coaddWcsPtr));
426  record1->set(keys1.cacheSize, _warpingControl->getCacheSize());
427  record1->set(keys1.averagePosition, _averagePosition);
428  record1->set(keys1.warpingKernelName, _warpingKernelName);
429  handle.saveCatalog(cat1);
430  _catalog.writeToArchive(handle, false);
431 }
432 
435  : _catalog(catalog),
436  _coaddWcs(coaddWcs),
437  _weightKey(_catalog.getSchema()["weight"]),
438  _averagePosition(averagePosition),
439  _warpingKernelName(warpingKernelName),
440  _warpingControl(new afw::math::WarpingControl(warpingKernelName, "", cacheSize)) {}
441 
442 } // namespace algorithms
443 } // namespace meas
444 } // namespace lsst
AmpInfoBoxKey bbox
Definition: Amplifier.cc:117
def format(config, name=None, writeSourceLine=True, prefix="", verbose=False)
Definition: history.py:174
void write(OutputArchiveHandle &handle) const override
Write the object to one or more catalogs.
Definition: CoaddPsf.cc:420
static std::shared_ptr< T > dynamicCast(std::shared_ptr< Persistable > const &ptr)
Dynamically cast a shared_ptr.
Definition: Persistable.cc:18
double wx
Definition: CoaddPsf.cc:67
A 2-dimensional celestial WCS that transform pixels to ICRS RA/Dec, using the LSST standard for pixel...
Definition: SkyWcs.h:117
#define CONST_PTR(...)
A shared pointer to a const object.
Definition: base.h:47
afw::table::Key< int > cacheSize
Definition: CoaddPsf.cc:339
Basic LSST definitions.
afw::table::Key< afw::table::Array< ImagePixelT > > image
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...
Image< LhsPixelT > & operator+=(Image< LhsPixelT > &lhs, Image< RhsPixelT > const &rhs)
Add lhs to Image rhs (i.e. pixel-by-pixel addition) where types are different.
Definition: Image.cc:671
An object passed to Persistable::write to allow it to persist itself.
double getWeight(int index)
Get the weight of the component image at index.
Definition: CoaddPsf.cc:305
T front(T... args)
afw::table::Key< std::string > warpingKernelName
Definition: CoaddPsf.cc:341
ExposureCatalogT subsetContaining(lsst::geom::SpherePoint const &coord, bool includeValidPolygon=false) const
Return a shallow subset of the catalog with only those records that contain the given point...
Definition: Exposure.cc:471
std::vector< SchemaItem< Flag > > * items
A mapping between the keys of two Schemas, used to copy data between them.
Definition: SchemaMapper.h:21
#define LSST_ARCHIVE_ASSERT(EXPR)
An assertion macro used to validate the structure of an InputArchive.
Definition: Persistable.h:48
A base class for factory classes used to reconstruct objects from records.
Definition: Persistable.h:228
table::Key< int > b
std::shared_ptr< Table > getTable() const
Return the table associated with the catalog.
Definition: Catalog.h:114
geom::Box2I getBBox(int index)
Get the bounding box (in component image Pixel coordinates) of the component image at index...
Definition: CoaddPsf.cc:319
std::shared_ptr< Image< PixelT > > operator+(Image< PixelT > const &img, ImageSlice< PixelT > const &slc)
Overload operator+()
Definition: ImageSlice.cc:69
boost::shared_ptr< afw::detection::Psf::Image > doComputeKernelImage(geom::Point2D const &ccdXY, afw::image::Color const &color) const override
These virtual member functions are private, not protected, because we only want derived classes to im...
Definition: CoaddPsf.cc:237
static PointKey addFields(Schema &schema, std::string const &name, std::string const &doc, std::string const &unit)
Add a pair of _x, _y fields to a Schema, and return a PointKey that points to them.
Definition: aggregates.cc:36
table::Key< int > a
static Schema makeMinimalSchema()
Return a minimal schema for Exposure tables and records.
Definition: Exposure.h:216
STL namespace.
T end(T... args)
boost::shared_ptr< afw::detection::Psf > clone() const override
Polymorphic deep copy. Usually unnecessary, as Psfs are immutable.
Definition: CoaddPsf.cc:170
Schema getSchema() const
Return the schema associated with the catalog&#39;s table.
Definition: Catalog.h:117
ItemVariant const * other
Definition: Schema.cc:56
SchemaMapper * mapper
Definition: SchemaMapper.cc:78
CoaddPsf(afw::table::ExposureCatalog const &catalog, afw::geom::SkyWcs const &coaddWcs, std::string const &weightFieldName="weight", std::string const &warpingKernelName="lanczos3", int cacheSize=10000)
Main constructors for CoaddPsf.
Definition: CoaddPsf.cc:141
Point< double, 2 > Point2D
Definition: Point.h:324
int getComponentCount() const
Return the number of component Psfs in this CoaddPsf.
Definition: CoaddPsf.cc:282
afw::table::RecordId getId(int index)
Get the exposure ID of the component image at index.
Definition: CoaddPsf.cc:312
Factory(std::string const &name)
Definition: CoaddPsf.cc:405
STL class.
A base class for objects that can be persisted via afw::table::io Archive classes.
Definition: Persistable.h:74
std::string getPersistenceName() const override
Return the unique name used to persist this object and look up its factory.
Definition: CoaddPsf.cc:416
boost::shared_ptr< afw::detection::Psf > resized(int width, int height) const override
Return a clone with specified kernel dimensions.
Definition: CoaddPsf.cc:172
Reports attempts to access elements using an invalid key.
Definition: Runtime.h:151
T push_back(T... args)
void push_back(Record const &r)
Add a copy of the given record to the end of the catalog.
Definition: Catalog.h:476
std::string getPythonModule() const override
Return the fully-qualified Python module that should be imported to guarantee that its factory is reg...
Definition: CoaddPsf.cc:418
A base class for image defects.
lsst::geom::Box2I getBBox(ImageOrigin origin=PARENT) const
Definition: ImageBase.h:482
iterator end()
Iterator access.
Definition: Catalog.h:397
CoaddPsf is the Psf derived to be used for non-PSF-matched Coadd images.
Definition: CoaddPsf.h:58
Iterator class for CatalogT.
Definition: Catalog.h:38
A description of a field in a table.
Definition: Field.h:24
std::shared_ptr< afw::table::io::Persistable > readV0(InputArchive const &archive, CatalogVector const &catalogs) const
Definition: CoaddPsf.cc:387
void scaledPlus(double const c, Image< PixelT > const &rhs)
Add Image c*rhs to lhs.
Definition: Image.cc:500
Reports errors in the logical structure of the program.
Definition: Runtime.h:46
bool empty() const
Return true if the catalog has no records.
Definition: Catalog.h:405
BaseCatalog makeCatalog(Schema const &schema)
Return a new, empty catalog with the given schema.
afw::table::PointKey< double > averagePosition
Definition: CoaddPsf.cc:340
std::shared_ptr< Image< PixelT > > operator-(Image< PixelT > const &img, ImageSlice< PixelT > const &slc)
Overload operator-()
Definition: ImageSlice.cc:89
double w
Definition: CoaddPsf.cc:69
double wy
Definition: CoaddPsf.cc:68
afw::table::Key< double > weight
std::shared_ptr< TransformPoint2ToPoint2 > makeWcsPairTransform(SkyWcs const &src, SkyWcs const &dst)
A Transform obtained by putting two SkyWcs objects "back to back".
Definition: SkyWcs.cc:151
T size(T... args)
afw::table::Key< int > coaddWcs
Definition: CoaddPsf.cc:338
#define LSST_EXCEPT(type,...)
Create an exception with a given type.
Definition: Exception.h:48
A vector of catalogs used by Persistable.
Definition: CatalogVector.h:29
STL class.
Base class for all records.
Definition: BaseRecord.h:31
Base::const_iterator const_iterator
Definition: Exposure.h:319
T begin(T... args)
void include(Point2I const &point)
Expand this to ensure that this->contains(point).
Definition: Box.cc:152
afw::geom::SkyWcs getWcs(int index)
Get the Wcs of the component image at index.
Definition: CoaddPsf.cc:291
geom::Box2I getOverallBBox(std::vector< boost::shared_ptr< afw::image::Image< double > >> const &imgVector)
Definition: CoaddPsf.cc:179
Image< LhsPixelT > & operator-=(Image< LhsPixelT > &lhs, Image< RhsPixelT > const &rhs)
Subtract lhs from Image rhs (i.e. pixel-by-pixel subtraction) where types are different.
Definition: Image.cc:677
static ExposureCatalogT readFromArchive(io::InputArchive const &archive, BaseCatalog const &catalog)
Convenience input function for Persistables that contain an ExposureCatalog.
Definition: Exposure.cc:456
void clip(Box2I const &other) noexcept
Shrink this to ensure that other.contains(*this).
Definition: Box.cc:189
Custom catalog class for ExposureRecord/Table.
Definition: Exposure.h:67
void writeToArchive(io::OutputArchiveHandle &handle, bool ignoreUnpersistable=true) const
Convenience output function for Persistables that contain an ExposureCatalog.
Definition: Exposure.cc:444
void addToImage(boost::shared_ptr< afw::image::Image< double > > image, std::vector< boost::shared_ptr< afw::image::Image< double > >> const &imgVector, std::vector< double > const &weightVector)
Definition: CoaddPsf.cc:192
std::shared_ptr< Image > computeKernelImage(lsst::geom::Point2D position=makeNullPoint(), image::Color color=image::Color(), ImageOwnerEnum owner=COPY) const
Return an Image of the PSF, in a form suitable for convolution.
Definition: Psf.cc:115
std::shared_ptr< RecordT > const get(size_type i) const
Return a pointer to the record at index i.
Definition: Catalog.h:459
Reports invalid arguments.
Definition: Runtime.h:66
geom::Box2I doComputeBBox(geom::Point2D const &position, afw::image::Color const &color) const override
These virtual member functions are private, not protected, because we only want derived classes to im...
Definition: CoaddPsf.cc:215
Record class used to store exposure metadata.
Definition: Exposure.h:79
size_type size() const
Return the number of elements in the catalog.
Definition: Catalog.h:408
Cartesian polygons.
Definition: Polygon.h:59
T sort(T... args)
void saveCatalog(BaseCatalog const &catalog)
Save a catalog in the archive.
ExposureCatalogT< ExposureRecord > ExposureCatalog
Definition: Exposure.h:489
Describe the colour of a source.
Definition: Color.h:26
A multi-catalog archive object used to load table::io::Persistable objects.
Definition: InputArchive.h:31
T accumulate(T... args)
Backwards-compatibility support for depersisting the old Calib (FluxMag0/FluxMag0Err) objects...
iterator begin()
Iterator access.
Definition: Catalog.h:396
A polymorphic base class for representing an image&#39;s Point Spread Function.
Definition: Psf.h:75
#define LSST_EXCEPT_ADD(e, m)
Add the current location and a message to an existing exception before rethrowing it...
Definition: Exception.h:54
An integer coordinate rectangle.
Definition: Box.h:55
A class to represent a 2-dimensional array of pixels.
Definition: Image.h:58
py::object result
Definition: _schema.cc:429
#define PTR(...)
Definition: base.h:41
Reports when the result of an operation cannot be represented by the destination type.
Definition: Runtime.h:115
afw::table::Schema schema
Definition: CoaddPsf.cc:337
A Psf class that maps an arbitrary Psf through a coordinate transformation.
Definition: WarpedPsf.h:50
boost::shared_ptr< afw::detection::Psf const > getPsf(int index)
Get the Psf of the component image at index.
Definition: CoaddPsf.cc:284
boost::shared_ptr< afw::geom::polygon::Polygon const > getValidPolygon(int index)
Get the validPolygon (in component image Pixel coordinates) of the component image at index...
Definition: CoaddPsf.cc:298
T reserve(T... args)
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:485