LSST Applications g0265f82a02+d6b5cd48b5,g02d81e74bb+a41d3748ce,g1470d8bcf6+6be6c9203b,g2079a07aa2+14824f138e,g212a7c68fe+a4f2ea4efa,g2305ad1205+72971fe858,g295015adf3+ab2c85acae,g2bbee38e9b+d6b5cd48b5,g337abbeb29+d6b5cd48b5,g3ddfee87b4+31b3a28dff,g487adcacf7+082e807817,g50ff169b8f+5929b3527e,g52b1c1532d+a6fc98d2e7,g591dd9f2cf+b2918d57ae,g5a732f18d5+66d966b544,g64a986408d+a41d3748ce,g858d7b2824+a41d3748ce,g8a8a8dda67+a6fc98d2e7,g99cad8db69+7fe4acdf18,g9ddcbc5298+d4bad12328,ga1e77700b3+246acaaf9c,ga8c6da7877+84af8b3ff8,gb0e22166c9+3863383f4c,gb6a65358fc+d6b5cd48b5,gba4ed39666+9664299f35,gbb8dafda3b+d8d527deb2,gc07e1c2157+b2dbe6b631,gc120e1dc64+61440b2abb,gc28159a63d+d6b5cd48b5,gcf0d15dbbd+31b3a28dff,gdaeeff99f8+a38ce5ea23,ge6526c86ff+39927bb362,ge79ae78c31+d6b5cd48b5,gee10cc3b42+a6fc98d2e7,gf1cff7945b+a41d3748ce,v24.1.5.rc1
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::table::SourceTable Class Reference

Table class that contains measurements made on a single exposure. More...

#include <Source.h>

Inheritance diagram for lsst::afw::table::SourceTable:
lsst::afw::table::SimpleTable lsst::afw::table::BaseTable std::enable_shared_from_this< BaseTable >

Public Types

using Record = SourceRecord
 
using ColumnView = SourceColumnViewT<SourceRecord>
 
using Catalog = SortedCatalogT<Record>
 
using ConstCatalog = SortedCatalogT<const Record>
 

Public Member Functions

std::shared_ptr< SourceTableclone () const
 Return a polymorphic deep copy of the table.
 
std::shared_ptr< SourceRecordmakeRecord ()
 Default-construct an associated record.
 
std::shared_ptr< SourceRecordcopyRecord (BaseRecord const &other)
 Deep-copy a record, requiring that it have the same schema as this table.
 
std::shared_ptr< SourceRecordcopyRecord (BaseRecord const &other, SchemaMapper const &mapper)
 Deep-copy a record, requiring that it have the same schema as this table.
 
FluxSlotDefinition constgetPsfFluxSlot () const
 
void definePsfFlux (std::string const &name)
 Set the measurement used for the PsfFlux slot.
 
FluxSlotDefinition constgetModelFluxSlot () const
 
void defineModelFlux (std::string const &name)
 Set the measurement used for the ModelFlux slot.
 
FluxSlotDefinition constgetApFluxSlot () const
 
void defineApFlux (std::string const &name)
 Set the measurement used for the ApFlux slot.
 
FluxSlotDefinition constgetGaussianFluxSlot () const
 
void defineGaussianFlux (std::string const &name)
 Set the measurement used for the GaussianFlux slot.
 
FluxSlotDefinition constgetCalibFluxSlot () const
 
void defineCalibFlux (std::string const &name)
 Set the measurement used for the CalibFlux slot.
 
CentroidSlotDefinition constgetCentroidSlot () const
 
void defineCentroid (std::string const &name)
 Set the measurement used for the Centroid slot.
 
ShapeSlotDefinition constgetShapeSlot () const
 
void defineShape (std::string const &name)
 Set the measurement used for the Shape slot.
 
SourceTableoperator= (SourceTable const &)=delete
 
SourceTableoperator= (SourceTable &&)=delete
 
std::shared_ptr< IdFactorygetIdFactory ()
 Return the object that generates IDs for the table (may be null).
 
