LSST Applications g04e9c324dd+8c5ae1fdc5,g0644efc3f0+09e1198e5e,g123d84c11c+8c5ae1fdc5,g1ec0fe41b4+6ec6b74de1,g1fd858c14a+3ffa984376,g3533f9d6cb+09e1198e5e,g35bb328faa+8c5ae1fdc5,g35ef7ab7cf+266198310b,g495290aba3+89f6b6dd9e,g53246c7159+8c5ae1fdc5,g60b5630c4e+09e1198e5e,g663da51e9b+8d6ae63d30,g6735e52a0d+29de3d959a,g67b6fd64d1+57193d00fb,g6c75a56628+7a48c497dd,g78460c75b0+7e33a9eb6d,g786e29fd12+668abc6043,g844c57033c+03ddc13274,g8852436030+08a5a9c358,g89139ef638+57193d00fb,g989de1cb63+57193d00fb,g9f33ca652e+945cd5ea73,ga1e959baac+5fbc491aed,ga2f891cd6c+09e1198e5e,gabe3b4be73+8856018cbb,gabf8522325+cc757f8247,gac2eed3f23+57193d00fb,gb1101e3267+9443485152,gb89ab40317+57193d00fb,gcf25f946ba+08a5a9c358,gd107969129+a4cb2c4ed1,gd6cbbdb0b4+8e46defd2a,gde0f65d7ad+31a6a3d176,ge278dab8ac+2322f1d6ea,ge410e46f29+57193d00fb,gf30d85a44d+f9c24d3818,gf5e32f922b+8c5ae1fdc5,gff02db199a+041df0bfe7,w.2025.28
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:
169 using MeasValue = geom::ellipses::Quadrupole;
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
SlotDefinition specialization for centroids.
Definition slots.h:120
lsst::geom::Point2D MeasValue
Type returned by accessing the slot measurement.
Definition slots.h:122
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
CovarianceMatrixKey< float, 2 > ErrKey
Key type used to access the slot uncertainty.
Definition slots.h:125
ErrKey getErrKey() const
Return the cached Key used to access the slot uncertainty.
Definition slots.h:137
Point2DKey MeasKey
Key type used to access the slot measurement.
Definition slots.h:124
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
double ErrValue
Type returned by accessing the slot uncertainty.
Definition slots.h:76
FluxSlotDefinition & operator=(FluxSlotDefinition &&)=default
Key< double > MeasKey
Key type used to access the slot measurement.
Definition slots.h:77
Key< double > ErrKey
Key type used to access the slot uncertainty.
Definition slots.h:78
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
double MeasValue
Type returned by accessing the slot measurement.
Definition slots.h:75
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
A class used as a handle to a particular field in a table.
Definition Key.h:53
A FunctorKey used to get or set a geom::ellipses::Quadrupole from a tuple of constituent Keys.
Definition aggregates.h:369
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
CovarianceMatrixKey< float, 3 > ErrKey
Key type used to access the slot uncertainty.
Definition slots.h:172
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
QuadrupoleKey MeasKey
Key type used to access the slot measurement.
Definition slots.h:171
geom::ellipses::Quadrupole MeasValue
Type returned by accessing the slot measurement.
Definition slots.h:169
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
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:67
PointKey< double > Point2DKey
Definition aggregates.h:120
Point< double, 2 > Point2D
Definition Point.h:324
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