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 | Public Attributes | Static Private Attributes | List of all members
lsst.meas.base.measureApCorr.FluxKeys Class Reference
Inheritance diagram for lsst.meas.base.measureApCorr.FluxKeys:

Public Member Functions

def __init__
 

Public Attributes

 flux
 
 err
 
 flag
 
 used
 

Static Private Attributes

tuple __slots__ = ("flux", "err", "flag", "used")
 

Detailed Description

A collection of keys for a given flux measurement algorithm

Definition at line 34 of file measureApCorr.py.

Constructor & Destructor Documentation

def lsst.meas.base.measureApCorr.FluxKeys.__init__ (   self,
  name,
  schema 
)
Construct a FluxKeys

@parma[in] name  name of flux measurement algorithm, e.g. "base_PsfFlux"
@param[in,out] schema  catalog schema containing the flux field
    read: {name}_flux, {name}_fluxSigma, {name}_flag
    added: apcorr_{name}_used

Definition at line 39 of file measureApCorr.py.

39 
40  def __init__(self, name, schema):
41  """Construct a FluxKeys
42 
43  @parma[in] name name of flux measurement algorithm, e.g. "base_PsfFlux"
44  @param[in,out] schema catalog schema containing the flux field
45  read: {name}_flux, {name}_fluxSigma, {name}_flag
46  added: apcorr_{name}_used
47  """
48  self.flux = schema.find(name + "_flux").key
49  self.err = schema.find(name + "_fluxSigma").key
50  self.flag = schema.find(name + "_flag").key
51  self.used = schema.addField("apcorr_" + name + "_used", type="Flag",
52  doc="set if source was used in measuring aperture correction")
53 
# The following block adds links to these tasks from the Task Documentation page.

Member Data Documentation

tuple lsst.meas.base.measureApCorr.FluxKeys.__slots__ = ("flux", "err", "flag", "used")
staticprivate

Definition at line 37 of file measureApCorr.py.

lsst.meas.base.measureApCorr.FluxKeys.err

Definition at line 48 of file measureApCorr.py.

lsst.meas.base.measureApCorr.FluxKeys.flag

Definition at line 49 of file measureApCorr.py.

lsst.meas.base.measureApCorr.FluxKeys.flux

Definition at line 47 of file measureApCorr.py.

lsst.meas.base.measureApCorr.FluxKeys.used

Definition at line 50 of file measureApCorr.py.


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