23 """Registry for names of instrument flux fields that should be aperture corrected 26 __all__ = (
"addApCorrName",
"getApCorrNameSet")
29 _ApCorrNameSet = set()
33 """!Add to the set of field name prefixes for instrument flux that should be aperture corrected 35 @param[in] name field name prefix for a instrument flux that should be aperture corrected. 36 The corresponding field names are {name}_instFlux, {name}_instFluxErr and {name}_flag. 37 For example name "base_PsfFlux" corresponds to fields base_PsfFlux_instFlux, 38 base_PsfFlux_instFluxErr and base_PsfFlux_flag. 41 _ApCorrNameSet.add(str(name))
45 """!Return a copy of the set of field name prefixes for instrument flux 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 instrument flux that should be aperture corrected...
def getApCorrNameSet()
Return a copy of the set of field name prefixes for instrument flux that should be aperture corrected...