std::shared_ptr< IdFactory constgetIdFactory () const
 Return the object that generates IDs for the table (may be null).
 
void setIdFactory (std::shared_ptr< IdFactory > f)
 Switch to a new IdFactory – object that generates IDs for the table (may be null).
 
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< SourceTablemake (Schema const &schema, std::shared_ptr< IdFactory > const &idFactory)
 Construct a new table.
 
static std::shared_ptr< SourceTablemake (Schema const &schema)
 Construct a new table.
 
static Schema makeMinimalSchema ()
 Return a minimal schema for Source tables and records.
 
static bool checkSchema (Schema const &other)
 Return true if the given schema is a valid SourceTable schema.
 
static Key< RecordIdgetParentKey ()
 Key for the parent ID.
 
static Key< RecordIdgetIdKey ()
 Get keys for standard fields shared by all references.
 
static CoordKey getCoordKey ()
 Key for the celestial coordinates.
 

Static Public Attributes

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

Protected Member Functions

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

Private Member Functions

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

Friends

class io::FitsWriter
 
class SourceRecord
 

Detailed Description

Table class that contains measurements made on a single exposure.

Definition at line 217 of file Source.h.

Member Typedef Documentation

◆ Catalog

Definition at line 221 of file Source.h.

◆ ColumnView

Definition at line 220 of file Source.h.

◆ ConstCatalog

Definition at line 222 of file Source.h.

◆ Record

Definition at line 219 of file Source.h.

Constructor & Destructor Documentation

◆ SourceTable() [1/3]

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

Definition at line 409 of file Source.cc.

410 : SimpleTable(schema, idFactory), _slots(schema) {}
SimpleTable(Schema const &schema, std::shared_ptr< IdFactory > const &idFactory)
Definition Simple.cc:84

◆ SourceTable() [2/3]

lsst::afw::table::SourceTable::SourceTable ( SourceTable const & other)
protecteddefault

◆ SourceTable() [3/3]

lsst::afw::table::SourceTable::SourceTable ( SourceTable && other)
protected

Definition at line 414 of file Source.cc.

414: SourceTable(other) {}
SourceTable(Schema const &schema, std::shared_ptr< IdFactory > const &idFactory)
Definition Source.cc:409

Member Function Documentation

◆ _clone()

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

Clone implementation with noncovariant return types.

Reimplemented from lsst::afw::table::SimpleTable.

Definition at line 437 of file Source.cc.

437 {
438 return std::shared_ptr<SourceTable>(new SourceTable(*this));
439}

◆ _makeRecord()

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

Default-construct an associated record (protected implementation).

Reimplemented from lsst::afw::table::SimpleTable.

Definition at line 441 of file Source.cc.

441 {
442 auto record = constructRecord<SourceRecord>();
443 if (getIdFactory()) record->setId((*getIdFactory())());
444 return record;
445}
std::shared_ptr< IdFactory > getIdFactory()
Return the object that generates IDs for the table (may be null).
Definition Simple.h:155

◆ checkSchema()

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

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

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

Definition at line 270 of file Source.h.

270{ return other.contains(getMinimalSchema().schema); }

◆ clone()

std::shared_ptr< SourceTable > lsst::afw::table::SourceTable::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 276 of file Source.h.

276{ return std::static_pointer_cast<SourceTable>(_clone()); }
std::shared_ptr< BaseTable > _clone() const override
Clone implementation with noncovariant return types.
Definition Source.cc:437

