LSST Applications g0265f82a02+0e5473021a,g02d81e74bb+0dd8ce4237,g1470d8bcf6+3ea6592b6f,g2079a07aa2+86d27d4dc4,g2305ad1205+5ca4c0b359,g295015adf3+d10818ec9d,g2a9a014e59+6f9be1b9cd,g2bbee38e9b+0e5473021a,g337abbeb29+0e5473021a,g3ddfee87b4+703ba97ebf,g487adcacf7+4fa16da234,g50ff169b8f+96c6868917,g52b1c1532d+585e252eca,g591dd9f2cf+ffa42b374e,g5a732f18d5+53520f316c,g64a986408d+0dd8ce4237,g858d7b2824+0dd8ce4237,g8a8a8dda67+585e252eca,g99cad8db69+d39438377f,g9ddcbc5298+9a081db1e4,ga1e77700b3+15fc3df1f7,ga8c6da7877+f1d96605c8,gb0e22166c9+60f28cb32d,gb6a65358fc+0e5473021a,gba4ed39666+c2a2e4ac27,gbb8dafda3b+e5339d463f,gc120e1dc64+da31e9920e,gc28159a63d+0e5473021a,gcf0d15dbbd+703ba97ebf,gdaeeff99f8+f9a426f77a,ge6526c86ff+889fc9d533,ge79ae78c31+0e5473021a,gee10cc3b42+585e252eca,gf18bd8381d+7268b93478,gff1a9f87cc+0dd8ce4237,w.2024.16
LSST Data Management Base Package
Loading...
Searching...
No Matches
Public Types | Public Member Functions | Static Public Member Functions | Static Public Attributes | Protected Member Functions | Private Member Functions | Friends | List of all members
lsst::afw::detection::PeakTable Class Reference

Table class for Peaks in Footprints. More...

#include <Peak.h>

Inheritance diagram for lsst::afw::detection::PeakTable:
lsst::afw::table::BaseTable std::enable_shared_from_this< BaseTable >

Public Types

using Record = PeakRecord
 
using ColumnView = afw::table::ColumnViewT<PeakRecord>
 
using Catalog = afw::table::CatalogT<Record>
 
using ConstCatalog = afw::table::CatalogT<const Record>
 

Public Member Functions

 ~PeakTable () override
 
PeakTableoperator= (PeakTable const &)=delete
 
PeakTableoperator= (PeakTable &&)=delete
 
std::shared_ptr< afw::table::IdFactorygetIdFactory ()
 Return the object that generates IDs for the table (may be null).
 
std::shared_ptr< afw::table::IdFactory const > getIdFactory () const
 Return the object that generates IDs for the table (may be null).
 
void setIdFactory (std::shared_ptr< afw::table::IdFactory > f)
 Switch to a new IdFactory – object that generates IDs for the table (may be null).
 
std::shared_ptr< PeakTableclone () const
 Return a polymorphic deep copy of the table.
 
std::shared_ptr< PeakRecordmakeRecord ()
 Default-construct an associated record.
 
std::shared_ptr< PeakRecordcopyRecord (afw::table::BaseRecord const &other)
 Deep-copy a record, requiring that it have the same schema as this table.
 
std::shared_ptr< PeakRecordcopyRecord (afw::table::BaseRecord const &other, afw::table::SchemaMapper const &mapper)
 Deep-copy a record, requiring that it have the same schema as this table.
 
std::shared_ptr< daf::base::PropertyListgetMetadata () const
 Return the flexible metadata associated with the table. May be null.
 
void setMetadata (std::shared_ptr< daf::base::PropertyList > const &metadata)
 Set the flexible metadata associated with the table. May be null.
 
std::shared_ptr< daf::base::PropertyListpopMetadata ()
 Return the metadata and set the internal metadata to a null pointer.
 
Schema getSchema () const
 Return the table's schema.
 
void preallocate (std::size_t nRecords)
 Allocate contiguous space for new records in advance.
 
std::size_t getBufferSize () const
 Return the number of additional records space has been already been allocated for.
 
shared_from_this (T... args)
 

Static Public Member Functions

static std::shared_ptr< PeakTablemake (afw::table::Schema const &schema, bool forceNew=false)
 Obtain a table that can be used to create records with given schema.
 
static afw::table::Schema makeMinimalSchema ()
 Return a minimal schema for Peak tables and records.
 
static bool checkSchema (afw::table::Schema const &other)
 Return true if the given schema is a valid PeakTable schema.
 
