LSSTApplications  10.0+286,10.0+36,10.0+46,10.0-2-g4f67435,10.1+152,10.1+37,11.0,11.0+1,11.0-1-g47edd16,11.0-1-g60db491,11.0-1-g7418c06,11.0-2-g04d2804,11.0-2-g68503cd,11.0-2-g818369d,11.0-2-gb8b8ce7
LSSTDataManagementBasePackage
Public Member Functions | Static Public Member Functions | Private Attributes | List of all members
lsst::meas::base::ShapeResultKey Class Reference

A FunctorKey for ShapeResult. More...

#include <ShapeUtilities.h>

Inheritance diagram for lsst::meas::base::ShapeResultKey:
lsst::afw::table::FunctorKey< ShapeResult > lsst::afw::table::OutputFunctorKey< ShapeResult > lsst::afw::table::InputFunctorKey< ShapeResult >

Public Member Functions

 ShapeResultKey ()
 Default constructor; instance will not be usuable unless subsequently assigned to. More...
 
 ShapeResultKey (afw::table::QuadrupoleKey const &shape, afw::table::CovarianceMatrixKey< ErrElement, 3 > const &shapeErr)
 Construct from a pair of Keys. More...
 
 ShapeResultKey (afw::table::SubSchema const &s)
 Construct from a subschema, assuming _xx, _yy, etc. subfields. More...
 
virtual ShapeResult get (afw::table::BaseRecord const &record) const
 Get a ShapeResult from the given record. More...
 
virtual void set (afw::table::BaseRecord &record, ShapeResult const &value) const
 Set a ShapeResult in the given record. More...
 
bool isValid () const
 Return True if the shape key is valid. More...
 
afw::table::QuadrupoleKey getShape () const
 Return a FunctorKey to just the shape value. More...
 
afw::table::CovarianceMatrixKey
< ErrElement, 3 > 
getShapeErr () const
 Return a FunctorKey to just the uncertainty matrix. More...
 
afw::table::Key< ShapeElementgetIxx () const
 Return a Key for the xx moment. More...
 
afw::table::Key< ShapeElementgetIyy () const
 Return a Key for the yy moment. More...
 
afw::table::Key< ShapeElementgetIxy () const
 Return a Key for the xy moment. More...
 
bool operator== (ShapeResultKey const &other) const
 Compare the FunctorKey for equality with another, using the underlying Keys. More...
 
bool operator!= (ShapeResultKey const &other) const
 Compare the FunctorKey for equality with another, using the underlying Keys. More...
 
- Public Member Functions inherited from lsst::afw::table::OutputFunctorKey< ShapeResult >
virtual ~OutputFunctorKey ()
 
- Public Member Functions inherited from lsst::afw::table::InputFunctorKey< ShapeResult >
virtual void set (BaseRecord &record, ShapeResultconst &value) const =0
 
virtual ~InputFunctorKey ()
 

Static Public Member Functions

static ShapeResultKey addFields (afw::table::Schema &schema, std::string const &name, std::string const &doc, UncertaintyEnum uncertainty, afw::table::CoordinateType coordType=afw::table::CoordinateType::PIXEL)
 Add the appropriate fields to a Schema, and return a ShapeResultKey that manages them. More...
 

Private Attributes

afw::table::QuadrupoleKey _shape
 
afw::table::CovarianceMatrixKey
< ErrElement, 3 > 
_shapeErr
 

Detailed Description

A FunctorKey for ShapeResult.

This class makes it easy to copy shapes and their uncertainties to and from records, and provides a method to add the appropriate fields to a Schema.

Definition at line 115 of file ShapeUtilities.h.

Constructor & Destructor Documentation

lsst::meas::base::ShapeResultKey::ShapeResultKey ( )
inline

Default constructor; instance will not be usuable unless subsequently assigned to.

Definition at line 138 of file ShapeUtilities.h.

138 : _shape(), _shapeErr() {}
afw::table::QuadrupoleKey _shape
afw::table::CovarianceMatrixKey< ErrElement, 3 > _shapeErr
lsst::meas::base::ShapeResultKey::ShapeResultKey ( afw::table::QuadrupoleKey const &  shape,
afw::table::CovarianceMatrixKey< ErrElement, 3 > const &  shapeErr 
)
inline

Construct from a pair of Keys.

Definition at line 141 of file ShapeUtilities.h.

144  :
145  _shape(shape), _shapeErr(shapeErr)
146  {}
afw::table::QuadrupoleKey _shape
afw::table::CovarianceMatrixKey< ErrElement, 3 > _shapeErr
lsst::meas::base::ShapeResultKey::ShapeResultKey ( afw::table::SubSchema const &  s)