◆ 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< SourceRecord > lsst::afw::table::SourceTable::copyRecord ( 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 284 of file Source.h.

284 {
285 return std::static_pointer_cast<SourceRecord>(BaseTable::copyRecord(other));
286 }
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< SourceRecord > lsst::afw::table::SourceTable::copyRecord ( BaseRecord const & other,
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 289 of file Source.h.

289 {
290 return std::static_pointer_cast<SourceRecord>(BaseTable::copyRecord(other, mapper));
291 }
SchemaMapper * mapper

◆ defineApFlux()

void lsst::afw::table::SourceTable::defineApFlux ( std::string const & name)
inline

Set the measurement used for the ApFlux slot.

The definitions for slots are actually managed by the Schema object, and its associated AliasMap, so this simply sets the "slot_ApFlux" alias to point to the given field name prefix. See FluxSlotDefinition for more information.

Definition at line 328 of file Source.h.

328 {
329 getSchema().getAliasMap()->set(getApFluxSlot().getAlias(), name);
330 }
Schema getSchema() const
Return the table's schema.
Definition BaseTable.h:137
std::shared_ptr< AliasMap > getAliasMap() const
Return the map of aliases.
Definition Schema.h:279
FluxSlotDefinition const & getApFluxSlot() const
Definition Source.h:319

◆ defineCalibFlux()

void lsst::afw::table::SourceTable::defineCalibFlux ( std::string const & name)
inline

Set the measurement used for the CalibFlux slot.

The definitions for slots are actually managed by the Schema object, and its associated AliasMap, so this simply sets the "slot_CalibFlux" alias to point to the given field name prefix. See FluxSlotDefinition for more information.

Definition at line 354 of file Source.h.

354 {
355 getSchema().getAliasMap()->set(getCalibFluxSlot().getAlias(), name);
356 }
FluxSlotDefinition const & getCalibFluxSlot() const
Definition Source.h:345

◆ defineCentroid()

void lsst::afw::table::SourceTable::defineCentroid ( std::string const & name)
inline

Set the measurement used for the Centroid slot.

The definitions for slots are actually managed by the Schema object, and its associated AliasMap, so this simply sets the "slot_Centroid" alias to point to the given field name prefix. See CentroidSlotDefinition for more information.

Definition at line 367 of file Source.h.

367 {
368 getSchema().getAliasMap()->set(getCentroidSlot().getAlias(), name);
369 }
CentroidSlotDefinition const & getCentroidSlot() const
Definition Source.h:358

◆ defineGaussianFlux()

void lsst::afw::table::SourceTable::defineGaussianFlux ( std::string const & name)
inline

Set the measurement used for the GaussianFlux slot.

The definitions for slots are actually managed by the Schema object, and its associated AliasMap, so this simply sets the "slot_GaussianFlux" alias to point to the given field name prefix. See FluxSlotDefinition for more information.

Definition at line 341 of file Source.h.

341 {
342 getSchema().getAliasMap()->set(getGaussianFluxSlot().getAlias(), name);
343 }
FluxSlotDefinition const & getGaussianFluxSlot() const
Definition Source.h:332

◆ defineModelFlux()

void lsst::afw::table::SourceTable::defineModelFlux ( std::string const & name)
inline

Set the measurement used for the ModelFlux slot.

The definitions for slots are actually managed by the Schema object, and its associated AliasMap, so this simply sets the "slot_ModelFlux" alias to point to the given field name prefix. See FluxSlotDefinition for more information.

Definition at line 315 of file Source.h.

315 {
316 getSchema().getAliasMap()->set(getModelFluxSlot().getAlias(), name);
317 }
FluxSlotDefinition const & getModelFluxSlot() const
Definition Source.h:306

◆ definePsfFlux()

void lsst::afw::table::SourceTable::definePsfFlux ( std::string const & name)
inline

Set the measurement used for the PsfFlux slot.

The definitions for slots are actually managed by the Schema object, and its associated AliasMap, so this simply sets the "slot_PsfFlux" alias to point to the given field name prefix. See FluxSlotDefinition for more information.

Definition at line 302 of file Source.h.

302 {
303 getSchema().getAliasMap()->set(getPsfFluxSlot().getAlias(), name);
304 }
FluxSlotDefinition const & getPsfFluxSlot() const
Definition Source.h:293

◆ defineShape()

void lsst::afw::table::SourceTable::defineShape ( std::string const & name)
inline

Set the measurement used for the Shape slot.

The definitions for slots are actually managed by the Schema object, and its associated AliasMap, so this simply sets the "slot_Shape" alias to point to the given field name prefix. See ShapeSlotDefinition for more information.

Definition at line 380 of file Source.h.

380 {
381 getSchema().getAliasMap()->set(getShapeSlot().getAlias(), name);
382 }
ShapeSlotDefinition const & getShapeSlot() const
Definition Source.h:371

◆ getApFluxSlot()

FluxSlotDefinition const & lsst::afw::table::SourceTable::getApFluxSlot ( ) const
inline

Definition at line 319 of file Source.h.

319{ return _slots.defApFlux; }
FluxSlotDefinition defApFlux
Definition slots.h:221

◆ 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

◆ getCalibFluxSlot()

FluxSlotDefinition const & lsst::afw::table::SourceTable::getCalibFluxSlot ( ) const
inline

Definition at line 345 of file Source.h.

345{ return _slots.defCalibFlux; }
FluxSlotDefinition defCalibFlux
Definition slots.h:224

◆ getCentroidSlot()

CentroidSlotDefinition const & lsst::afw::table::SourceTable::getCentroidSlot ( ) const
inline

Definition at line 358 of file Source.h.

358{ return _slots.defCentroid; }
CentroidSlotDefinition defCentroid
Definition slots.h:225

◆ getCoordKey()

static CoordKey lsst::afw::table::SimpleTable::getCoordKey ( )
inlinestaticinherited

Key for the celestial coordinates.

Definition at line 172 of file Simple.h.

172{ return getMinimalSchema().coord; }

◆ getGaussianFluxSlot()

FluxSlotDefinition const & lsst::afw::table::SourceTable::getGaussianFluxSlot ( ) const
inline

Definition at line 332 of file Source.h.

332{ return _slots.defGaussianFlux; }
FluxSlotDefinition defGaussianFlux
Definition slots.h:222

◆ getIdFactory() [1/2]

std::shared_ptr< IdFactory > lsst::afw::table::SimpleTable::getIdFactory ( )
inlineinherited

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

Definition at line 155 of file Simple.h.

155{ return _idFactory; }

◆ getIdFactory() [2/2]

std::shared_ptr< IdFactory const > lsst::afw::table::SimpleTable::getIdFactory ( ) const
inlineinherited

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

Definition at line 158 of file Simple.h.

158{ return _idFactory; }

◆ getIdKey()

static Key< RecordId > lsst::afw::table::SimpleTable::getIdKey ( )
inlinestaticinherited

Get keys for standard fields shared by all references.

These keys are used to implement getters and setters on SimpleRecord. Key for the unique ID.

Definition at line 170 of file Simple.h.

170{ return getMinimalSchema().id; }

◆ 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; }

◆ getModelFluxSlot()

FluxSlotDefinition const & lsst::afw::table::SourceTable::getModelFluxSlot ( ) const
inline

Definition at line 306 of file Source.h.

306{ return _slots.defModelFlux; }
FluxSlotDefinition defModelFlux
Definition slots.h:223

◆ getParentKey()

static Key< RecordId > lsst::afw::table::SourceTable::getParentKey ( )
inlinestatic

Key for the parent ID.

Definition at line 273 of file Source.h.

273{ return getMinimalSchema().parent; }

◆ getPsfFluxSlot()

FluxSlotDefinition const & lsst::afw::table::SourceTable::getPsfFluxSlot ( ) const
inline

Definition at line 293 of file Source.h.

293{ return _slots.defPsfFlux; }
FluxSlotDefinition defPsfFlux
Definition slots.h:220

◆ 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; }

