DipoleFitTaskConfig#

class lsst.ip.diffim.DipoleFitTaskConfig(*args, ignoreSlotPluginChecks=False, **kwargs)#

Bases: SingleFrameMeasurementConfig

Attributes Summary

doReplaceWithNoise

When measuring, replace other detected footprints with noise? (bool, default True)

noiseReplacer

configuration that sets how to replace neighboring sources with noise (NoiseReplacerConfig, default <class 'lsst.meas.base.noiseReplacer.NoiseReplacerConfig'>)

plugins

Plugins to be run and their configuration (RegistryInstanceDict, default ['base_PixelFlags', 'base_SdssCentroid', 'base_SdssShape', 'base_GaussianFlux', 'base_PsfFlux', 'base_CircularApertureFlux', 'base_SkyCoord', 'base_Variance', 'base_Blendedness', 'base_LocalBackground', 'base_CompensatedTophatFlux', 'base_ClassificationSizeExtendedness'])

slots

Mapping from algorithms to special column aliases.

undeblended

Plugins to run on undeblended image (RegistryInstanceDict, default [])

undeblendedPrefix

Prefix to give undeblended plugins (str, default 'undeblended_')

Methods Summary

setDefaults()

Subclass hook for computing defaults.

Attributes Documentation

doReplaceWithNoise#

When measuring, replace other detected footprints with noise? (bool, default True)

noiseReplacer#

configuration that sets how to replace neighboring sources with noise (NoiseReplacerConfig, default <class 'lsst.meas.base.noiseReplacer.NoiseReplacerConfig'>)

plugins#

Plugins to be run and their configuration (RegistryInstanceDict, default ['base_PixelFlags', 'base_SdssCentroid', 'base_SdssShape', 'base_GaussianFlux', 'base_PsfFlux', 'base_CircularApertureFlux', 'base_SkyCoord', 'base_Variance', 'base_Blendedness', 'base_LocalBackground', 'base_CompensatedTophatFlux', 'base_ClassificationSizeExtendedness'])

slots#

Mapping from algorithms to special column aliases. (SourceSlotConfig, default <class 'lsst.meas.base.baseMeasurement.SourceSlotConfig'>)

undeblended#

Plugins to run on undeblended image (RegistryInstanceDict, default [])

undeblendedPrefix#

Prefix to give undeblended plugins (str, default 'undeblended_')

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.