DiaForcedSourcedConfig#

class lsst.ap.association.DiaForcedSourcedConfig(*args, **kw)#

Bases: Config

Configuration for the generic DiaForcedSourcedTask class.

Attributes Summary

dropColumns

Columns produced in forced measurement that can be dropped upon creation and storage of the final pandas data.

forcedMeasurement

Subtask to force photometer DiaObjects in the direct and difference images.

historyThreshold

Minimum number of detections of a diaObject required to run forced photometry.

Methods Summary

setDefaults()

Subclass hook for computing defaults.

Attributes Documentation

dropColumns#

Columns produced in forced measurement that can be dropped upon creation and storage of the final pandas data. (List)

forcedMeasurement#

Subtask to force photometer DiaObjects in the direct and difference images. (ConfigurableInstance, default <class 'lsst.meas.base.forcedMeasurement.ForcedMeasurementConfig'>)

historyThreshold#

Minimum number of detections of a diaObject required to run forced photometry. Set to 1 to include all diaObjects. (int, default 2)

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.