static afw::table::Key< afw::table::RecordIdgetIdKey ()
 Get keys for standard fields shared by all peaks.
 
static afw::table::Key< int > getIxKey ()
 
static afw::table::Key< int > getIyKey ()
 
static afw::table::Key< float > getFxKey ()
 
static afw::table::Key< float > getFyKey ()
 
static afw::table::Key< float > getPeakValueKey ()
 
static std::shared_ptr< BaseTablemake (Schema const &schema)
 Construct a new table.
 

Static Public Attributes

static int nRecordsPerBlock = 100
 Number of records in each memory block.
 

Protected Member Functions

 PeakTable (afw::table::Schema const &schema, std::shared_ptr< afw::table::IdFactory > const &idFactory)
 
 PeakTable (PeakTable const &other)
 
 PeakTable (PeakTable &&other)
 
std::shared_ptr< afw::table::BaseTable_clone () const override
 Clone implementation with noncovariant return types.
 
std::shared_ptr< afw::table::BaseRecord_makeRecord () override
 Default-construct an associated record (protected implementation).
 
template<typename RecordT , typename... Args>
std::shared_ptr< RecordT > constructRecord (Args &&... args)
 Helper function that must be used by all _makeRecord overrides to actually construct records.
 
virtual void handleAliasChange (std::string const &alias)
 

Private Member Functions

std::shared_ptr< afw::table::io::FitsWritermakeFitsWriter (fits::Fits *fitsfile, int flags) const override
 

Friends

class afw::table::io::FitsWriter
 

Detailed Description

Table class for Peaks in Footprints.

Definition at line 102 of file Peak.h.

Member Typedef Documentation

◆ Catalog

Definition at line 106 of file Peak.h.

◆ ColumnView

Definition at line 105 of file Peak.h.

◆ ConstCatalog

Definition at line 107 of file Peak.h.

◆ Record

Definition at line 104 of file Peak.h.

Constructor & Destructor Documentation

◆ ~PeakTable()

lsst::afw::detection::PeakTable::~PeakTable ( )
overridedefault

◆ PeakTable() [1/3]

lsst::afw::detection::PeakTable::PeakTable ( afw::table::Schema const & schema,
std::shared_ptr< afw::table::IdFactory > const & idFactory )
protected

Definition at line 130 of file Peak.cc.

132 : afw::table::BaseTable(schema), _idFactory(idFactory) {}

◆ PeakTable() [2/3]

lsst::afw::detection::PeakTable::PeakTable ( PeakTable const & other)
protected

Definition at line 134 of file Peak.cc.

135 : afw::table::BaseTable(other),
136 _idFactory(other._idFactory ? other._idFactory->clone() : other._idFactory) {}

◆ PeakTable() [3/3]

lsst::afw::detection::PeakTable::PeakTable ( PeakTable && other)
protected

Definition at line 138 of file Peak.cc.

138: PeakTable(other) {}
PeakTable(afw::table::Schema const &schema, std::shared_ptr< afw::table::IdFactory > const &idFactory)
Definition Peak.cc:130

Member Function Documentation

◆ _clone()

std::shared_ptr< afw::table::BaseTable > lsst::afw::detection::PeakTable::_clone ( ) const
overrideprotectedvirtual

Clone implementation with noncovariant return types.

Reimplemented from lsst::afw::table::BaseTable.

Definition at line 160 of file Peak.cc.

160 {
161 return std::shared_ptr<PeakTable>(new PeakTable(*this));
162}

◆ _makeRecord()

std::shared_ptr< afw::table::BaseRecord > lsst::afw::detection::PeakTable::_makeRecord ( )
overrideprotectedvirtual

Default-construct an associated record (protected implementation).

Reimplemented from lsst::afw::table::BaseTable.

Definition at line 164 of file Peak.cc.

164 {
165 auto record = constructRecord<PeakRecord>();
166 if (getIdFactory()) record->setId((*getIdFactory())());
167 return record;
168}
std::shared_ptr< afw::table::IdFactory > getIdFactory()
Return the object that generates IDs for the table (may be null).
Definition Peak.h:150

◆ checkSchema()

static bool lsst::afw::detection::PeakTable::checkSchema ( afw::table::Schema const & other)
inlinestatic

Return true if the given schema is a valid PeakTable schema.

This will always be true if the given schema was originally constructed using makeMinimalSchema(), and will rarely be true otherwise.

Definition at line 145 of file Peak.h.

145 {
146 return other.contains(getMinimalSchema().schema);
147 }

◆ clone()

