DecorrelateALKernelSpatialConfig#

class lsst.ip.diffim.DecorrelateALKernelSpatialConfig(*args, **kw)#

Bases: Config

Configuration parameters for the DecorrelateALKernelSpatialTask.

Attributes Summary

decorrelateConfig

DecorrelateALKernel config to use when running on complete exposure (non spatially-varying) (DecorrelateALKernelConfig, default <class 'lsst.ip.diffim.imageDecorrelation.DecorrelateALKernelConfig'>)

decorrelateMapReduceConfig

DecorrelateALKernelMapReduce config to use when running on each sub-image (spatially-varying) (DecorrelateALKernelMapReduceConfig, default <class 'lsst.ip.diffim.imageDecorrelation.DecorrelateALKernelMapReduceConfig'>)

ignoreMaskPlanes

Mask planes to ignore for sigma-clipped statistics (List, default ('INTRP', 'EDGE', 'DETECTED', 'SAT', 'CR', 'BAD', 'NO_DATA', 'DETECTED_NEGATIVE'))

Methods Summary

setDefaults()

Subclass hook for computing defaults.

Attributes Documentation

decorrelateConfig#

DecorrelateALKernel config to use when running on complete exposure (non spatially-varying) (DecorrelateALKernelConfig, default <class 'lsst.ip.diffim.imageDecorrelation.DecorrelateALKernelConfig'>)

decorrelateMapReduceConfig#

DecorrelateALKernelMapReduce config to use when running on each sub-image (spatially-varying) (DecorrelateALKernelMapReduceConfig, default <class 'lsst.ip.diffim.imageDecorrelation.DecorrelateALKernelMapReduceConfig'>)

ignoreMaskPlanes#

Mask planes to ignore for sigma-clipped statistics (List, default ('INTRP', 'EDGE', 'DETECTED', 'SAT', 'CR', 'BAD', 'NO_DATA', 'DETECTED_NEGATIVE'))

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.