◆ getShapeSlot()

ShapeSlotDefinition const & lsst::afw::table::SourceTable::getShapeSlot ( ) const
inline

Definition at line 371 of file Source.h.

371{ return _slots.defShape; }
ShapeSlotDefinition defShape
Definition slots.h:226

◆ handleAliasChange()

void lsst::afw::table::SourceTable::handleAliasChange ( std::string const & alias)
overrideprotectedvirtual

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

Definition at line 416 of file Source.cc.

416 {
417 if (alias.compare(0, 4, "slot") != 0) {
418 return;
419 }
420 _slots.handleAliasChange(alias, getSchema());
421}
void handleAliasChange(std::string const &alias, Schema const &schema)
Handle a callback from an AliasMap informing the table that an alias has changed.
Definition slots.cc:116

◆ make() [1/2]

static std::shared_ptr< SourceTable > lsst::afw::table::SourceTable::make ( Schema const & schema)
inlinestatic

Construct a new table.

Parameters
[in]schemaSchema that defines the fields, offsets, and record size for the table.

This overload sets the ID factory to IdFactory::makeSimple().

Definition at line 244 of file Source.h.

244 {
245 return make(schema, IdFactory::makeSimple());
246 }
static std::shared_ptr< IdFactory > makeSimple()
Return a simple IdFactory that simply counts from 1.
Definition IdFactory.cc:70
static std::shared_ptr< SourceTable > make(Schema const &schema, std::shared_ptr< IdFactory > const &idFactory)
Construct a new table.
Definition Source.cc:400

