23 """Registry for names of flux fields that should be aperture corrected 26 __all__ = (
"addApCorrName",
"getApCorrNameSet")
29 _ApCorrNameSet = set()
33 """!Add to the set of field name prefixes for fluxes that should be aperture corrected 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. 41 _ApCorrNameSet.add(str(name))
45 """!Return a copy of the set of field name prefixes for fluxes that should be aperture corrected 47 For example the returned set will likely include "base_PsfFlux" and "base_GaussianFlux". 50 return _ApCorrNameSet.copy()
def addApCorrName(name)
Add to the set of field name prefixes for fluxes that should be aperture corrected.
def getApCorrNameSet()
Return a copy of the set of field name prefixes for fluxes that should be aperture corrected...