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::FluxResultKey Class Reference

A FunctorKey for FluxResult. More...

#include <FluxUtilities.h>

Inheritance diagram for lsst::meas::base::FluxResultKey:
lsst::afw::table::FunctorKey< FluxResult > lsst::afw::table::OutputFunctorKey< FluxResult > lsst::afw::table::InputFunctorKey< FluxResult >

Public Member Functions

 FluxResultKey ()
 Default constructor; instance will not be usuable unless subsequently assigned to. More...
 
 FluxResultKey (afw::table::Key< meas::base::Flux > const &flux, afw::table::Key< FluxErrElement > const &fluxSigma)
 Construct from a pair of Keys. More...
 
 FluxResultKey (afw::table::SubSchema const &s)
 Construct from a subschema, assuming flux and fluxSigma subfields. More...
 
virtual FluxResult get (afw::table::BaseRecord const &record) const
 Get a FluxResult from the given record. More...
 
virtual void set (afw::table::BaseRecord &record, FluxResult const &other) const
 Set a FluxResult in the given record. More...
 
bool isValid () const
 Return True if both the flux and fluxSigma Keys are valid. More...
 
afw::table::Key< meas::base::FluxgetFlux () const
 Return the underlying flux Key. More...
 
afw::table::Key< FluxErrElementgetFluxSigma () const
 Return the underlying fluxSigma Key. More...
 
bool operator== (FluxResultKey const &other) const
 Compare the FunctorKey for equality with another, using the underlying flux and fluxSigma Keys. More...
 
bool operator!= (FluxResultKey const &other) const
 Compare the FunctorKey for equality with another, using the underlying flux and fluxSigma Keys. More...
 
- Public Member Functions inherited from lsst::afw::table::OutputFunctorKey< FluxResult >
virtual ~OutputFunctorKey ()
 
- Public Member Functions inherited from lsst::afw::table::InputFunctorKey< FluxResult >
virtual void set (BaseRecord &record, FluxResultconst &value) const =0
 
virtual ~InputFunctorKey ()
 

Static Public Member Functions

static FluxResultKey addFields (afw::table::Schema &schema, std::string const &name, std::string const &doc)
 

Private Attributes

afw::table::Key< Flux_flux
 
afw::table::Key< FluxErrElement_fluxSigma
 

Detailed Description

A FunctorKey for FluxResult.

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

Definition at line 56 of file FluxUtilities.h.

Constructor & Destructor Documentation

lsst::meas::base::FluxResultKey::FluxResultKey ( )
inline

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

Definition at line 76 of file FluxUtilities.h.

76 : _flux(), _fluxSigma() {}
afw::table::Key< Flux > _flux
afw::table::Key< FluxErrElement > _fluxSigma
lsst::meas::base::FluxResultKey::FluxResultKey ( afw::table::Key< meas::base::Flux > const &  flux,
afw::table::Key< FluxErrElement > const &  fluxSigma 
)
inline

Construct from a pair of Keys.

Definition at line 79 of file FluxUtilities.h.

82  :
83  _flux(flux), _fluxSigma(fluxSigma)
84  {}
afw::table::Key< Flux > _flux
afw::table::Key< FluxErrElement > _fluxSigma
lsst::meas::base::FluxResultKey::FluxResultKey ( afw::table::SubSchema const &  s)
inline

Construct from a subschema, assuming flux and fluxSigma subfields.

If a schema has "a_flux" and "a_fluxSigma" fields, this constructor allows you to construct a FluxResultKey via:

*

Definition at line 95 of file FluxUtilities.h.

95 : _flux(s["flux"]), _fluxSigma(s["fluxSigma"]) {}
afw::table::Key< Flux > _flux
afw::table::Key< FluxErrElement > _fluxSigma

Member Function Documentation

FluxResultKey lsst::meas::base::FluxResultKey::addFields ( afw::table::Schema schema,
std::string const &  name,
std::string const &  doc 
)
static

Add a pair of _flux, _fluxSigma fields to a Schema, and return a FluxResultKey that points to them.

Parameters
[in,out]schemaSchema to add fields to.
[in]nameName prefix for all fields; "_flux", "_fluxSigma" will be appended to this to form the full field names.
[in]docString used as the documentation for the fields.

The unit for both fields will be "dn".

Definition at line 35 of file FluxUtilities.cc.

39  {
40  FluxResultKey result;
41  result._flux = schema.addField<Flux>(schema.join(name, "flux"), doc, "dn");
42  result._fluxSigma = schema.addField<FluxErrElement>(schema.join(name, "fluxSigma"),
43  "1-sigma flux uncertainty", "dn");
44  return result;
45 }
double FluxErrElement
Definition: constants.h:50
table::Key< std::string > name
Definition: ApCorrMap.cc:71
FluxResultKey()
Default constructor; instance will not be usuable unless subsequently assigned to.
Definition: FluxUtilities.h:76
afw::table::Schema schema
Definition: GaussianPsf.cc:41
FluxResult lsst::meas::base::FluxResultKey::get ( afw::table::BaseRecord const &  record) const
virtual

Get a FluxResult from the given record.

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

Definition at line 47 of file FluxUtilities.cc.

47  {
48  FluxResult r;
49  r.flux = record.get(_flux);
50  r.fluxSigma = record.get(_fluxSigma);
51  return r;
52 }
afw::table::Key< Flux > _flux
afw::table::Key< FluxErrElement > _fluxSigma
afw::table::Key<meas::base::Flux> lsst::meas::base::FluxResultKey::getFlux ( ) const
inline

Return the underlying flux Key.

Definition at line 115 of file FluxUtilities.h.

115 { return _flux; }
afw::table::Key< Flux > _flux
afw::table::Key<FluxErrElement> lsst::meas::base::FluxResultKey::getFluxSigma ( ) const
inline

Return the underlying fluxSigma Key.

Definition at line 118 of file FluxUtilities.h.

118 { return _fluxSigma; }
afw::table::Key< FluxErrElement > _fluxSigma
bool lsst::meas::base::FluxResultKey::isValid ( ) const
inline

Return True if both the flux and fluxSigma Keys are valid.

Definition at line 112 of file FluxUtilities.h.

112 { return _flux.isValid() && _fluxSigma.isValid(); }
bool isValid() const
Return true if the key was initialized to valid offset.
Definition: Key.h:83
afw::table::Key< Flux > _flux
afw::table::Key< FluxErrElement > _fluxSigma
bool lsst::meas::base::FluxResultKey::operator!= ( FluxResultKey const &  other) const
inline

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

Definition at line 108 of file FluxUtilities.h.

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

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

Definition at line 105 of file FluxUtilities.h.

105  {
106  return _flux == other._flux && _fluxSigma == other._fluxSigma;
107  }
afw::table::Key< Flux > _flux
afw::table::Key< FluxErrElement > _fluxSigma
void lsst::meas::base::FluxResultKey::set ( afw::table::BaseRecord record,
FluxResult const &  other 
) const
virtual

Set a FluxResult in the given record.

Definition at line 54 of file FluxUtilities.cc.

54  {
55  record.set(_flux, value.flux);
56  record.set(_fluxSigma, value.fluxSigma);
57 }
afw::table::Key< Flux > _flux
afw::table::Key< FluxErrElement > _fluxSigma

Member Data Documentation

afw::table::Key<Flux> lsst::meas::base::FluxResultKey::_flux
private

Definition at line 121 of file FluxUtilities.h.

afw::table::Key<FluxErrElement> lsst::meas::base::FluxResultKey::_fluxSigma
private

Definition at line 122 of file FluxUtilities.h.


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