MeasureMergedCoaddSourcesConfig#

class lsst.pipe.tasks.multiBand.MeasureMergedCoaddSourcesConfig(*args, **kw)#

Bases: PipelineTaskConfig

Configuration parameters for the MeasureMergedCoaddSourcesTask

Attributes Summary

applyApCorr

Subtask to apply aperture corrections (ConfigurableInstance, default <class 'lsst.meas.base.applyApCorr.ApplyApCorrConfig'>)

catalogCalculation

Subtask to run catalogCalculation plugins on catalog (ConfigurableInstance, default <class 'lsst.meas.base.catalogCalculation.CatalogCalculationConfig'>)

checkUnitsParseStrict

Strictness of Astropy unit compatibility check, can be 'raise', 'warn' or 'silent' (str, default 'raise')

coaddName

Name of coadd (str, default 'deep')

connections

Field which refers to a dynamically added configuration class which is based on a PipelineTaskConnections class.

doAddFootprints

Whether or not to add footprints to the input catalog from scarlet models.

doApCorr

Apply aperture corrections (bool, default True)

doConserveFlux

Whether to use the deblender models as templates to re-distribute the flux from the 'exposure' (True), or to perform measurements on the deblender model footprints.

doPropagateFlags

Whether to match sources to CCD catalogs to propagate flags (to e.g. identify PSF stars) (bool, default True).

doRunCatalogCalculation

Run catalogCalculation task (bool, default True)

doStripFootprints

Whether to strip footprints from the output catalog before saving to disk.

hasFakes

Should be set to True if fake sources have been inserted into the input data.

idGenerator

Configuration for how to generate catalog IDs from data IDs.

measurement

Source measurement (ConfigurableInstance, default <class 'lsst.meas.base.sfm.SingleFrameMeasurementConfig'>)

propagateFlags

Propagate source flags to coadd (ConfigurableInstance, default <class 'lsst.pipe.tasks.propagateSourceFlags.PropagateSourceFlagsConfig'>)

psfCache

Size of psfCache (int, default 100)

saveLogOutput

Flag to enable/disable saving of log output for a task, enabled by default.

setPrimaryFlags

Set flags for primary tract/patch (ConfigurableInstance, default <class 'lsst.meas.algorithms.setPrimaryFlags.SetPrimaryFlagsConfig'>)

useCellCoadds

Whether to use cell coadds? (bool, default False)

Methods Summary

setDefaults()

Subclass hook for computing defaults.

Attributes Documentation

applyApCorr#

Subtask to apply aperture corrections (ConfigurableInstance, default <class 'lsst.meas.base.applyApCorr.ApplyApCorrConfig'>)

catalogCalculation#

Subtask to run catalogCalculation plugins on catalog (ConfigurableInstance, default <class 'lsst.meas.base.catalogCalculation.CatalogCalculationConfig'>)

checkUnitsParseStrict#

Strictness of Astropy unit compatibility check, can be ‘raise’, ‘warn’ or ‘silent’ (str, default 'raise')

coaddName#

Name of coadd (str, default 'deep')

connections: pexConfig.ConfigField#

Field which refers to a dynamically added configuration class which is based on a PipelineTaskConnections class.

doAddFootprints#

Whether or not to add footprints to the input catalog from scarlet models. This should be true whenever using the multi-band deblender, otherwise this should be False. (bool, default True)

doApCorr#

Apply aperture corrections (bool, default True)

doConserveFlux#

Whether to use the deblender models as templates to re-distribute the flux from the ‘exposure’ (True), or to perform measurements on the deblender model footprints. (bool, default True)

doPropagateFlags#

Whether to match sources to CCD catalogs to propagate flags (to e.g. identify PSF stars) (bool, default True)

doRunCatalogCalculation#

Run catalogCalculation task (bool, default True)

doStripFootprints#

Whether to strip footprints from the output catalog before saving to disk. This is usually done when using scarlet models to save disk space. (bool, default True)

hasFakes#

Should be set to True if fake sources have been inserted into the input data. (bool, default False)

idGenerator#

Configuration for how to generate catalog IDs from data IDs. (SkyMapIdGeneratorConfig, default <class 'lsst.meas.base._id_generator.SkyMapIdGeneratorConfig'>)

measurement#

Source measurement (ConfigurableInstance, default <class 'lsst.meas.base.sfm.SingleFrameMeasurementConfig'>)

propagateFlags#

Propagate source flags to coadd (ConfigurableInstance, default <class 'lsst.pipe.tasks.propagateSourceFlags.PropagateSourceFlagsConfig'>)

psfCache#

Size of psfCache (int, default 100)

saveLogOutput#

Flag to enable/disable saving of log output for a task, enabled by default. (bool, default True)

setPrimaryFlags#

Set flags for primary tract/patch (ConfigurableInstance, default <class 'lsst.meas.algorithms.setPrimaryFlags.SetPrimaryFlagsConfig'>)

useCellCoadds#

Whether to use cell coadds? (bool, default False)

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.