◆ make() [2/2]

std::shared_ptr< SourceTable > lsst::afw::table::SourceTable::make ( Schema const & schema,
std::shared_ptr< IdFactory > const & idFactory )
static

Construct a new table.

Parameters
[in]schemaSchema that defines the fields, offsets, and record size for the table.
[in]idFactoryFactory class to generate record IDs when they are not explicitly given. If null, record IDs will default to zero.

Note that not passing an IdFactory at all will call the other override of make(), which will set the ID factory to IdFactory::makeSimple().

Definition at line 400 of file Source.cc.

401 {
402 if (!checkSchema(schema)) {
404 "Schema for Source must contain at least the keys defined by getMinimalSchema().");
405 }
406 return std::shared_ptr<SourceTable>(new SourceTable(schema, idFactory));
407}
#define LSST_EXCEPT(type,...)
Create an exception with a given type.
Definition Exception.h:48
static bool checkSchema(Schema const &other)
Return true if the given schema is a valid SourceTable schema.
Definition Source.h:270
Reports invalid arguments.
Definition Runtime.h:66

◆ makeFitsWriter()

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

Reimplemented from lsst::afw::table::SimpleTable.

Definition at line 433 of file Source.cc.

433 {
434 return std::make_shared<SourceFitsWriter>(fitsfile, flags);
435}

◆ makeMinimalSchema()

static Schema lsst::afw::table::SourceTable::makeMinimalSchema ( )
inlinestatic

Return a minimal schema for Source tables and records.

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

Keys for the standard fields added by this routine can be obtained from other static member functions of the SourceTable class.

Definition at line 258 of file Source.h.

258 {
259 Schema r = getMinimalSchema().schema;
260 r.disconnectAliases();
261 return r;
262 }

◆ makeRecord()

std::shared_ptr< SourceRecord > lsst::afw::table::SourceTable::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 279 of file Source.h.

279 {
280 return std::static_pointer_cast<SourceRecord>(_makeRecord());
281 }
std::shared_ptr< BaseRecord > _makeRecord() override
Default-construct an associated record (protected implementation).
Definition Source.cc:441

◆ operator=() [1/2]

SourceTable & lsst::afw::table::SourceTable::operator= ( SourceTable && )
delete

◆ operator=() [2/2]

SourceTable & lsst::afw::table::SourceTable::operator= ( SourceTable 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::table::SimpleTable::setIdFactory ( std::shared_ptr< IdFactory > f)
inlineinherited

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

Definition at line 161 of file Simple.h.

161{ _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

◆ io::FitsWriter

Definition at line 411 of file Source.h.

◆ SourceRecord

Definition at line 412 of file Source.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: