LSST Applications g013ef56533+d2224463a4,g199a45376c+0ba108daf9,g19c4beb06c+9f335b2115,g1fd858c14a+2459ca3e43,g210f2d0738+2d3d333a78,g262e1987ae+abbb004f04,g2825c19fe3+eedc38578d,g29ae962dfc+0cb55f06ef,g2cef7863aa+aef1011c0b,g35bb328faa+8c5ae1fdc5,g3fd5ace14f+19c3a54948,g47891489e3+501a489530,g4cdb532a89+a047e97985,g511e8cfd20+ce1f47b6d6,g53246c7159+8c5ae1fdc5,g54cd7ddccb+890c8e1e5d,g5fd55ab2c7+951cc3f256,g64539dfbff+2d3d333a78,g67b6fd64d1+501a489530,g67fd3c3899+2d3d333a78,g74acd417e5+0ea5dee12c,g786e29fd12+668abc6043,g87389fa792+8856018cbb,g89139ef638+501a489530,g8d7436a09f+5ea4c44d25,g8ea07a8fe4+81eaaadc04,g90f42f885a+34c0557caf,g9486f8a5af+165c016931,g97be763408+d5e351dcc8,gbf99507273+8c5ae1fdc5,gc2a301910b+2d3d333a78,gca7fc764a6+501a489530,gce8aa8abaa+8c5ae1fdc5,gd7ef33dd92+501a489530,gdab6d2f7ff+0ea5dee12c,ge410e46f29+501a489530,geaed405ab2+e3b4b2a692,gf9a733ac38+8c5ae1fdc5,w.2025.41
LSST Data Management Base Package
Loading...
Searching...
No Matches
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