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
slots.h
Go to the documentation of this file.
1// -*- lsst-c++ -*-
2#ifndef LSST_AFW_TABLE_slots_h_INCLUDED
3#define LSST_AFW_TABLE_slots_h_INCLUDED
4
6
7namespace lsst {
8
9namespace daf {
10namespace base {
11class PropertySet;
12}
13} // namespace daf
14
15namespace afw {
16
17namespace fits {
18class Fits;
19}; // namespace fits
20
21namespace table {
22
48public:
50 explicit SlotDefinition(std::string const &name) : _name(name) {}
51
53 std::string getName() const { return _name; }
54
60 std::string getAlias() const { return "slot_" + _name; }
61
62 SlotDefinition(SlotDefinition const &) = default;
66 ~SlotDefinition() = default;
67
68protected:
70};
71
74public:
75 using MeasValue = double;
76 using ErrValue = double;
79
81 explicit FluxSlotDefinition(std::string const &name) : SlotDefinition(name) {}
82
84 bool isValid() const { return _measKey.isValid(); }
85
87 MeasKey getMeasKey() const { return _measKey; }
88
90 ErrKey getErrKey() const { return _errKey; }
91
93 Key<Flag> getFlagKey() const { return _flagKey; }
94
105 void setKeys(std::string const &alias, Schema const &schema);
106
112
113private:
114 MeasKey _measKey;
115 ErrKey _errKey;
116 Key<Flag> _flagKey;
117};
118
121public:
123 using ErrValue = Eigen::Matrix<float, 2, 2>;
126
128 explicit CentroidSlotDefinition(std::string const &name) : SlotDefinition(name) {}
129
131 bool isValid() const { return _measKey.isValid(); }
132
134 MeasKey getMeasKey() const { return _measKey; }
135
137 ErrKey getErrKey() const { return _errKey; }
138
140 Key<Flag> getFlagKey() const { return _flagKey; }
141
152 void setKeys(std::string const &alias, Schema const &schema);
153
159
160private:
161 MeasKey _measKey;
162 ErrKey _errKey;
163 Key<Flag> _flagKey;
164};
165
168public:
170 using ErrValue = Eigen::Matrix<float, 3, 3>;
173
175 explicit ShapeSlotDefinition(std::string const &name) : SlotDefinition(name) {}
176
178 bool isValid() const { return _measKey.isValid(); }
179
181 MeasKey getMeasKey() const { return _measKey; }
182
184 ErrKey getErrKey() const { return _errKey; }
185
187 Key<Flag> getFlagKey() const { return _flagKey; }
188
199 void setKeys(std::string const &alias, Schema const &schema);
200
206
207private:
208 MeasKey _measKey;
209 ErrKey _errKey;
210 Key<Flag> _flagKey;
211};
212
234} // namespace table
235} // namespace afw
236} // namespace lsst
237
238#endif // !LSST_AFW_TABLE_slots_h_INCLUDED
An ellipse core with quadrupole moments as parameters.
Definition Quadrupole.h:47
Tag types used to declare specialized field types.
Definition misc.h:31
SlotDefinition specialization for centroids.
Definition slots.h:120
CentroidSlotDefinition(std::string const &name)
Construct a SlotDefinition from the name of the slot (e.g. "Centroid")
Definition slots.h:128
Eigen::Matrix< float, 2, 2 > ErrValue
Type returned by accessing the slot uncertainty.
Definition slots.h:123
CentroidSlotDefinition & operator=(CentroidSlotDefinition const &)=default
CentroidSlotDefinition(CentroidSlotDefinition const &)=default
Key< Flag > getFlagKey() const
Return the cached Key used to access the slot failure flag.
Definition slots.h:140
CentroidSlotDefinition & operator=(CentroidSlotDefinition &&)=default
CentroidSlotDefinition(CentroidSlotDefinition &&)=default
ErrKey getErrKey() const
Return the cached Key used to access the slot uncertainty.
Definition slots.h:137
bool isValid() const
Return true if the key associated with the measurement is valid.
Definition slots.h:131
MeasKey getMeasKey() const
Return the cached Key used to access the slot measurement.
Definition slots.h:134
void setKeys(std::string const &alias, Schema const &schema)
Update the cached Keys following an change of aliases in the given Schema.
Definition slots.cc:64
SlotDefinition specialization for fluxes.
Definition slots.h:73
Key< Flag > getFlagKey() const
Return the cached Key used to access the slot failure flag.
Definition slots.h:93
FluxSlotDefinition & operator=(FluxSlotDefinition const &)=default
bool isValid() const
Return true if the key associated with the measurement is valid.
Definition slots.h:84
MeasKey getMeasKey() const
Return the cached Key used to access the slot measurement.
Definition slots.h:87
FluxSlotDefinition & operator=(FluxSlotDefinition &&)=default
void setKeys(std::string const &alias, Schema const &schema)
Update the cached Keys following an change of aliases in the given Schema.
Definition slots.cc:32
FluxSlotDefinition(FluxSlotDefinition &&)=default
FluxSlotDefinition(std::string const &name)
Construct a SlotDefinition from the name of the slot (e.g. "PsfFlux")
Definition slots.h:81
FluxSlotDefinition(FluxSlotDefinition const &)=default
ErrKey getErrKey() const
Return the cached Key used to access the slot uncertainty.
Definition slots.h:90
bool isValid() const noexcept
Return true if the key was initialized to valid offset.
Definition Key.h:97
bool isValid() const noexcept
Return True if both the x and y Keys are valid.
Definition aggregates.h:106
A FunctorKey used to get or set a geom::ellipses::Quadrupole from a tuple of constituent Keys.
Definition aggregates.h:369
bool isValid() const noexcept
Return True if all the constituent Keys are valid.
Definition aggregates.h:429
Defines the fields and offsets for a table.
Definition Schema.h:51
SlotDefinition specialization for shapes.
Definition slots.h:167
ShapeSlotDefinition(ShapeSlotDefinition const &)=default
Eigen::Matrix< float, 3, 3 > ErrValue
Type returned by accessing the slot uncertainty.
Definition slots.h:170
ShapeSlotDefinition & operator=(ShapeSlotDefinition &&)=default
void setKeys(std::string const &alias, Schema const &schema)
Update the cached Keys following an change of aliases in the given Schema.
Definition slots.cc:96
ErrKey getErrKey() const
Return the cached Key used to access the slot uncertainty.
Definition slots.h:184
MeasKey getMeasKey() const
Return the cached Key used to access the slot measurement.
Definition slots.h:181
ShapeSlotDefinition(std::string const &name)
Construct a SlotDefinition from the name of the slot (e.g. "Shape")
Definition slots.h:175
Key< Flag > getFlagKey() const
Return the cached Key used to access the slot failure flag.
Definition slots.h:187
bool isValid() const
Return true if the key associated with the measurement is valid.
Definition slots.h:178
ShapeSlotDefinition & operator=(ShapeSlotDefinition const &)=default
ShapeSlotDefinition(ShapeSlotDefinition &&)=default
Base class for helper classes that define slots on SourceTable/SourceRecord.
Definition slots.h:47
std::string getName() const
Return the name of the slot (e.g. "Centroid" or "PsfFlux")
Definition slots.h:53
SlotDefinition & operator=(SlotDefinition &&)=default
SlotDefinition & operator=(SlotDefinition const &)=default
SlotDefinition(std::string const &name)
Construct a SlotDefinition from the name of the slot (e.g. "Centroid" or "PsfFlux")
Definition slots.h:50
SlotDefinition(SlotDefinition &&)=default
std::string getAlias() const
Return the alias field prefix used to lookup Keys for the slot.
Definition slots.h:60
SlotDefinition(SlotDefinition const &)=default
Class for storing generic metadata.
Definition PropertySet.h:66
PointKey< double > Point2DKey
Definition aggregates.h:120
Point< double, 2 > Point2D
Definition Point.h:324
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
SlotSuite(Schema const &schema)
Initialize the slots.
Definition slots.cc:126
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
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