Construct from a subschema, assuming _xx, _yy, etc. subfields.

If a schema has "a_xx", "a_yy", etc. fields, this constructor allows you to construct a ShapeResultKey via:

*

Definition at line 141 of file ShapeUtilities.cc.

141  :
142  _shape(s)
143 {
144  static std::vector<std::string> names = getNameVector(); // C++11 TODO: just use initializer list
145  try {
146  _shapeErr = afw::table::CovarianceMatrixKey<ErrElement,3>(s, names);
147  } catch (pex::exceptions::NotFoundError &) {}
148 }
afw::table::QuadrupoleKey _shape
afw::table::CovarianceMatrixKey< ErrElement, 3 > _shapeErr

Member Function Documentation

ShapeResultKey lsst::meas::base::ShapeResultKey::addFields ( afw::table::Schema schema,
std::string const &  name,
std::string const &  doc,
UncertaintyEnum  uncertainty,
afw::table::CoordinateType  coordType = afw::table::CoordinateType::PIXEL 
)
static

Add the appropriate fields to a Schema, and return a ShapeResultKey that manages them.

Parameters
[in,out]schemaSchema to add fields to.
[in]nameName prefix for all fields; "_xx", "_yy", etc. will be appended to this to form the full field names.
[in]docString used as the documentation for the xx, yy, xy fields.
[in]uncertaintyEnum indicating which (if any) uncertainty values will be saved.

The unit for all fields will be pixels^2 (pixels^4 for covariances).

Definition at line 75 of file ShapeUtilities.cc.

81  {
84  schema,
85  name,
86  doc,
87  coordType
88  );
89  if (uncertainty != NO_UNCERTAINTY) {
90  std::vector< afw::table::Key<ErrElement> > sigma(3);
91  std::vector< afw::table::Key<ErrElement> > cov;
92  sigma[0] = schema.addField<ErrElement>(
93  schema.join(name, "xxSigma"), "1-sigma uncertainty on xx moment",
94  coordType == afw::table::CoordinateType::PIXEL ? "pixels^2" : "radians^2"
95  );
96  sigma[1] = schema.addField<ErrElement>(
97  schema.join(name, "yySigma"), "1-sigma uncertainty on yy moment",
98  coordType == afw::table::CoordinateType::PIXEL ? "pixels^2" : "radians^2"
99  );
100  sigma[2] = schema.addField<ErrElement>(
101  schema.join(name, "xySigma"), "1-sigma uncertainty on xy moment",
102  coordType == afw::table::CoordinateType::PIXEL ? "pixels^2" : "radians^2"
103  );
104  if (uncertainty == FULL_COVARIANCE) {
105  cov.push_back(
106  schema.addField<ErrElement>(
107  schema.join(name, "xx_yy_Cov"), "uncertainty covariance in xx and yy",
108  coordType == afw::table::CoordinateType::PIXEL ? "pixels^4" : "radians^4"
109  )
110  );
111  cov.push_back(
112  schema.addField<ErrElement>(
113  schema.join(name, "xx_xy_Cov"), "uncertainty covariance in xx and xy",
114  coordType == afw::table::CoordinateType::PIXEL ? "pixels^4" : "radians^4"
115  )
116  );
117  cov.push_back(
118  schema.addField<ErrElement>(
119  schema.join(name, "yy_xy_Cov"), "uncertainty covariance in yy and xy",
120  coordType == afw::table::CoordinateType::PIXEL ? "pixels^4" : "radians^4"
121  )
122  );
123  }
124  r._shapeErr = afw::table::CovarianceMatrixKey<ErrElement,3>(sigma, cov);
125  }
126  return r;
127 }
table::Key< std::string > name
Definition: ApCorrMap.cc:71
afw::table::Schema schema
Definition: GaussianPsf.cc:41
ShapeResultKey()
Default constructor; instance will not be usuable unless subsequently assigned to.
The full covariance matrix is provided.
Definition: constants.h:44
float ErrElement
Definition: constants.h:53
afw::table::Key< double > sigma
Definition: GaussianPsf.cc:43
static QuadrupoleKey addFields(Schema &schema, std::string const &name, std::string const &doc, CoordinateType coordType=CoordinateType::PIXEL)
Algorithm provides no uncertainy information at all.
Definition: constants.h:42
ShapeResult lsst::meas::base::ShapeResultKey::get ( afw::table::BaseRecord const &  record) const
virtual

Get a ShapeResult from the given record.