std::shared_ptr< PeakTable > lsst::afw::detection::PeakTable::clone ( ) const
inline

Return a polymorphic deep copy of the table.

Derived classes should reimplement by static-casting the output of _clone to a pointer-to-derived to simulate covariant return types.

Cloning a table does not clone its associated records; the new table produced by clone() does not have any associated records.

Definition at line 173 of file Peak.h.

173{ return std::static_pointer_cast<PeakTable>(_clone()); }
std::shared_ptr< afw::table::BaseTable > _clone() const override
Clone implementation with noncovariant return types.
Definition Peak.cc:160

◆ constructRecord()

template<typename RecordT , typename ... Args>
std::shared_ptr< RecordT > lsst::afw::table::BaseTable::constructRecord ( Args &&... args)
protectedinherited

Helper function that must be used by all _makeRecord overrides to actually construct records.

Use of this function is enforced by the fact that Record::ConstructionToken can only be created by BaseTable, and is only ever constructed inside this method.

This function expects Record subclasses to have a constructor signature of the form

Record(ConstructionToken const &, detail::RecordData &&, Args && ...);

Definition at line 227 of file BaseRecord.h.

227 {
228 return std::make_shared<RecordT>(BaseRecord::ConstructionToken(0), _makeNewRecordData(),
229 std::forward<Args>(args)...);
230}

◆ copyRecord() [1/2]

std::shared_ptr< PeakRecord > lsst::afw::detection::PeakTable::copyRecord ( afw::table::BaseRecord const & other)
inline

Deep-copy a record, requiring that it have the same schema as this table.

Regardless of the type or associated table of the input record, the type of the output record will be the type associated with this table and the record instance will be associated with this table.

Allowing derived-class records to be constructed from base-class records could be considered a form of type-slicing, but because we already demand that all records be constructable from nothing but a table, this isn't anything new.

Derived classes should reimplement by static-casting the output of BaseTable::copyRecord to the appropriate BaseRecord subclass.

This is implemented using makeRecord and calling record.assign on the results; override those to change the behavior.

Definition at line 179 of file Peak.h.

179 {
180 return std::static_pointer_cast<PeakRecord>(afw::table::BaseTable::copyRecord(other));
181 }
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

◆ copyRecord() [2/2]

std::shared_ptr< PeakRecord > lsst::afw::detection::PeakTable::copyRecord ( afw::table::BaseRecord const & other,
afw::table::SchemaMapper const & mapper )
inline

Deep-copy a record, requiring that it have the same schema as this table.

Regardless of the type or associated table of the input record, the type of the output record will be the type associated with this table and the record instance will be associated with this table.

Allowing derived-class records to be constructed from base-class records could be considered a form of type-slicing, but because we already demand that all records be constructable from nothing but a table, this isn't anything new.

Derived classes should reimplement by static-casting the output of BaseTable::copyRecord to the appropriate BaseRecord subclass.

This is implemented using makeRecord and calling record.assign on the results; override those to change the behavior.

Definition at line 184 of file Peak.h.

185 {
186 return std::static_pointer_cast<PeakRecord>(afw::table::BaseTable::copyRecord(other, mapper));
187 }
SchemaMapper * mapper

◆ getBufferSize()

std::size_t lsst::afw::table::BaseTable::getBufferSize ( ) const
inherited

Return the number of additional records space has been already been allocated for.

Unlike std::vector::capacity, this does not factor in existing records in any way.

Definition at line 112 of file BaseTable.cc.

112 {
113 if (_manager) {
114 return Block::getBufferSize(_schema.getRecordSize(), _manager);
115 } else {
116 return 0;
117 }
118}
std::size_t getRecordSize() const
Return the raw size of a record in bytes.
Definition Schema.h:149

◆ getFxKey()

static afw::table::Key< float > lsst::afw::detection::PeakTable::getFxKey ( )
inlinestatic

Definition at line 167 of file Peak.h.

167{ return getMinimalSchema().fx; }

◆ getFyKey()

static afw::table::Key< float > lsst::afw::detection::PeakTable::getFyKey ( )
inlinestatic

Definition at line 168 of file Peak.h.

168{ return getMinimalSchema().fy; }

◆ getIdFactory() [1/2]

std::shared_ptr< afw::table::IdFactory > lsst::afw::detection::PeakTable::getIdFactory ( )
inline

Return the object that generates IDs for the table (may be null).

Definition at line 150 of file Peak.h.

150{ return _idFactory; }

◆ getIdFactory() [2/2]

