Loading [MathJax]/extensions/tex2jax.js
LSST Applications g04a91732dc+a777afbe81,g07dc498a13+7e3c5f68a2,g12483e3c20+0145ec33cd,g1409bbee79+7e3c5f68a2,g1a7e361dbc+7e3c5f68a2,g1fd858c14a+9f35e23ec3,g35bb328faa+fcb1d3bbc8,g3ad4f90e5c+0145ec33cd,g3bd4b5ce2c+cbf1bea503,g4e0f332c67+5d362be553,g53246c7159+fcb1d3bbc8,g5477a8d5ce+db04660fe6,g60b5630c4e+0145ec33cd,g623d845a50+0145ec33cd,g6f0c2978f1+3526b51a37,g75b6c65c88+d54b601591,g78460c75b0+2f9a1b4bcd,g786e29fd12+cf7ec2a62a,g7b71ed6315+fcb1d3bbc8,g8852436030+4639f750a5,g89139ef638+7e3c5f68a2,g9125e01d80+fcb1d3bbc8,g919ac25b3e+6220c5324a,g95236ca021+f7a31438ed,g989de1cb63+7e3c5f68a2,g9f33ca652e+2d6fa11d35,gaaedd4e678+7e3c5f68a2,gabe3b4be73+1e0a283bba,gb1101e3267+4a428ef779,gb4a253aaf5+0122250889,gb58c049af0+f03b321e39,gc99c83e5f0+76d20ab76d,gcf25f946ba+4639f750a5,gd6cbbdb0b4+c8606af20c,gde0f65d7ad+3d8a3b7e46,ge278dab8ac+932305ba37,gf795337580+03b96afe58,gfba249425e+fcb1d3bbc8,w.2025.08
LSST Data Management Base Package
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
fwd.h
Go to the documentation of this file.
1// -*- lsst-c++ -*-
2/*
3 * LSST Data Management System
4 * Copyright 2008-2013 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 LSST_AFW_TABLE_fwd_h_INCLUDED
25#define LSST_AFW_TABLE_fwd_h_INCLUDED
26
27/*
28 * Forward declarations and typedefs for afw::table
29 *
30 * Because many of the types in afw::table are actually typedefs of template classes,
31 * manual forward declarations are verbose and fragile. This file provides forward
32 * declarations and typedefs (of forward declarations) for all public classes in
33 * the package.
34 */
35
36#include <vector>
37
38#include "lsst/afw/table/misc.h"
39
40namespace lsst {
41namespace afw {
42namespace table {
43
44template <typename T>
45class Key;
46template <typename T>
47struct Field;
48template <typename T>
49struct SchemaItem;
50class Schema;
51class SchemaMapper;
52
53template <typename T>
55template <typename T>
56class InputFunctorKey;
57
58template <typename T>
59class ColumnViewT;
60template <typename RecordT>
61class CatalogT;
62template <typename RecordT>
63class SortedCatalogT;
64template <typename RecordT>
66template <typename RecordT>
68
69class BaseRecord;
70class BaseTable;
71class BaseColumnView;
74
75class IdFactory;
76class SimpleRecord;
77class SimpleTable;
81
82class SourceRecord;
83class SourceTable;
87
88class ExposureRecord;
89class ExposureTable;
93
94class AmpInfoRecord;
95class AmpInfoTable;
99
100template <typename Record1, typename Record2>
101struct Match;
102
106
110
111namespace io {
112
113class Writer;
114class Reader;
115class FitsWriter;
116class FitsReader;
117class Persistable;
118class InputArchive;
119class OutputArchive;
120class CatalogVector;
121
122} // namespace io
123} // namespace table
124} // namespace afw
125} // namespace lsst
126
127#endif // !LSST_AFW_TABLE_fwd_h_INCLUDED
Column-wise view into a sequence of records that have been allocated contiguously.
Base class for all records.
Definition BaseRecord.h:31
Base class for all tables.
Definition BaseTable.h:61
A custom container class for records, based on std::vector.
Definition Catalog.h:98
Custom catalog class for ExposureRecord/Table.
Definition Exposure.h:310
Record class used to store exposure metadata.
Definition Exposure.h:79
Table class used to store exposure metadata.
Definition Exposure.h:195
A polymorphic functor base class for generating record IDs for a table.
Definition IdFactory.h:21
Base class for objects that can set a value on a record, but are not a true Key themselves.
Definition FunctorKey.h:57
A class used as a handle to a particular field in a table.
Definition Key.h:53
Base class for objects that can extract a value from a record, but are not a true Key themselves.
Definition FunctorKey.h:40
Defines the fields and offsets for a table.
Definition Schema.h:51
A mapping between the keys of two Schemas, used to copy data between them.
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
Custom catalog class for record/table subclasses that are guaranteed to have an ID,...
Record class that contains measurements made on a single exposure.
Definition Source.h:78
Table class that contains measurements made on a single exposure.
Definition Source.h:217
std::vector< ReferenceMatch > ReferenceMatchVector
Definition fwd.h:108
std::vector< SimpleMatch > SimpleMatchVector
Definition fwd.h:107
SortedCatalogT< SimpleRecord > SimpleCatalog
Definition fwd.h:79
ColumnViewT< ExposureRecord > ExposureColumnView
Definition Exposure.h:487
ExposureCatalogT< ExposureRecord > ExposureCatalog
Definition Exposure.h:488
ColumnViewT< SimpleRecord > SimpleColumnView
Definition fwd.h:78
CatalogT< const BaseRecord > ConstBaseCatalog
Definition fwd.h:73
CatalogT< const AmpInfoRecord > ConstAmpInfoCatalog
Definition fwd.h:98
std::vector< SourceMatch > SourceMatchVector
Definition fwd.h:109
Match< SourceRecord, SourceRecord > SourceMatch
Definition fwd.h:105
SortedCatalogT< const SimpleRecord > ConstSimpleCatalog
Definition fwd.h:80
ExposureCatalogT< const ExposureRecord > ConstExposureCatalog
Definition Exposure.h:489
CatalogT< AmpInfoRecord > AmpInfoCatalog
Definition fwd.h:97
Match< SimpleRecord, SourceRecord > ReferenceMatch
Definition fwd.h:104
SortedCatalogT< const SourceRecord > ConstSourceCatalog
Definition fwd.h:86
CatalogT< BaseRecord > BaseCatalog
Definition fwd.h:72
ColumnViewT< AmpInfoRecord > AmpInfoColumnView
Definition fwd.h:96
Match< SimpleRecord, SimpleRecord > SimpleMatch
Definition fwd.h:103
A description of a field in a table.
Definition Field.h:24
Lightweight representation of a geometric match between two records.
Definition Match.h:67
A simple pair-like struct for mapping a Field (name and description) with a Key (used for actual data...
Definition SchemaImpl.h:22