LSST Applications g0f08755f38+82efc23009,g12f32b3c4e+e7bdf1200e,g1653933729+a8ce1bb630,g1a0ca8cf93+50eff2b06f,g28da252d5a+52db39f6a5,g2bbee38e9b+37c5a29d61,g2bc492864f+37c5a29d61,g2cdde0e794+c05ff076ad,g3156d2b45e+41e33cbcdc,g347aa1857d+37c5a29d61,g35bb328faa+a8ce1bb630,g3a166c0a6a+37c5a29d61,g3e281a1b8c+fb992f5633,g414038480c+7f03dfc1b0,g41af890bb2+11b950c980,g5fbc88fb19+17cd334064,g6b1c1869cb+12dd639c9a,g781aacb6e4+a8ce1bb630,g80478fca09+72e9651da0,g82479be7b0+04c31367b4,g858d7b2824+82efc23009,g9125e01d80+a8ce1bb630,g9726552aa6+8047e3811d,ga5288a1d22+e532dc0a0b,gae0086650b+a8ce1bb630,gb58c049af0+d64f4d3760,gc28159a63d+37c5a29d61,gcf0d15dbbd+2acd6d4d48,gd7358e8bfb+778a810b6e,gda3e153d99+82efc23009,gda6a2b7d83+2acd6d4d48,gdaeeff99f8+1711a396fd,ge2409df99d+6b12de1076,ge79ae78c31+37c5a29d61,gf0baf85859+d0a5978c5a,gf3967379c6+4954f8c433,gfb92a5be7c+82efc23009,gfec2e1e490+2aaed99252,w.2024.46
LSST Data Management Base Package
Loading...
Searching...
No Matches
Simple.cc
Go to the documentation of this file.
1// -*- lsst-c++ -*-
2#include <typeinfo>
3
8
9namespace lsst {
10namespace afw {
11namespace table {
12
13//-----------------------------------------------------------------------------------------------------------
14//----- SimpleFitsWriter ---------------------------------------------------------------------------------
15//-----------------------------------------------------------------------------------------------------------
16
17// A custom FitsWriter for Simple - this just sets the AFW_TYPE key to SIMPLE, which should ensure
18// we use SimpleFitsReader to read it.
19
20namespace {
21
22class SimpleFitsWriter : public io::FitsWriter {
23public:
24 explicit SimpleFitsWriter(Fits* fits, int flags) : io::FitsWriter(fits, flags) {}
25
26protected:
27 void _writeTable(std::shared_ptr<BaseTable const> const& table, std::size_t nRows) override;
28};
29
30void SimpleFitsWriter::_writeTable(std::shared_ptr<BaseTable const> const& t, std::size_t nRows) {
31 std::shared_ptr<SimpleTable const> table = std::dynamic_pointer_cast<SimpleTable const>(t);
32 if (!table) {
34 "Cannot use a SimpleFitsWriter on a non-Simple table.");
35 }
36 io::FitsWriter::_writeTable(table, nRows);
37 _fits->writeKey("AFW_TYPE", "SIMPLE", "Tells lsst::afw to load this as a Simple table.");
38}
39
40} // namespace
41
42//-----------------------------------------------------------------------------------------------------------
43//----- SimpleFitsReader ---------------------------------------------------------------------------------
44//-----------------------------------------------------------------------------------------------------------
45
46// A custom FitsReader for SimpleTable/Record - this gets registered with name SIMPLE, so it should get used
47// whenever we read a table with AFW_TYPE set to that value.
48
49namespace {
50
51class SimpleFitsReader : public io::FitsReader {
52public:
53 SimpleFitsReader() : io::FitsReader("SIMPLE") {}
54
55 std::shared_ptr<BaseTable> makeTable(io::FitsSchemaInputMapper& mapper,
56 std::shared_ptr<daf::base::PropertyList> metadata, int ioFlags,
57 bool stripMetadata) const override {
58 std::shared_ptr<SimpleTable> table = SimpleTable::make(mapper.finalize());
59 table->setMetadata(metadata);
60 return table;
61 }
62};
63
64// registers the reader so FitsReader::make can use it.
65static SimpleFitsReader const simpleFitsReader;
66
67} // namespace
68
69//-----------------------------------------------------------------------------------------------------------
70//----- SimpleTable/Record member function implementations -----------------------------------------------
71//-----------------------------------------------------------------------------------------------------------
72
74
76 std::shared_ptr<IdFactory> const& idFactory) {
77 if (!checkSchema(schema)) {
79 "Schema for Simple must contain at least the keys defined by makeMinimalSchema().");
80 }
81 std::shared_ptr<SimpleTable> table(new SimpleTable(schema, idFactory));
82 table->getSchema().getAliasMap()->setTable(table);
83 return table;
84}
85
87 : BaseTable(schema, std::make_shared<daf::base::PropertyList>()), _idFactory(idFactory) {}
88
90 : BaseTable(other), _idFactory(other._idFactory ? other._idFactory->clone() : other._idFactory) {}
91
93
94SimpleTable::MinimalSchema::MinimalSchema() {
95 id = schema.addField<RecordId>("id", "unique ID");
96 coord = CoordKey::addFields(schema, "coord", "position in ra/dec");
97}
98
99SimpleTable::MinimalSchema& SimpleTable::getMinimalSchema() {
100 static MinimalSchema it;
101 return it;
102}
103
105 return std::make_shared<SimpleFitsWriter>(fitsfile, flags);
106}
107
110 table->getSchema().getAliasMap()->setTable(table);
111 return table;
112}
113
115 auto record = constructRecord<SimpleRecord>();
116 if (getIdFactory()) record->setId((*getIdFactory())());
117 return record;
118}
119
120template class CatalogT<SimpleRecord>;
121template class CatalogT<SimpleRecord const>;
122
123template class SortedCatalogT<SimpleRecord>;
125} // namespace table
126} // namespace afw
127} // namespace lsst
#define LSST_EXCEPT(type,...)
Create an exception with a given type.
Definition Exception.h:48
SchemaMapper * mapper
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
Tag types used to declare specialized field types.
Definition misc.h:31
Base class for all tables.
Definition BaseTable.h:61
static CoordKey addFields(afw::table::Schema &schema, std::string const &name, std::string const &doc)
Add a pair of _ra, _dec fields to a Schema, and return a CoordKey that points to them.
Defines the fields and offsets for a table.
Definition Schema.h:51
Key< T > addField(Field< T > const &field, bool doReplace=false)
Add a new field to the Schema, and return the associated Key.
Definition Schema.cc:479
Table class that must contain a unique ID field and a celestial coordinate field.
Definition Simple.h:102
std::shared_ptr< BaseTable > _clone() const override
Clone implementation with noncovariant return types.
Definition Simple.cc:108
std::shared_ptr< io::FitsWriter > makeFitsWriter(fits::Fits *fitsfile, int flags) const override
Definition Simple.cc:104
std::shared_ptr< BaseRecord > _makeRecord() override
Default-construct an associated record (protected implementation).
Definition Simple.cc:114
std::shared_ptr< IdFactory > getIdFactory()
Return the object that generates IDs for the table (may be null).
Definition Simple.h:155
static std::shared_ptr< SimpleTable > make(Schema const &schema, std::shared_ptr< IdFactory > const &idFactory)
Construct a new table.
Definition Simple.cc:75
SimpleTable(Schema const &schema, std::shared_ptr< IdFactory > const &idFactory)
Definition Simple.cc:86
Reports invalid arguments.
Definition Runtime.h:66
Reports errors in the logical structure of the program.
Definition Runtime.h:46
STL namespace.