Implements lsst::afw::table::OutputFunctorKey< ShapeResult >.

Definition at line 150 of file ShapeUtilities.cc.

150  {
151  ShapeResult r;
152  r.setShape(record.get(_shape));
153  if (_shapeErr.isValid()) {
154  r.setShapeErr(record.get(_shapeErr));
155  }
156  return r;
157 }
afw::table::QuadrupoleKey _shape
bool isValid() const
Return True if all the constituent sigma Keys are valid.
afw::table::CovarianceMatrixKey< ErrElement, 3 > _shapeErr
afw::table::Key<ShapeElement> lsst::meas::base::ShapeResultKey::getIxx ( ) const
inline

Return a Key for the xx moment.

Definition at line 183 of file ShapeUtilities.h.

183 { return _shape.getIxx(); }
Key< double > getIxx() const
Return a constituent Key.
Definition: aggregates.h:248
afw::table::QuadrupoleKey _shape
afw::table::Key<ShapeElement> lsst::meas::base::ShapeResultKey::getIxy ( ) const
inline

Return a Key for the xy moment.

Definition at line 189 of file ShapeUtilities.h.

189 { return _shape.getIxy(); }
Key< double > getIxy() const
Return a constituent Key.
Definition: aggregates.h:250
afw::table::QuadrupoleKey _shape
afw::table::Key<ShapeElement> lsst::meas::base::ShapeResultKey::getIyy ( ) const
inline

Return a Key for the yy moment.

Definition at line 186 of file ShapeUtilities.h.

186 { return _shape.getIyy(); }
Key< double > getIyy() const
Return a constituent Key.
Definition: aggregates.h:249
afw::table::QuadrupoleKey _shape
afw::table::QuadrupoleKey lsst::meas::base::ShapeResultKey::getShape ( ) const
inline

Return a FunctorKey to just the shape value.

Definition at line 177 of file ShapeUtilities.h.

177 { return _shape; }
afw::table::QuadrupoleKey _shape
afw::table::CovarianceMatrixKey<ErrElement,3> lsst::meas::base::ShapeResultKey::getShapeErr ( ) const
inline

Return a FunctorKey to just the uncertainty matrix.

Definition at line 180 of file ShapeUtilities.h.

180 { return _shapeErr; }
afw::table::CovarianceMatrixKey< ErrElement, 3 > _shapeErr
bool lsst::meas::base::ShapeResultKey::isValid ( ) const
inline

Return True if the shape key is valid.

Definition at line 174 of file ShapeUtilities.h.

174 { return _shape.isValid() && _shapeErr.isValid(); }
bool isValid() const
Return True if all the constituent Keys are valid.
Definition: aggregates.h:244
afw::table::QuadrupoleKey _shape
bool isValid() const
Return True if all the constituent sigma Keys are valid.
afw::table::CovarianceMatrixKey< ErrElement, 3 > _shapeErr
bool lsst::meas::base::ShapeResultKey::operator!= ( ShapeResultKey const &  other) const
inline

Compare the FunctorKey for equality with another, using the underlying Keys.

Definition at line 170 of file ShapeUtilities.h.

170 { return !(*this == other); }
bool lsst::meas::base::ShapeResultKey::operator== ( ShapeResultKey const &  other) const
inline

Compare the FunctorKey for equality with another, using the underlying Keys.

Definition at line 167 of file ShapeUtilities.h.

167  {
168  return _shape == other._shape && _shapeErr == other._shapeErr;
169  }
afw::table::QuadrupoleKey _shape
afw::table::CovarianceMatrixKey< ErrElement, 3 > _shapeErr
void lsst::meas::base::ShapeResultKey::set ( afw::table::BaseRecord record,
ShapeResult const &  value 
) const
virtual

Set a ShapeResult in the given record.

Definition at line 159 of file ShapeUtilities.cc.

159  {
160  record.set(_shape, value.getShape());
161  if (_shapeErr.isValid()) {
162  record.set(_shapeErr, value.getShapeErr());
163  }
164 }
afw::table::QuadrupoleKey _shape
bool isValid() const
Return True if all the constituent sigma Keys are valid.
afw::table::CovarianceMatrixKey< ErrElement, 3 > _shapeErr

Member Data Documentation

afw::table::QuadrupoleKey lsst::meas::base::ShapeResultKey::_shape
private

Definition at line 192 of file ShapeUtilities.h.

afw::table::CovarianceMatrixKey<ErrElement,3> lsst::meas::base::ShapeResultKey::_shapeErr
private

Definition at line 193 of file ShapeUtilities.h.


The documentation for this class was generated from the following files: