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.psfDeterminerRegistry Namespace Reference

Variables

list __all__ = ["psfDeterminerRegistry"]
 
tuple psfDeterminerRegistry
 

Variable Documentation

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

Definition at line 25 of file psfDeterminerRegistry.py.

tuple lsst.meas.algorithms.psfDeterminerRegistry.psfDeterminerRegistry
Initial value:
2  '''A registry of PSF determiner factories
3 
4  A PSF determiner factory makes a class with the following API:
5 
6  def __init__(self, config, schema=None):
7  """Construct a PSF Determiner @param[in] config an instance of pexConfig.Config that configures this algorithm @param[in,out] schema an instance of afw.table.Schema used for sources; passing a schema allows the determiner to reserve a flag field to mark stars used in PSF measurement """
8 
9  def determinePsf(exposure, psfCandidateList, metadata=None):
10  """Determine a PSF model @param[in] exposure exposure containing the psf candidates (lsst.afw.image.Exposure) @param[in] psfCandidateList: a sequence of PSF candidates (each an lsst.meas.algorithms.PsfCandidate); typically obtained by detecting sources and then running them through a star selector @param[in,out] metadata a place to save interesting items @return - psf: the fit PSF; a subclass of lsst.afw.detection.Psf - cellSet: the spatial cell set used to determine the PSF (lsst.afw.math.SpatialCellSet) """
11 '''
12 )

Definition at line 27 of file psfDeterminerRegistry.py.