LSSTApplications  8.0.0.0+107,8.0.0.1+13,9.1+18,9.2,master-g084aeec0a4,master-g0aced2eed8+6,master-g15627eb03c,master-g28afc54ef9,master-g3391ba5ea0,master-g3d0fb8ae5f,master-g4432ae2e89+36,master-g5c3c32f3ec+17,master-g60f1e072bb+1,master-g6a3ac32d1b,master-g76a88a4307+1,master-g7bce1f4e06+57,master-g8ff4092549+31,master-g98e65bf68e,master-ga6b77976b1+53,master-gae20e2b580+3,master-gb584cd3397+53,master-gc5448b162b+1,master-gc54cf9771d,master-gc69578ece6+1,master-gcbf758c456+22,master-gcec1da163f+63,master-gcf15f11bcc,master-gd167108223,master-gf44c96c709
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)
 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 79 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 101 of file ShapeUtilities.h.

101 : _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 104 of file ShapeUtilities.h.

107  :
108  _shape(shape), _shapeErr(shapeErr)
109  {}
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 125 of file ShapeUtilities.cc.

125  :
126  _shape(s)
127 {
128  static std::vector<std::string> names = getNameVector(); // C++11 TODO: just use initializer list
129  try {
130  _shapeErr = afw::table::CovarianceMatrixKey<ErrElement,3>(s, names);
131  } catch (pex::exceptions::NotFoundError &) {}
132 }
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 
)
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 66 of file ShapeUtilities.cc.

71  {
74  schema,
75  name,
76  doc,
77  "pixels^2"
78  );
79  if (uncertainty != NO_UNCERTAINTY) {
80  std::vector< afw::table::Key<ErrElement> > sigma(3);
81  std::vector< afw::table::Key<ErrElement> > cov;
82  sigma[0] = schema.addField<ErrElement>(
83  schema.join(name, "xxSigma"), "1-sigma uncertainty on xx moment", "pixels^2"
84  );
85  sigma[1] = schema.addField<ErrElement>(
86  schema.join(name, "yySigma"), "1-sigma uncertainty on yy moment", "pixels^2"
87  );
88  sigma[2] = schema.addField<ErrElement>(
89  schema.join(name, "xySigma"), "1-sigma uncertainty on xy moment", "pixels^2"
90  );
91  if (uncertainty == FULL_COVARIANCE) {
92  cov.push_back(
93  schema.addField<ErrElement>(
94  schema.join(name, "xx_yy_Cov"), "uncertainty covariance in xx and yy", "pixels^4"
95  )
96  );
97  cov.push_back(
98  schema.addField<ErrElement>(
99  schema.join(name, "xx_xy_Cov"), "uncertainty covariance in xx and xy", "pixels^4"
100  )
101  );
102  cov.push_back(
103  schema.addField<ErrElement>(
104  schema.join(name, "yy_xy_Cov"), "uncertainty covariance in yy and xy", "pixels^4"
105  )
106  );
107  }
108  r._shapeErr = afw::table::CovarianceMatrixKey<ErrElement,3>(sigma, cov);
109  }
110  return r;
111 }
ShapeResultKey()
Default constructor; instance will not be usuable unless subsequently assigned to.
static QuadrupoleKey addFields(Schema &schema, std::string const &name, std::string const &doc, std::string const &unit)
The full covariance matrix is provided.
Definition: constants.h:44
float ErrElement
Definition: constants.h:51
afw::table::Key< double > sigma
Definition: GaussianPsf.cc:42
tbl::Schema schema
Definition: CoaddPsf.cc:324
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 134 of file ShapeUtilities.cc.

134  {
135  ShapeResult r;
136  r.setShape(record.get(_shape));
137  if (_shapeErr.isValid()) {
138  r.setShapeErr(record.get(_shapeErr));
139  }
140  return r;
141 }
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::SourceRecord * record
afw::table::Key<ShapeElement> lsst::meas::base::ShapeResultKey::getIxx ( ) const
inline

Return a Key for the xx moment.

Definition at line 146 of file ShapeUtilities.h.

146 { return _shape.getIxx(); }
Key< double > getIxx() const
Return a constituent Key.
Definition: aggregates.h:192
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 152 of file ShapeUtilities.h.

152 { return _shape.getIxy(); }
Key< double > getIxy() const
Return a constituent Key.
Definition: aggregates.h:194
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 149 of file ShapeUtilities.h.

149 { return _shape.getIyy(); }
Key< double > getIyy() const
Return a constituent Key.
Definition: aggregates.h:193
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 140 of file ShapeUtilities.h.

140 { 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 143 of file ShapeUtilities.h.

143 { 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 137 of file ShapeUtilities.h.

137 { return _shape.isValid() && _shapeErr.isValid(); }
bool isValid() const
Return True if all the constituent Keys are valid.
Definition: aggregates.h:188
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 133 of file ShapeUtilities.h.

133 { 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 130 of file ShapeUtilities.h.

130  {
131  return _shape == other._shape && _shapeErr == other._shapeErr;
132  }
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 143 of file ShapeUtilities.cc.

143  {
144  record.set(_shape, value.getShape());
145  if (_shapeErr.isValid()) {
146  record.set(_shapeErr, value.getShapeErr());
147  }
148 }
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::SourceRecord * record

Member Data Documentation

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

Definition at line 155 of file ShapeUtilities.h.

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

Definition at line 156 of file ShapeUtilities.h.


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