NormalizedCalibrationFluxConfig#

class lsst.meas.algorithms.NormalizedCalibrationFluxConfig(*args, **kw)#

Bases: Config

Configuration parameters for NormalizedCalibrationFluxTask.

Attributes Summary

do_measure_ap_corr

Measure the aperture correction? (Otherwise, just apply.) (bool, default True)

do_set_calib_slot

Set the calib flux slot to the normalized flux? (bool, default True)

fallback_source_selector

Selector that is used as a fallback if the full aperture correction fails.

measure_ap_corr

Subtask to measure aperture corrections.

normalized_calibflux_name

Name of normalized calibration flux.

raw_calibflux_name

Name of raw calibration flux to normalize.

Methods Summary

setDefaults()

Subclass hook for computing defaults.

Attributes Documentation

do_measure_ap_corr#

Measure the aperture correction? (Otherwise, just apply.) (bool, default True)

do_set_calib_slot#

Set the calib flux slot to the normalized flux? (bool, default True)

fallback_source_selector#

Selector that is used as a fallback if the full aperture correction fails. (RegistryInstanceDict, default 'science')

measure_ap_corr#

Subtask to measure aperture corrections. (ConfigurableInstance, default <class 'lsst.meas.algorithms.measureApCorr.MeasureApCorrConfig'>)

normalized_calibflux_name#

Name of normalized calibration flux. (str, default 'base_NormalizedCompensatedTophatFlux')

raw_calibflux_name#

Name of raw calibration flux to normalize. (str, default 'base_CompensatedTophatFlux_12')

Methods Documentation

setDefaults()#

Subclass hook for computing defaults.

Notes#

Derived Config classes that must compute defaults rather than using the Field instances’s defaults should do so here. To correctly use inherited defaults, implementations of setDefaults must call their base class’s setDefaults.