std::shared_ptr< afw::table::IdFactory const > lsst::afw::detection::PeakTable::getIdFactory ( ) const
inline

Return the object that generates IDs for the table (may be null).

Definition at line 153 of file Peak.h.

153{ return _idFactory; }

◆ getIdKey()

static afw::table::Key< afw::table::RecordId > lsst::afw::detection::PeakTable::getIdKey ( )
inlinestatic

Get keys for standard fields shared by all peaks.

These keys are used to implement getters and setters on PeakRecord.

Definition at line 164 of file Peak.h.

164{ return getMinimalSchema().id; }

◆ getIxKey()

static afw::table::Key< int > lsst::afw::detection::PeakTable::getIxKey ( )
inlinestatic

Definition at line 165 of file Peak.h.

165{ return getMinimalSchema().ix; }

◆ getIyKey()

static afw::table::Key< int > lsst::afw::detection::PeakTable::getIyKey ( )
inlinestatic

Definition at line 166 of file Peak.h.

166{ return getMinimalSchema().iy; }

◆ getMetadata()

std::shared_ptr< daf::base::PropertyList > lsst::afw::table::BaseTable::getMetadata ( ) const
inlineinherited

Return the flexible metadata associated with the table. May be null.

Definition at line 79 of file BaseTable.h.

79{ return _metadata; }

◆ getPeakValueKey()

static afw::table::Key< float > lsst::afw::detection::PeakTable::getPeakValueKey ( )
inlinestatic

Definition at line 169 of file Peak.h.

169{ return getMinimalSchema().peakValue; }

◆ getSchema()

Schema lsst::afw::table::BaseTable::getSchema ( ) const
inlineinherited

Return the table's schema.

Definition at line 137 of file BaseTable.h.

137{ return _schema; }

◆ handleAliasChange()

virtual void lsst::afw::table::BaseTable::handleAliasChange ( std::string const & alias)
inlineprotectedvirtualinherited

Reimplemented in lsst::afw::table::SourceTable.

Definition at line 207 of file BaseTable.h.

207{}

◆ make() [1/2]

std::shared_ptr< PeakTable > lsst::afw::detection::PeakTable::make ( afw::table::Schema const & schema,
bool forceNew = false )
static

Obtain a table that can be used to create records with given schema.

Parameters
[in]schemaSchema that defines the fields, offsets, and record size for the table.
[in]forceNewIf true, guarantee that the returned PeakTable will be a new one, rather than attempting to reuse an existing PeakTable with the same Schema.

If a PeakTable already exists that uses this Schema, that PeakTable will be returned instead of creating a new one. This is different from how most Record/Table classes work, but it is an important memory optimization for Peaks, for which we expect to have very few distinct Schemas as well as many catalogs (one per Footprint) with a small number of Peaks; we don't want to have a different PeakTable for each one of those catalogs if they all share the same Schema. This behavior can be disabled by setting forceNewTable=true or by cloning an existing table (in both of these cases, the new table will not be reused in the future, either)

Definition at line 96 of file Peak.cc.

96 {
97 using CachedTableList = std::list<std::weak_ptr<PeakTable>>;
98 static CachedTableList cache;
99 if (!checkSchema(schema)) {
101 "Schema for Peak must contain at least the keys defined by makeMinimalSchema().");
102 }
103 if (forceNewTable) {
105 }
106 CachedTableList::iterator iter = cache.begin();
107 while (iter != cache.end()) {
109 if (!p) {
110 iter = cache.erase(iter);
111 } else {
112 if (p->getSchema().compare(schema, afw::table::Schema::IDENTICAL) ==
114 // Move the one we found to the front of the list, so it's easier to find
115 // the same thing repeatedly
116 if (iter != cache.begin()) {
117 cache.splice(cache.begin(), cache, iter);
118 }
119 return p;
120 }
121 ++iter;
122 }
123 }
124 // No match: we create a new table and put it in the cache
126 cache.push_front(newTable);
127 return newTable;
128}
#define LSST_EXCEPT(type,...)
Create an exception with a given type.
Definition Exception.h:48
static bool checkSchema(afw::table::Schema const &other)
Return true if the given schema is a valid PeakTable schema.
Definition Peak.h:145
static std::shared_ptr< IdFactory > makeSimple()
Return a simple IdFactory that simply counts from 1.
Definition IdFactory.cc:70
@ IDENTICAL
Everything is the same.
Definition Schema.h:72
Reports invalid arguments.
Definition Runtime.h:66

◆ make() [2/2]

std::shared_ptr< BaseTable > lsst::afw::table::BaseTable::make ( Schema const & schema)
staticinherited

