LSST Applications g070148d5b3+33e5256705,g0d53e28543+25c8b88941,g0da5cf3356+2dd1178308,g1081da9e2a+62d12e78cb,g17e5ecfddb+7e422d6136,g1c76d35bf8+ede3a706f7,g295839609d+225697d880,g2e2c1a68ba+cc1f6f037e,g2ffcdf413f+853cd4dcde,g38293774b4+62d12e78cb,g3b44f30a73+d953f1ac34,g48ccf36440+885b902d19,g4b2f1765b6+7dedbde6d2,g5320a0a9f6+0c5d6105b6,g56b687f8c9+ede3a706f7,g5c4744a4d9+ef6ac23297,g5ffd174ac0+0c5d6105b6,g6075d09f38+66af417445,g667d525e37+2ced63db88,g670421136f+2ced63db88,g71f27ac40c+2ced63db88,g774830318a+463cbe8d1f,g7876bc68e5+1d137996f1,g7985c39107+62d12e78cb,g7fdac2220c+0fd8241c05,g96f01af41f+368e6903a7,g9ca82378b8+2ced63db88,g9d27549199+ef6ac23297,gabe93b2c52+e3573e3735,gb065e2a02a+3dfbe639da,gbc3249ced9+0c5d6105b6,gbec6a3398f+0c5d6105b6,gc9534b9d65+35b9f25267,gd01420fc67+0c5d6105b6,geee7ff78d7+a14128c129,gf63283c776+ede3a706f7,gfed783d017+0c5d6105b6,w.2022.47
LSST Data Management Base Package
Loading...
Searching...
No Matches
Exposure.h
Go to the documentation of this file.
1// -*- lsst-c++ -*-
2/*
3 * LSST Data Management System
4 * Copyright 2008, 2009, 2010, 2011 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#ifndef AFW_TABLE_Exposure_h_INCLUDED
24#define AFW_TABLE_Exposure_h_INCLUDED
25
26#include "lsst/geom/Box.h"
35
36namespace lsst {
37namespace afw {
38
39namespace image {
40class PhotoCalib;
41class ApCorrMap;
42class VisitInfo;
43class TransmissionCurve;
44} // namespace image
45
46namespace detection {
47class Psf;
48} // namespace detection
49
50namespace geom {
51class SkyWcs;
52namespace polygon {
53class Polygon;
54}
55} // namespace geom
56
57namespace cameraGeom {
58class Detector;
59} // namespace cameraGeom
60
61namespace table {
62
63class ExposureRecord;
64class ExposureTable;
65
66template <typename RecordT>
67class ExposureCatalogT;
68
69namespace io {
70
71class OutputArchiveHandle;
72class InputArchive;
73
74} // namespace io
75
79class ExposureRecord : public BaseRecord {
80public:
85
96 BaseRecord(token, std::move(data))
97 {}
98
100 return std::static_pointer_cast<ExposureTable const>(BaseRecord::getTable());
101 }
102
103 RecordId getId() const;
104 void setId(RecordId id);
105
107 void setBBox(lsst::geom::Box2I const& bbox);
108
119 bool contains(lsst::geom::SpherePoint const& coord, bool includeValidPolygon = false) const;
120
131 bool contains(lsst::geom::Point2D const& point, geom::SkyWcs const& wcs,
132 bool includeValidPolygon = false) const;
133
135
138
141
144
147
149 void setValidPolygon(std::shared_ptr<geom::polygon::Polygon const> polygon) { _validPolygon = polygon; }
150
153
155 return _transmissionCurve;
156 }
158 _transmissionCurve = std::move(transmissionCurve);
159 }
160
163 _detector = std::move(detector);
164 }
166
171 ~ExposureRecord() override;
172
173protected:
174
175 void _assign(BaseRecord const& other) override;
176
177private:
178 friend class ExposureTable;
179
188};
189
195class ExposureTable : public BaseTable {
196public:
201
208
217 Schema r = getMinimalSchema().schema;
219 return r;
220 }
221
228 static bool checkSchema(Schema const& other) { return other.contains(getMinimalSchema().schema); }
229
231
237 static Key<RecordId> getIdKey() { return getMinimalSchema().id; }
239 static PointKey<int> getBBoxMinKey() { return getMinimalSchema().bbox.getMin(); }
241 static PointKey<int> getBBoxMaxKey() { return getMinimalSchema().bbox.getMax(); }
243 static Box2IKey getBBoxKey() { return getMinimalSchema().bbox; }
245
247 std::shared_ptr<ExposureTable> clone() const { return std::static_pointer_cast<ExposureTable>(_clone()); }
248
251 return std::static_pointer_cast<ExposureRecord>(_makeRecord());
252 }
253
256 return std::static_pointer_cast<ExposureRecord>(BaseTable::copyRecord(other));
257 }
258
261 return std::static_pointer_cast<ExposureRecord>(BaseTable::copyRecord(other, mapper));
262 }
263
266 ~ExposureTable() override;
267
268protected:
269 explicit ExposureTable(Schema const& schema);
270
273
274 std::shared_ptr<BaseTable> _clone() const override;
275
277
278private:
279 // Struct that holds the minimal schema and the special keys we've added to it.
280 struct MinimalSchema {
284
285 MinimalSchema();
286 };
287
288 // Return the singleton minimal schema.
289 static MinimalSchema& getMinimalSchema();
290
291 friend class io::FitsWriter;
292
293 template <typename RecordT>
294 friend class ExposureCatalogT;
295
296 // Return a writer object that knows how to save in FITS format. See also FitsWriter.
297 std::shared_ptr<io::FitsWriter> makeFitsWriter(fits::Fits* fitsfile, int flags) const override;
298
299 std::shared_ptr<io::FitsWriter> makeFitsWriter(fits::Fits* fitsfile,
301 int flags) const;
302};
303
310template <typename RecordT>
311class ExposureCatalogT : public SortedCatalogT<RecordT> {
313
314public:
315 using Record = RecordT;
316 using Table = typename Record::Table;
317
318 using iterator = typename Base::iterator;
320
328
330 explicit ExposureCatalogT(Schema const& schema) : Base(schema) {}
331
342 template <typename InputIterator>
343 ExposureCatalogT(std::shared_ptr<Table> const& table, InputIterator first, InputIterator last,
344 bool deep = false)
345 : Base(table, first, last, deep) {}
346
353 template <typename OtherRecordT>
355
360 ~ExposureCatalogT() = default;
361
362 using Base::writeFits;
363
371 void writeFits(fits::Fits& fitsfile, std::shared_ptr<io::OutputArchive> archive, int flags = 0) const {
372 std::shared_ptr<io::FitsWriter> writer = this->getTable()->makeFitsWriter(&fitsfile, archive, flags);
373 writer->write(*this);
374 }
375
386 static ExposureCatalogT readFits(std::string const& filename, int hdu = fits::DEFAULT_HDU,
387 int flags = 0) {
388 return io::FitsReader::apply<ExposureCatalogT>(filename, hdu, flags);
389 }
390
402 int flags = 0) {
403 return io::FitsReader::apply<ExposureCatalogT>(manager, hdu, flags);
404 }
405
413 static ExposureCatalogT readFits(fits::Fits& fitsfile, int flags = 0) {
414 return io::FitsReader::apply<ExposureCatalogT>(fitsfile, flags);
415 }
416
424 int flags = 0) {
425 return io::FitsReader::apply<ExposureCatalogT>(fitsfile, flags, archive);
426 }
427
435 void writeToArchive(io::OutputArchiveHandle& handle, bool ignoreUnpersistable = true) const;
436
443 static ExposureCatalogT readFromArchive(io::InputArchive const& archive, BaseCatalog const& catalog);
444
450 ExposureCatalogT<RecordT> subset(ndarray::Array<bool const, 1> const& mask) const {
452 }
453
459 return ExposureCatalogT(Base::subset(startd, stopd, step));
460 }
461
471 bool includeValidPolygon = false) const;
472
481 ExposureCatalogT subsetContaining(lsst::geom::Point2D const& point, geom::SkyWcs const& wcs,
482 bool includeValidPolygon = false) const;
483
484protected:
485 explicit ExposureCatalogT(Base const& other) : Base(other) {}
486};
487
491
494} // namespace table
495} // namespace afw
496} // namespace lsst
497
498#endif // !AFW_TABLE_Exposure_h_INCLUDED
AmpInfoBoxKey bbox
Definition: Amplifier.cc:117
char * data
Definition: BaseRecord.cc:61
int const step
table::Key< int > id
Definition: Detector.cc:162
table::Key< int > detector
afw::table::Key< afw::table::Array< MaskPixelT > > mask
SchemaMapper * mapper
Definition: SchemaMapper.cc:71
table::Key< table::Array< std::uint8_t > > wcs
Definition: SkyWcs.cc:66
table::Schema schema
Definition: python.h:134
A simple struct that combines the two arguments that must be passed to most cfitsio routines and cont...
Definition: fits.h:308
Lifetime-management for memory that goes into FITS memory files.
Definition: fits.h:125
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< BaseTable const > getTable() const
Return the table this record is associated with.
Definition: BaseRecord.h:83
Base class for all tables.
Definition: BaseTable.h:61
std::shared_ptr< BaseRecord > copyRecord(BaseRecord const &input)
Deep-copy a record, requiring that it have the same schema as this table.
Definition: BaseTable.cc:128
std::shared_ptr< Table > getTable() const
Return the table associated with the catalog.
Definition: Catalog.h:115
void writeFits(std::string const &filename, std::string const &mode="w", int flags=0) const
Write a FITS binary table to a regular file.
Definition: Catalog.h:311
Custom catalog class for ExposureRecord/Table.
Definition: Exposure.h:311
ExposureCatalogT & operator=(ExposureCatalogT &&)=default
ExposureCatalogT(ExposureCatalogT &&)=default
static ExposureCatalogT readFits(std::string const &filename, int hdu=fits::DEFAULT_HDU, int flags=0)
Read a FITS binary table from a regular file.
Definition: Exposure.h:386
static ExposureCatalogT readFits(fits::MemFileManager &manager, int hdu=fits::DEFAULT_HDU, int flags=0)
Read a FITS binary table from a RAM file.
Definition: Exposure.h:401
ExposureCatalogT(Base const &other)
Definition: Exposure.h:485
ExposureCatalogT(ExposureCatalogT const &)=default
ExposureCatalogT(std::shared_ptr< Table > const &table, InputIterator first, InputIterator last, bool deep=false)
Construct a vector from a table and an iterator range.
Definition: Exposure.h:343
typename Base::const_iterator const_iterator
Definition: Exposure.h:319
typename Record::Table Table
Definition: Exposure.h:316
static ExposureCatalogT readFromArchive(io::InputArchive const &archive, BaseCatalog const &catalog)
Convenience input function for Persistables that contain an ExposureCatalog.
Definition: Exposure.cc:456
void writeToArchive(io::OutputArchiveHandle &handle, bool ignoreUnpersistable=true) const
Convenience output function for Persistables that contain an ExposureCatalog.
Definition: Exposure.cc:444
static ExposureCatalogT readFits(fits::Fits &fitsfile, int flags=0)
Read a FITS binary table from a file object already at the correct extension.
Definition: Exposure.h:413
ExposureCatalogT & operator=(ExposureCatalogT const &)=default
ExposureCatalogT(Schema const &schema)
Construct a vector from a schema, creating a table with Table::make(schema).
Definition: Exposure.h:330
static ExposureCatalogT readFits(fits::Fits &fitsfile, std::shared_ptr< io::InputArchive > archive, int flags=0)
Read a FITS binary table from a file object already at the correct extension.
Definition: Exposure.h:423
void writeFits(fits::Fits &fitsfile, std::shared_ptr< io::OutputArchive > archive, int flags=0) const
Write a FITS binary table to an open file object.
Definition: Exposure.h:371
typename Base::iterator iterator
Definition: Exposure.h:318
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
ExposureCatalogT< RecordT > subset(ndarray::Array< bool const, 1 > const &mask) const
Return the subset of a catalog corresponding to the True values of the given mask array.
Definition: Exposure.h:450
ExposureCatalogT subset(std::ptrdiff_t startd, std::ptrdiff_t stopd, std::ptrdiff_t step) const
Shallow copy a subset of another ExposureCatalog.
Definition: Exposure.h:458
ExposureCatalogT(std::shared_ptr< Table > const &table=std::shared_ptr< Table >())
Construct a vector from a table (or nothing).
Definition: Exposure.h:327
ExposureCatalogT(ExposureCatalogT< OtherRecordT > const &other)
Shallow copy constructor from a container containing a related record type.
Definition: Exposure.h:354
Record class used to store exposure metadata.
Definition: Exposure.h:79
bool contains(lsst::geom::SpherePoint const &coord, bool includeValidPolygon=false) const
Return true if the bounding box contains the given celestial coordinate point, taking into account th...
Definition: Exposure.cc:349
std::shared_ptr< image::PhotoCalib const > getPhotoCalib() const
Definition: Exposure.h:142
std::shared_ptr< detection::Psf const > getPsf() const
Definition: Exposure.h:139
void setVisitInfo(std::shared_ptr< image::VisitInfo const > visitInfo)
Definition: Exposure.h:152
std::shared_ptr< image::VisitInfo const > getVisitInfo() const
Definition: Exposure.h:151
lsst::geom::Box2I getBBox() const
Definition: Exposure.cc:343
std::shared_ptr< image::TransmissionCurve const > getTransmissionCurve() const
Definition: Exposure.h:154
std::shared_ptr< geom::polygon::Polygon const > getValidPolygon() const
Definition: Exposure.h:148
void setTransmissionCurve(std::shared_ptr< image::TransmissionCurve const > transmissionCurve)
Definition: Exposure.h:157
std::shared_ptr< geom::SkyWcs const > getWcs() const
Get/Set the the attached Wcs, Psf, PhotoCalib, or ApCorrMap. No copies are made.
Definition: Exposure.h:136
ExposureRecord(ExposureRecord &&)=delete
void setValidPolygon(std::shared_ptr< geom::polygon::Polygon const > polygon)
Definition: Exposure.h:149
ExposureRecord(ConstructionToken const &token, detail::RecordData &&data)
Constructor used by ExposureTable.
Definition: Exposure.h:95
void setApCorrMap(std::shared_ptr< image::ApCorrMap const > apCorrMap)
Definition: Exposure.h:146
void setWcs(std::shared_ptr< geom::SkyWcs const > wcs)
Definition: Exposure.h:137
ExposureRecord(ExposureRecord const &)=delete
ExposureRecord & operator=(ExposureRecord &&)=delete
void setBBox(lsst::geom::Box2I const &bbox)
Definition: Exposure.cc:347
std::shared_ptr< ExposureTable const > getTable() const
Definition: Exposure.h:99
void setPsf(std::shared_ptr< detection::Psf const > psf)
Definition: Exposure.h:140
ExposureRecord & operator=(ExposureRecord const &)=delete
std::shared_ptr< cameraGeom::Detector const > getDetector() const
Definition: Exposure.h:161
void _assign(BaseRecord const &other) override
Called by assign() after transferring fields to allow subclass data members to be copied.
Definition: Exposure.cc:379
void setPhotoCalib(std::shared_ptr< image::PhotoCalib const > photoCalib)
Definition: Exposure.h:143
std::shared_ptr< image::ApCorrMap const > getApCorrMap() const
Definition: Exposure.h:145
void setDetector(std::shared_ptr< cameraGeom::Detector const > detector)
Definition: Exposure.h:162
Table class used to store exposure metadata.
Definition: Exposure.h:195
std::shared_ptr< ExposureRecord > makeRecord()
Default-construct an associated record.
Definition: Exposure.h:250
static PointKey< int > getBBoxMinKey()
Key for the minimum point of the bbox.
Definition: Exposure.h:239
std::shared_ptr< ExposureRecord > copyRecord(BaseRecord const &other)
Deep-copy a record, requiring that it have the same schema as this table.
Definition: Exposure.h:255
std::shared_ptr< BaseRecord > _makeRecord() override
Default-construct an associated record (protected implementation).
Definition: Exposure.cc:435
std::shared_ptr< ExposureTable > clone() const
Return a polymorphic deep copy of the table.
Definition: Exposure.h:247
static Box2IKey getBBoxKey()
Key for the full bbox.
Definition: Exposure.h:243
static Key< RecordId > getIdKey()
Get keys for standard fields shared by all references.
Definition: Exposure.h:237
ExposureTable & operator=(ExposureTable &&)=delete
static bool checkSchema(Schema const &other)
Return true if the given schema is a valid ExposureTable schema.
Definition: Exposure.h:228
static Schema makeMinimalSchema()
Return a minimal schema for Exposure tables and records.
Definition: Exposure.h:216
static PointKey< int > getBBoxMaxKey()
Key for the maximum point of the bbox.
Definition: Exposure.h:241
std::shared_ptr< BaseTable > _clone() const override
Clone implementation with noncovariant return types.
Definition: Exposure.cc:431
ExposureTable(ExposureTable const &other)
std::shared_ptr< ExposureRecord > copyRecord(BaseRecord const &other, SchemaMapper const &mapper)
Deep-copy a record, requiring that it have the same schema as this table.
Definition: Exposure.h:260
static std::shared_ptr< ExposureTable > make(Schema const &schema)
Construct a new table.
Definition: Exposure.cc:394
ExposureTable & operator=(ExposureTable const &)=delete
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:49
Defines the fields and offsets for a table.
Definition: Schema.h:51
void disconnectAliases()
Sever the connection between this schema and any others with which it shares aliases.
Definition: Schema.cc:540
int contains(Schema const &other, int flags=EQUAL_KEYS) const
Test whether the given schema is a subset of this.
Definition: Schema.cc:490
A mapping between the keys of two Schemas, used to copy data between them.
Definition: SchemaMapper.h:21
Custom catalog class for record/table subclasses that are guaranteed to have an ID,...
Definition: SortedCatalog.h:42
typename Base::const_iterator const_iterator
Definition: SortedCatalog.h:50
typename Base::iterator iterator
Definition: SortedCatalog.h:49
SortedCatalogT< RecordT > subset(ndarray::Array< bool const, 1 > const &mask) const
Return the subset of a catalog corresponding to the True values of the given mask array.
Writer object for FITS binary tables.
Definition: FitsWriter.h:25
A multi-catalog archive object used to load table::io::Persistable objects.
Definition: InputArchive.h:31
An object passed to Persistable::write to allow it to persist itself.
An integer coordinate rectangle.
Definition: Box.h:55
Point in an unspecified spherical coordinate system.
Definition: SpherePoint.h:57
daf::base::PropertySet * set
Definition: fits.cc:927
T move(T... args)
const int DEFAULT_HDU
Specify that the default HDU should be read.
Definition: fitsDefaults.h:18
STL namespace.
Helper struct that contains the information passed from BaseTable to BaseRecord at construction.
Definition: BaseTable.h:32
Key< int > psf
Definition: Exposure.cc:65
Key< int > visitInfo
Definition: Exposure.cc:70
Key< int > photoCalib
Definition: Exposure.cc:67
Key< int > transmissionCurve
Definition: Exposure.cc:71
Key< int > apCorrMap
Definition: Exposure.cc:68