MeasureMergedCoaddSourcesConfig#
- class lsst.pipe.tasks.multiBand.MeasureMergedCoaddSourcesConfig(*args, **kw)#
Bases:
PipelineTaskConfigConfiguration parameters for the MeasureMergedCoaddSourcesTask
Attributes Summary
Subtask to apply aperture corrections (
ConfigurableInstance, default<class 'lsst.meas.base.applyApCorr.ApplyApCorrConfig'>)Subtask to run catalogCalculation plugins on catalog (
ConfigurableInstance, default<class 'lsst.meas.base.catalogCalculation.CatalogCalculationConfig'>)Strictness of Astropy unit compatibility check, can be 'raise', 'warn' or 'silent' (
str, default'raise')Name of coadd (
str, default'deep')Field which refers to a dynamically added configuration class which is based on a PipelineTaskConnections class.
Whether or not to add footprints to the input catalog from scarlet models.
Apply aperture corrections (
bool, defaultTrue)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.
Match sources to reference catalog? Deprecated: Reference matching in measureCoaddSources will be removed after v29.
Whether to match sources to CCD catalogs to propagate flags (to e.g. identify PSF stars) (
bool, defaultTrue).Run catalogCalculation task (
bool, defaultTrue)Whether to strip footprints from the output catalog before saving to disk.
Write reference matches in denormalized format? This format uses more disk space, but is more convenient to read.
Should be set to True if fake sources have been inserted into the input data.
Configuration for how to generate catalog IDs from data IDs.
The name of the input catalog.
Matching to reference catalog Deprecated: Reference matching in measureCoaddSources will be removed after v29.
Source measurement (
ConfigurableInstance, default<class 'lsst.meas.base.sfm.SingleFrameMeasurementConfig'>)Propagate source flags to coadd (
ConfigurableInstance, default<class 'lsst.pipe.tasks.propagateSourceFlags.PropagateSourceFlagsConfig'>)Size of psfCache (
int, default100)Flag to enable/disable saving of log output for a task, enabled by default.
Set flags for primary tract/patch (
ConfigurableInstance, default<class 'lsst.meas.algorithms.setPrimaryFlags.SetPrimaryFlagsConfig'>)Whether to use cell coadds? (
bool, defaultFalse)Methods Summary
Subclass hook for computing defaults.
validate()Validate the Config, raising an exception if invalid.
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, defaultTrue)
- doApCorr#
Apply aperture corrections (
bool, defaultTrue)
- 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, defaultTrue)
- doMatchSources#
Match sources to reference catalog? Deprecated: Reference matching in measureCoaddSources will be removed after v29. (
bool, defaultFalse)
- doPropagateFlags#
Whether to match sources to CCD catalogs to propagate flags (to e.g. identify PSF stars) (
bool, defaultTrue)
- doRunCatalogCalculation#
Run catalogCalculation task (
bool, defaultTrue)
- 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, defaultTrue)
- doWriteMatchesDenormalized#
Write reference matches in denormalized format? This format uses more disk space, but is more convenient to read. Deprecated: Reference matching in measureCoaddSources will be removed after v29. (
bool, defaultFalse)
- hasFakes#
Should be set to True if fake sources have been inserted into the input data. (
bool, defaultFalse)
- idGenerator#
Configuration for how to generate catalog IDs from data IDs. (
SkyMapIdGeneratorConfig, default<class 'lsst.meas.base._id_generator.SkyMapIdGeneratorConfig'>)
- inputCatalog#
The name of the input catalog. Deprecated: Support for old deblender outputs will be removed after v29. (
str, default'deblendedCatalog')Allowed values:
'deblendedCatalog'Output catalog from ScarletDeblendTask
'deblendedFlux'Output catalog from SourceDeblendTask
'mergeDet'The merged detections before deblending.
'None'Field is optional
- match#
Matching to reference catalog Deprecated: Reference matching in measureCoaddSources will be removed after v29. (
ConfigurableInstance, default<class 'lsst.meas.astrom.directMatch.DirectMatchConfig'>)
- 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, default100)
- refObjLoader#
- saveLogOutput#
Flag to enable/disable saving of log output for a task, enabled by default. (
bool, defaultTrue)
- setPrimaryFlags#
Set flags for primary tract/patch (
ConfigurableInstance, default<class 'lsst.meas.algorithms.setPrimaryFlags.SetPrimaryFlagsConfig'>)
- useCellCoadds#
Whether to use cell coadds? (
bool, defaultFalse)
Methods Documentation
- setDefaults()#
Subclass hook for computing defaults.
Notes#
Derived
Configclasses that must compute defaults rather than using theFieldinstances’s defaults should do so here. To correctly use inherited defaults, implementations ofsetDefaultsmust call their base class’ssetDefaults.
- validate()#
Validate the Config, raising an exception if invalid.
Raises#
- lsst.pex.config.FieldValidationError
Raised if verification fails.
Notes#
The base class implementation performs type checks on all fields by calling their
validatemethods.Complex single-field validation can be defined by deriving new Field types. For convenience, some derived
lsst.pex.config.Field-types (ConfigFieldandConfigChoiceField) are defined inlsst.pex.configthat handle recursing into subconfigs.Inter-field relationships should only be checked in derived
Configclasses after calling this method, and base validation is complete.