Construct a new table.

Because BaseTable is an abstract class, this actually returns a hidden trivial subclass (which is associated with a hidden trivial subclass of BaseRecord).

Hiding concrete table and record classes in anonymous namespaces is not required, but it makes it easier to ensure instances are always created within shared_ptrs, and it eliminates some multilateral friending that would otherwise be necessary. In some cases it may also serve as a form of pimpl, keeping class implementation details out of header files.

Definition at line 120 of file BaseTable.cc.

120 {
121 return std::shared_ptr<BaseTable>(new BaseTable(schema));
122}
BaseTable(Schema const &schema, std::shared_ptr< daf::base::PropertyList > metadata=nullptr)
Construct from a schema.
Definition BaseTable.cc:148

◆ makeFitsWriter()

std::shared_ptr< afw::table::io::FitsWriter > lsst::afw::detection::PeakTable::makeFitsWriter ( fits::Fits * fitsfile,
int flags ) const
overrideprivatevirtual

Reimplemented from lsst::afw::table::BaseTable.

Definition at line 156 of file Peak.cc.

156 {
157 return std::make_shared<PeakFitsWriter>(fitsfile, flags);
158}

◆ makeMinimalSchema()

static afw::table::Schema lsst::afw::detection::PeakTable::makeMinimalSchema ( )
inlinestatic

Return a minimal schema for Peak tables and records.

The returned schema can and generally should be modified further, but many operations on PeakRecords will assume that at least the fields provided by this routine are present.

Definition at line 137 of file Peak.h.

137{ return getMinimalSchema().schema; }

◆ makeRecord()

std::shared_ptr< PeakRecord > lsst::afw::detection::PeakTable::makeRecord ( )
inline

Default-construct an associated record.

Derived classes should reimplement by static-casting the output of _makeRecord to the appropriate BaseRecord subclass to simulate covariant return types.

Definition at line 176 of file Peak.h.

176{ return std::static_pointer_cast<PeakRecord>(_makeRecord()); }
std::shared_ptr< afw::table::BaseRecord > _makeRecord() override
Default-construct an associated record (protected implementation).
Definition Peak.cc:164

◆ operator=() [1/2]

PeakTable & lsst::afw::detection::PeakTable::operator= ( PeakTable && )
delete

◆ operator=() [2/2]

PeakTable & lsst::afw::detection::PeakTable::operator= ( PeakTable const & )
delete

◆ popMetadata()

std::shared_ptr< daf::base::PropertyList > lsst::afw::table::BaseTable::popMetadata ( )
inlineinherited

Return the metadata and set the internal metadata to a null pointer.

Definition at line 85 of file BaseTable.h.

85 {
87 _metadata.swap(tmp);
88 return tmp;
89 }

◆ preallocate()

void lsst::afw::table::BaseTable::preallocate ( std::size_t nRecords)
inherited

Allocate contiguous space for new records in advance.

If a contiguous memory block for at least n additional records has already been allocated, this is a no-op. If not, a new block will be allocated, and any remaining space on the old block will go to waste; this ensures the new records will be allocated contiguously. Note that "wasted" memory is not leaked; it will be deallocated along with any records created from that block when those records go out of scope.

Note that unlike std::vector::reserve, this does not factor in existing records in any way; nRecords refers to a number of new records to reserve space for.

Definition at line 110 of file BaseTable.cc.

110{ Block::preallocate(_schema.getRecordSize(), n, _manager); }

◆ setIdFactory()

void lsst::afw::detection::PeakTable::setIdFactory ( std::shared_ptr< afw::table::IdFactory > f)
inline

Switch to a new IdFactory – object that generates IDs for the table (may be null).

Definition at line 156 of file Peak.h.

156{ _idFactory = f; }

◆ setMetadata()

void lsst::afw::table::BaseTable::setMetadata ( std::shared_ptr< daf::base::PropertyList > const & metadata)
inlineinherited

Set the flexible metadata associated with the table. May be null.

Definition at line 82 of file BaseTable.h.

82{ _metadata = metadata; }

Friends And Related Symbol Documentation

◆ afw::table::io::FitsWriter

friend class afw::table::io::FitsWriter
friend

Definition at line 216 of file Peak.h.

Member Data Documentation

◆ nRecordsPerBlock

int lsst::afw::table::BaseTable::nRecordsPerBlock = 100
staticinherited

Number of records in each memory block.

Definition at line 76 of file BaseTable.h.


The documentation for this class was generated from the following files: