LSST Applications g180d380827+0f66a164bb,g2079a07aa2+86d27d4dc4,g2305ad1205+7d304bc7a0,g29320951ab+500695df56,g2bbee38e9b+0e5473021a,g337abbeb29+0e5473021a,g33d1c0ed96+0e5473021a,g3a166c0a6a+0e5473021a,g3ddfee87b4+e42ea45bea,g48712c4677+36a86eeaa5,g487adcacf7+2dd8f347ac,g50ff169b8f+96c6868917,g52b1c1532d+585e252eca,g591dd9f2cf+c70619cc9d,g5a732f18d5+53520f316c,g5ea96fc03c+341ea1ce94,g64a986408d+f7cd9c7162,g858d7b2824+f7cd9c7162,g8a8a8dda67+585e252eca,g99cad8db69+469ab8c039,g9ddcbc5298+9a081db1e4,ga1e77700b3+15fc3df1f7,gb0e22166c9+60f28cb32d,gba4ed39666+c2a2e4ac27,gbb8dafda3b+c92fc63c7e,gbd866b1f37+f7cd9c7162,gc120e1dc64+02c66aa596,gc28159a63d+0e5473021a,gc3e9b769f7+b0068a2d9f,gcf0d15dbbd+e42ea45bea,gdaeeff99f8+f9a426f77a,ge6526c86ff+84383d05b3,ge79ae78c31+0e5473021a,gee10cc3b42+585e252eca,gff1a9f87cc+f7cd9c7162,w.2024.17
LSST Data Management Base Package
Loading...
Searching...
No Matches
Source.h
Go to the documentation of this file.
1// -*- lsst-c++ -*-
2/*
3 * LSST Data Management System
4 * Copyright 2008-2014, 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
24#ifndef AFW_TABLE_Source_h_INCLUDED
25#define AFW_TABLE_Source_h_INCLUDED
26
36
37namespace lsst {
38namespace afw {
39
40namespace geom {
41class SkyWcs;
42} // namespace geom
43
44namespace table {
45
56
58
59class SourceRecord;
60class SourceTable;
61
62template <typename RecordT>
64
78class SourceRecord : public SimpleRecord {
79public:
84
97
98 std::shared_ptr<Footprint> getFootprint() const { return _footprint; }
99
100 void setFootprint(std::shared_ptr<Footprint> const &footprint) { _footprint = footprint; }
101
103 return std::static_pointer_cast<SourceTable const>(BaseRecord::getTable());
104 }
105
107
108 RecordId getParent() const;
109 void setParent(RecordId id);
111
114
117
119 bool getPsfFluxFlag() const;
120
123
126
128 bool getModelFluxFlag() const;
129
132
135
137 bool getApFluxFlag() const;
138
141
144
146 bool getGaussianFluxFlag() const;
147
150
153
155 bool getCalibFluxFlag() const;
156
159
162
164 bool getCentroidFlag() const;
165
168
171
173 bool getShapeFlag() const;
174
176 double getX() const;
177
179 double getY() const;
180
182 double getIxx() const;
183
185 double getIyy() const;
186
188 double getIxy() const;
189
191 void updateCoord(geom::SkyWcs const &wcs, bool include_covariance = true);
192
194 void updateCoord(geom::SkyWcs const &wcs, PointKey<double> const &key, bool include_covariance = true);
195
196 SourceRecord(const SourceRecord &) = delete;
201
202protected:
203
204 virtual void _assign(BaseRecord const &other);
205
206private:
207 friend class SourceTable;
208
210};
211
217class SourceTable : public SimpleTable {
218public:
223
234 static std::shared_ptr<SourceTable> make(Schema const &schema,
235 std::shared_ptr<IdFactory> const &idFactory);
236
245 return make(schema, IdFactory::makeSimple());
246 }
247
259 Schema r = getMinimalSchema().schema;
261 return r;
262 }
263
270 static bool checkSchema(Schema const &other) { return other.contains(getMinimalSchema().schema); }
271
273 static Key<RecordId> getParentKey() { return getMinimalSchema().parent; }
274
276 std::shared_ptr<SourceTable> clone() const { return std::static_pointer_cast<SourceTable>(_clone()); }
277
280 return std::static_pointer_cast<SourceRecord>(_makeRecord());
281 }
282
285 return std::static_pointer_cast<SourceRecord>(BaseTable::copyRecord(other));
286 }
287
290 return std::static_pointer_cast<SourceRecord>(BaseTable::copyRecord(other, mapper));
291 }
292
293 FluxSlotDefinition const &getPsfFluxSlot() const { return _slots.defPsfFlux; }
294
302 void definePsfFlux(std::string const &name) {
303 getSchema().getAliasMap()->set(getPsfFluxSlot().getAlias(), name);
304 }
305
306 FluxSlotDefinition const &getModelFluxSlot() const { return _slots.defModelFlux; }
307
315 void defineModelFlux(std::string const &name) {
316 getSchema().getAliasMap()->set(getModelFluxSlot().getAlias(), name);
317 }
318
319 FluxSlotDefinition const &getApFluxSlot() const { return _slots.defApFlux; }
320
328 void defineApFlux(std::string const &name) {
329 getSchema().getAliasMap()->set(getApFluxSlot().getAlias(), name);
330 }
331
333
341 void defineGaussianFlux(std::string const &name) {
342 getSchema().getAliasMap()->set(getGaussianFluxSlot().getAlias(), name);
343 }
344
345 FluxSlotDefinition const &getCalibFluxSlot() const { return _slots.defCalibFlux; }
346
354 void defineCalibFlux(std::string const &name) {
355 getSchema().getAliasMap()->set(getCalibFluxSlot().getAlias(), name);
356 }
357
358 CentroidSlotDefinition const &getCentroidSlot() const { return _slots.defCentroid; }
359
367 void defineCentroid(std::string const &name) {
368 getSchema().getAliasMap()->set(getCentroidSlot().getAlias(), name);
369 }
370
371 ShapeSlotDefinition const &getShapeSlot() const { return _slots.defShape; }
372
380 void defineShape(std::string const &name) {
381 getSchema().getAliasMap()->set(getShapeSlot().getAlias(), name);
382 }
383
386
387protected:
388 SourceTable(Schema const &schema, std::shared_ptr<IdFactory> const &idFactory);
389
391 SourceTable(SourceTable &&other);
392
393 void handleAliasChange(std::string const &alias) override;
394
395 std::shared_ptr<BaseTable> _clone() const override;
396
398
399private:
400 // Struct that holds the minimal schema and the special keys we've added to it.
401 struct MinimalSchema {
402 Schema schema;
403 Key<RecordId> parent;
404
405 MinimalSchema();
406 };
407
408 // Return the singleton minimal schema.
409 static MinimalSchema &getMinimalSchema();
410
411 friend class io::FitsWriter;
412 friend class SourceRecord;
413
414 // Return a writer object that knows how to save in FITS format. See also FitsWriter.
416
417 SlotSuite _slots;
418};
419
420template <typename RecordT>
421class SourceColumnViewT : public ColumnViewT<RecordT> {
422public:
424 using Table = typename RecordT::Table;
425
426 // See the documentation for BaseColumnView for an explanation of why these
427 // accessors *appear* to violate const-correctness.
428
430 ndarray::Array<double, 1> getPsfInstFlux() const {
431 return this->operator[](this->getTable()->getPsfFluxSlot().getMeasKey());
432 }
434 ndarray::Array<double, 1> getPsfInstFluxErr() const {
435 return this->operator[](this->getTable()->getPsfFluxSlot().getErrKey());
436 }
437
439 ndarray::Array<double, 1> getApInstFlux() const {
440 return this->operator[](this->getTable()->getApFluxSlot().getMeasKey());
441 }
443 ndarray::Array<double, 1> getApInstFluxErr() const {
444 return this->operator[](this->getTable()->getApFluxSlot().getErrKey());
445 }
446
448 ndarray::Array<double, 1> getModelInstFlux() const {
449 return this->operator[](this->getTable()->getModelFluxSlot().getMeasKey());
450 }
452 ndarray::Array<double, 1> getModelInstFluxErr() const {
453 return this->operator[](this->getTable()->getModelFluxSlot().getErrKey());
454 }
455
457 ndarray::Array<double, 1> getGaussianInstFlux() const {
458 return this->operator[](this->getTable()->getGaussianFluxSlot().getMeasKey());
459 }
461 ndarray::Array<double, 1> getGaussianInstFluxErr() const {
462 return this->operator[](this->getTable()->getGaussianFluxSlot().getErrKey());
463 }
464
466 ndarray::Array<double, 1> getCalibInstFlux() const {
467 return this->operator[](this->getTable()->getCalibFluxSlot().getMeasKey());
468 }
470 ndarray::Array<double, 1> getCalibInstFluxErr() const {
471 return this->operator[](this->getTable()->getCalibFluxSlot().getErrKey());
472 }
473
474 ndarray::Array<double, 1> const getX() const {
475 return this->operator[](this->getTable()->getCentroidSlot().getMeasKey().getX());
476 }
477 ndarray::Array<double, 1> const getY() const {
478 return this->operator[](this->getTable()->getCentroidSlot().getMeasKey().getY());
479 }
480
481 ndarray::Array<double, 1> const getIxx() const {
482 return this->operator[](this->getTable()->getShapeSlot().getMeasKey().getIxx());
483 }
484 ndarray::Array<double, 1> const getIyy() const {
485 return this->operator[](this->getTable()->getShapeSlot().getMeasKey().getIyy());
486 }
487 ndarray::Array<double, 1> const getIxy() const {
488 return this->operator[](this->getTable()->getShapeSlot().getMeasKey().getIxy());
489 }
490
492 template <typename InputIterator>
497
503
504protected:
505 explicit SourceColumnViewT(BaseColumnView const &base) : ColumnViewT<RecordT>(base) {}
506};
507
508using SourceColumnView = SourceColumnViewT<SourceRecord>;
509
511 return this->get(getTable()->getPsfFluxSlot().getMeasKey());
512}
513
515 return this->get(getTable()->getPsfFluxSlot().getErrKey());
516}
517
518inline bool SourceRecord::getPsfFluxFlag() const {
519 return this->get(getTable()->getPsfFluxSlot().getFlagKey());
520}
521
523 return this->get(getTable()->getModelFluxSlot().getMeasKey());
524}
525
527 return this->get(getTable()->getModelFluxSlot().getErrKey());
528}
529
531 return this->get(getTable()->getModelFluxSlot().getFlagKey());
532}
533
535 return this->get(getTable()->getApFluxSlot().getMeasKey());
536}
537
539 return this->get(getTable()->getApFluxSlot().getErrKey());
540}
541
542inline bool SourceRecord::getApFluxFlag() const {
543 return this->get(getTable()->getApFluxSlot().getFlagKey());
544}
545
547 return this->get(getTable()->getGaussianFluxSlot().getMeasKey());
548}
549
551 return this->get(getTable()->getGaussianFluxSlot().getErrKey());
552}
553
555 return this->get(getTable()->getGaussianFluxSlot().getFlagKey());
556}
557
559 return this->get(getTable()->getCalibFluxSlot().getMeasKey());
560}
561
563 return this->get(getTable()->getCalibFluxSlot().getErrKey());
564}
565
567 return this->get(getTable()->getCalibFluxSlot().getFlagKey());
568}
569
571 return this->get(getTable()->getCentroidSlot().getMeasKey());
572}
573
575 return this->get(getTable()->getCentroidSlot().getErrKey());
576}
577
578inline bool SourceRecord::getCentroidFlag() const {
579 return this->get(getTable()->getCentroidSlot().getFlagKey());
580}
581
583 return this->get(getTable()->getShapeSlot().getMeasKey());
584}
585
587 return this->get(getTable()->getShapeSlot().getErrKey());
588}
589
590inline bool SourceRecord::getShapeFlag() const { return this->get(getTable()->getShapeSlot().getFlagKey()); }
591
594inline double SourceRecord::getX() const { return get(getTable()->getCentroidSlot().getMeasKey().getX()); }
595inline double SourceRecord::getY() const { return get(getTable()->getCentroidSlot().getMeasKey().getY()); }
596inline double SourceRecord::getIxx() const { return get(getTable()->getShapeSlot().getMeasKey().getIxx()); }
597inline double SourceRecord::getIyy() const { return get(getTable()->getShapeSlot().getMeasKey().getIyy()); }
598inline double SourceRecord::getIxy() const { return get(getTable()->getShapeSlot().getMeasKey().getIxy()); }
599
600} // namespace table
601} // namespace afw
602} // namespace lsst
603
604#endif // !AFW_TABLE_Source_h_INCLUDED
char * data
Definition BaseRecord.cc:61
SchemaMapper * mapper
Class to describe the properties of a detected object from an image.
Definition Footprint.h:63
A simple struct that combines the two arguments that must be passed to most cfitsio routines and cont...
Definition fits.h:308
An ellipse core with quadrupole moments as parameters.
Definition Quadrupole.h:47
Tag types used to declare specialized field types.
Definition misc.h:31
Column-wise view into a sequence of records that have been allocated contiguously.
static BaseColumnView make(std::shared_ptr< BaseTable > const &table, InputIterator first, InputIterator last)
Construct a BaseColumnView from an iterator range.
ndarray::ArrayRef< T, 1 > const operator[](Key< T > const &key) const
Return a 1-d array corresponding to a scalar field (or subfield).
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
Schema getSchema() const
Return the table's schema.
Definition BaseTable.h:137
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:126
SlotDefinition specialization for centroids.
Definition slots.h:120
Eigen::Matrix< float, 2, 2 > ErrValue
Type returned by accessing the slot uncertainty.
Definition slots.h:123
std::shared_ptr< Table > getTable() const
Return the table that owns the records.
SlotDefinition specialization for fluxes.
Definition slots.h:73
static std::shared_ptr< IdFactory > makeSimple()
Return a simple IdFactory that simply counts from 1.
Definition IdFactory.cc:70
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
std::shared_ptr< AliasMap > getAliasMap() const
Return the map of aliases.
Definition Schema.h:279
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.
SlotDefinition specialization for shapes.
Definition slots.h:167
Eigen::Matrix< float, 3, 3 > ErrValue
Type returned by accessing the slot uncertainty.
Definition slots.h:170
Record class that must contain a unique ID field and a celestial coordinate field.
Definition Simple.h:48
Table class that must contain a unique ID field and a celestial coordinate field.
Definition Simple.h:102
ndarray::Array< double, 1 > getApInstFluxErr() const
Get the uncertainty on the ApFlux slot measurement.
Definition Source.h:443
typename RecordT::Table Table
Definition Source.h:424
ndarray::Array< double, 1 > const getY() const
Definition Source.h:477
ndarray::Array< double, 1 > getModelInstFluxErr() const
Get the uncertainty on the ModelFlux slot measurement.
Definition Source.h:452
ndarray::Array< double, 1 > getPsfInstFluxErr() const
Get the uncertainty on the PsfFlux slot measurement.
Definition Source.h:434
SourceColumnViewT(BaseColumnView const &base)
Definition Source.h:505
ndarray::Array< double, 1 > getGaussianInstFluxErr() const
Get the uncertainty on the GaussianFlux slot measurement.
Definition Source.h:461
SourceColumnViewT & operator=(SourceColumnViewT const &)=default
SourceColumnViewT & operator=(SourceColumnViewT &&)=default
ndarray::Array< double, 1 > getCalibInstFlux() const
Get the value of the CalibFlux slot measurement.
Definition Source.h:466
static SourceColumnViewT make(std::shared_ptr< Table > const &table, InputIterator first, InputIterator last)
Construct a BaseColumnView from an iterator range.
Definition Source.h:493
ndarray::Array< double, 1 > getCalibInstFluxErr() const
Get the uncertainty on the CalibFlux slot measurement.
Definition Source.h:470
ndarray::Array< double, 1 > getApInstFlux() const
Get the value of the ApFlux slot measurement.
Definition Source.h:439
ndarray::Array< double, 1 > const getIyy() const
Definition Source.h:484
SourceColumnViewT(SourceColumnViewT &&)=default
ndarray::Array< double, 1 > getGaussianInstFlux() const
Get the value of the GaussianFlux slot measurement.
Definition Source.h:457
SourceColumnViewT(SourceColumnViewT const &)=default
ndarray::Array< double, 1 > const getX() const
Definition Source.h:474
ndarray::Array< double, 1 > const getIxx() const
Definition Source.h:481
ndarray::Array< double, 1 > const getIxy() const
Definition Source.h:487
ndarray::Array< double, 1 > getModelInstFlux() const
Get the value of the ModelFlux slot measurement.
Definition Source.h:448
ndarray::Array< double, 1 > getPsfInstFlux() const
Get the value of the PsfFlux slot measurement.
Definition Source.h:430
Record class that contains measurements made on a single exposure.
Definition Source.h:78
FluxSlotDefinition::ErrValue getCalibInstFluxErr() const
Get the uncertainty on the CalibFlux slot measurement.
Definition Source.h:562
virtual void _assign(BaseRecord const &other)
Called by assign() after transferring fields to allow subclass data members to be copied.
Definition Source.cc:392
double getIxx() const
Return the shape slot Ixx value.
Definition Source.h:596
bool getCalibFluxFlag() const
Return true if the measurement in the CalibFlux slot failed.
Definition Source.h:566
FluxSlotDefinition::ErrValue getGaussianInstFluxErr() const
Get the uncertainty on the GaussianFlux slot measurement.
Definition Source.h:550
bool getShapeFlag() const
Return true if the measurement in the Shape slot failed.
Definition Source.h:590
double getX() const
Return the centroid slot x coordinate.
Definition Source.h:594
SourceRecord & operator=(const SourceRecord &)=delete
double getY() const
Return the centroid slot y coordinate.
Definition Source.h:595
FluxSlotDefinition::MeasValue getGaussianInstFlux() const
Get the value of the GaussianFlux slot measurement.
Definition Source.h:546
double getIyy() const
Return the shape slot Iyy value.
Definition Source.h:597
CentroidSlotDefinition::MeasValue getCentroid() const
Get the value of the Centroid slot measurement.
Definition Source.h:570
bool getCentroidFlag() const
Return true if the measurement in the Centroid slot failed.
Definition Source.h:578
FluxSlotDefinition::MeasValue getApInstFlux() const
Get the value of the ApFlux slot measurement.
Definition Source.h:534
std::shared_ptr< SourceTable const > getTable() const
Definition Source.h:102
bool getModelFluxFlag() const
Return true if the measurement in the ModelFlux slot failed.
Definition Source.h:530
void setParent(RecordId id)
Definition Source.h:593
FluxSlotDefinition::MeasValue getModelInstFlux() const
Get the value of the ModelFlux slot measurement.
Definition Source.h:522
double getIxy() const
Return the shape slot Ixy value.
Definition Source.h:598
SourceRecord(const SourceRecord &)=delete
ShapeSlotDefinition::ErrValue getShapeErr() const
Get the uncertainty on the Shape slot measurement.
Definition Source.h:586
FluxSlotDefinition::ErrValue getPsfInstFluxErr() const
Get the uncertainty on the PsfFlux slot measurement.
Definition Source.h:514
std::shared_ptr< Footprint > getFootprint() const
Definition Source.h:98
ShapeSlotDefinition::MeasValue getShape() const
Get the value of the Shape slot measurement.
Definition Source.h:582
RecordId getParent() const
Convenience accessors for the keys in the minimal source schema.
Definition Source.h:592
CentroidSlotDefinition::ErrValue getCentroidErr() const
Get the uncertainty on the Centroid slot measurement.
Definition Source.h:574
FluxSlotDefinition::MeasValue getPsfInstFlux() const
Get the value of the PsfFlux slot measurement.
Definition Source.h:510
SourceRecord & operator=(SourceRecord &&)=delete
FluxSlotDefinition::ErrValue getApInstFluxErr() const
Get the uncertainty on the ApFlux slot measurement.
Definition Source.h:538
SourceRecord(SourceRecord &&)=delete
void setFootprint(std::shared_ptr< Footprint > const &footprint)
Definition Source.h:100
bool getGaussianFluxFlag() const
Return true if the measurement in the GaussianFlux slot failed.
Definition Source.h:554
FluxSlotDefinition::ErrValue getModelInstFluxErr() const
Get the uncertainty on the ModelFlux slot measurement.
Definition Source.h:526
FluxSlotDefinition::MeasValue getCalibInstFlux() const
Get the value of the CalibFlux slot measurement.
Definition Source.h:558
bool getPsfFluxFlag() const
Return true if the measurement in the PsfFlux slot failed.
Definition Source.h:518
SourceRecord(ConstructionToken const &token, detail::RecordData &&data)
Constructor used by SourceTable.
Definition Source.h:94
bool getApFluxFlag() const
Return true if the measurement in the ApFlux slot failed.
Definition Source.h:542
void updateCoord(geom::SkyWcs const &wcs, bool include_covariance=true)
Update the coord field using the given Wcs and the field in the centroid slot.
Definition Source.cc:368
Table class that contains measurements made on a single exposure.
Definition Source.h:217
std::shared_ptr< SourceRecord > copyRecord(BaseRecord const &other)
Deep-copy a record, requiring that it have the same schema as this table.
Definition Source.h:284
SourceTable & operator=(SourceTable const &)=delete
void defineCalibFlux(std::string const &name)
Set the measurement used for the CalibFlux slot.
Definition Source.h:354
static std::shared_ptr< SourceTable > make(Schema const &schema, std::shared_ptr< IdFactory > const &idFactory)
Construct a new table.
Definition Source.cc:400
SourceTable(SourceTable const &other)
SourceTable & operator=(SourceTable &&)=delete
std::shared_ptr< SourceRecord > makeRecord()
Default-construct an associated record.
Definition Source.h:279
SourceTable(Schema const &schema, std::shared_ptr< IdFactory > const &idFactory)
Definition Source.cc:409
void defineApFlux(std::string const &name)
Set the measurement used for the ApFlux slot.
Definition Source.h:328
std::shared_ptr< BaseRecord > _makeRecord() override
Default-construct an associated record (protected implementation).
Definition Source.cc:441
void definePsfFlux(std::string const &name)
Set the measurement used for the PsfFlux slot.
Definition Source.h:302
FluxSlotDefinition const & getModelFluxSlot() const
Definition Source.h:306
static Schema makeMinimalSchema()
Return a minimal schema for Source tables and records.
Definition Source.h:258
static Key< RecordId > getParentKey()
Key for the parent ID.
Definition Source.h:273
void defineGaussianFlux(std::string const &name)
Set the measurement used for the GaussianFlux slot.
Definition Source.h:341
FluxSlotDefinition const & getGaussianFluxSlot() const
Definition Source.h:332
std::shared_ptr< SourceTable > clone() const
Return a polymorphic deep copy of the table.
Definition Source.h:276
void defineShape(std::string const &name)
Set the measurement used for the Shape slot.
Definition Source.h:380
std::shared_ptr< io::FitsWriter > makeFitsWriter(fits::Fits *fitsfile, int flags) const override
Definition Source.cc:433
std::shared_ptr< BaseTable > _clone() const override
Clone implementation with noncovariant return types.
Definition Source.cc:437
CentroidSlotDefinition const & getCentroidSlot() const
Definition Source.h:358
FluxSlotDefinition const & getPsfFluxSlot() const
Definition Source.h:293
void handleAliasChange(std::string const &alias) override
Definition Source.cc:416
FluxSlotDefinition const & getApFluxSlot() const
Definition Source.h:319
ShapeSlotDefinition const & getShapeSlot() const
Definition Source.h:371
void defineCentroid(std::string const &name)
Set the measurement used for the Centroid slot.
Definition Source.h:367
static std::shared_ptr< SourceTable > make(Schema const &schema)
Construct a new table.
Definition Source.h:244
std::shared_ptr< SourceRecord > copyRecord(BaseRecord const &other, SchemaMapper const &mapper)
Deep-copy a record, requiring that it have the same schema as this table.
Definition Source.h:289
void defineModelFlux(std::string const &name)
Set the measurement used for the ModelFlux slot.
Definition Source.h:315
FluxSlotDefinition const & getCalibFluxSlot() const
Definition Source.h:345
static bool checkSchema(Schema const &other)
Return true if the given schema is a valid SourceTable schema.
Definition Source.h:270
Writer object for FITS binary tables.
Definition FitsWriter.h:25
daf::base::PropertySet * set
Definition fits.cc:931
SourceFitsFlags
Bitflags to be passed to SourceCatalog::readFits and SourceCatalog::writeFits.
Definition Source.h:52
@ SOURCE_IO_NO_FOOTPRINTS
Do not read/write footprints at all.
Definition Source.h:53
@ SOURCE_IO_NO_HEAVY_FOOTPRINTS
Read/write heavy footprints as non-heavy footprints.
Definition Source.h:54
STL namespace.
An aggregate containing all of the current slots used in SourceTable.
Definition slots.h:219
CentroidSlotDefinition defCentroid
Definition slots.h:225
FluxSlotDefinition defModelFlux
Definition slots.h:223
FluxSlotDefinition defCalibFlux
Definition slots.h:224
FluxSlotDefinition defApFlux
Definition slots.h:221
FluxSlotDefinition defPsfFlux
Definition slots.h:220
ShapeSlotDefinition defShape
Definition slots.h:226
FluxSlotDefinition defGaussianFlux
Definition slots.h:222
Helper struct that contains the information passed from BaseTable to BaseRecord at construction.
Definition BaseTable.h:32