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
Functions | Variables
lsst.meas.base.apCorrRegistry Namespace Reference

Functions

def addApCorrName
 Add to the set of field name prefixes for fluxes that should be aperture corrected. More...
 
def getApCorrNameSet
 Return a copy of the set of field name prefixes for fluxes that should be aperture corrected. More...
 

Variables

tuple __all__ = ("addApCorrName", "getApCorrNameSet")
 
tuple _ApCorrNameSet = set()
 

Function Documentation

def lsst.meas.base.apCorrRegistry.addApCorrName (   name)

Add to the set of field name prefixes for fluxes that should be aperture corrected.

Parameters
[in]namefield name prefix for a flux that should be aperture corrected. The corresponding field names are {name}_flux, {name}_fluxSigma and {name}_flag. For example name "base_PsfFlux" corresponds to fields base_PsfFlux_flux, base_PsfFlux_fluxSigma and base_PsfFlux_flag.

Definition at line 31 of file apCorrRegistry.py.

31 
32 def addApCorrName(name):
33  """!Add to the set of field name prefixes for fluxes that should be aperture corrected
34 
35  @param[in] name field name prefix for a flux that should be aperture corrected.
36  The corresponding field names are {name}_flux, {name}_fluxSigma and {name}_flag.
37  For example name "base_PsfFlux" corresponds to fields base_PsfFlux_flux,
38  base_PsfFlux_fluxSigma and base_PsfFlux_flag.
39  """
40  global _ApCorrNameSet
41  _ApCorrNameSet.add(str(name))
def addApCorrName
Add to the set of field name prefixes for fluxes that should be aperture corrected.
def lsst.meas.base.apCorrRegistry.getApCorrNameSet ( )

Return a copy of the set of field name prefixes for fluxes that should be aperture corrected.

For example the returned set will likely include "base_PsfFlux" and "base_GaussianFlux".

Definition at line 42 of file apCorrRegistry.py.

42 
43 def getApCorrNameSet():
44  """!Return a copy of the set of field name prefixes for fluxes that should be aperture corrected
45 
46  For example the returned set will likely include "base_PsfFlux" and "base_GaussianFlux".
47  """
48  global _ApCorrNameSet
49  return _ApCorrNameSet.copy()
def getApCorrNameSet
Return a copy of the set of field name prefixes for fluxes that should be aperture corrected...

Variable Documentation

tuple lsst.meas.base.apCorrRegistry.__all__ = ("addApCorrName", "getApCorrNameSet")

Definition at line 26 of file apCorrRegistry.py.

tuple lsst.meas.base.apCorrRegistry._ApCorrNameSet = set()

Definition at line 29 of file apCorrRegistry.py.