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
Variables
lsst.meas.algorithms.starSelectorRegistry Namespace Reference

Variables

list __all__ = ["starSelectorRegistry"]
 
tuple starSelectorRegistry
 

Variable Documentation

list lsst.meas.algorithms.starSelectorRegistry.__all__ = ["starSelectorRegistry"]

Definition at line 26 of file starSelectorRegistry.py.

tuple lsst.meas.algorithms.starSelectorRegistry.starSelectorRegistry
Initial value:
2  '''A registry of star selector factories
3 
4  A star selector factory makes a class with the following API:
5 
6  def __init__(self, config):
7  """Construct a star selector @param[in] config: an instance of pexConfig.Config that configures this algorithm """
8 
9  def selectStars(self, exposure, sourceList):
10  """Return a list of PSF candidates that represent likely stars The list of PSF candidates may be used by a PSF fitter to construct a PSF. @param[in] exposure: the exposure containing the sources (lsst.afw.image.Exposure) @param[in] sourceList: a list of sources that may be stars (lsst.afw.detection.SourceSet) @return psfCandidateList: a list of PSF candidates (each an lsst.meas.algorithms.PsfCandidate) """
11  '''
12 )

Definition at line 28 of file starSelectorRegistry.py.