MakeDirectWarpConfig#
- class lsst.drp.tasks.make_direct_warp.MakeDirectWarpConfig(*args, **kw)#
Bases:
PipelineTaskConfigConfiguration for the MakeDirectWarpTask.
The config fields are as similar as possible to the corresponding fields in MakeWarpConfig.
Notes#
The config fields are in camelCase to match the fields in the earlier version of the makeWarp task as closely as possible.
Attributes Summary
numberOfNoiseRealizations is defined as a RangeField to prevent from making multiple output connections and blowing up the memory usage by accident.
Pad the patch boundary of the warp by these many pixels, so as to allow for PSF-matching later (
int, default256)Configuration for CoaddPsf (
CoaddPsfConfig, default<class 'lsst.meas.algorithms.CoaddPsfConfig'>)Field which refers to a dynamically added configuration class which is based on a PipelineTaskConnections class.
Apply flat background ratio prior to background adjustments? Should be True if processing was done with an illumination correction.
Apply the new backgrounds from the
background_apply_listconnection? (bool, defaultFalse)Interpolate over bad pixels before warping? (
bool, defaultFalse)Revert the old backgrounds from the
background_revert_listconnection? (bool, defaultFalse)Select ccds before warping? (
bool, defaultTrue)Warp the masked fraction image? (
bool, defaultTrue)Configuration for how to generate catalog IDs from data IDs.
Add photometric calibration variance to warp variance plane? Deprecated: Deprecated and disabled.
Subtask that helps fill CoaddInputs catalogs added to the final coadd (
ConfigurableInstance, default<class 'lsst.pipe.tasks.coaddInputRecorder.CoaddInputRecorderConfig'>)Configuration for the warp that warps the mask fraction image (
WarperConfig, default<class 'lsst.afw.math._warper.WarperConfig'>)Number of noise realizations to simulate and persist.
Interpolation task to use for pre-warping interpolation (
ConfigurableInstance, default<class 'lsst.meas.algorithms.cloughTocher2DInterpolator.CloughTocher2DInterpolateConfig'>)Flag to enable/disable saving of log output for a task, enabled by default.
Offset to the seed used for the noise realization.
Image selection subtask.
Use the median of variance plane in the input calexp to generate noise realizations? If False, per-pixel variance will be used.
If True, use the photometric calibration from the 'visit_summary' connection to make the warp.
If True, use the PSF model and aperture corrections from the 'visit_summary' connection to make the warp.
If True, use the WCS from the 'visit_summary' connection to make the warp.
Configuration for the warper that warps the image and noise (
WarperConfig, default<class 'lsst.afw.math._warper.WarperConfig'>)Methods Summary
Subclass hook for computing defaults.
Attributes Documentation
- MAX_NUMBER_OF_NOISE_REALIZATIONS = 3#
numberOfNoiseRealizations is defined as a RangeField to prevent from making multiple output connections and blowing up the memory usage by accident. An upper bound of 3 is based on the best guess of the maximum number of noise realizations that will be used for metadetection.
- bgSubtracted#
- border#
Pad the patch boundary of the warp by these many pixels, so as to allow for PSF-matching later (
int, default256)
- coaddPsf#
Configuration for CoaddPsf (
CoaddPsfConfig, default<class 'lsst.meas.algorithms.CoaddPsfConfig'>)
- connections: pexConfig.ConfigField#
Field which refers to a dynamically added configuration class which is based on a PipelineTaskConnections class.
- doApplyFlatBackgroundRatio#
Apply flat background ratio prior to background adjustments? Should be True if processing was done with an illumination correction. (
bool, defaultFalse)
- doApplyNewBackground#
Apply the new backgrounds from the
background_apply_listconnection? (bool, defaultFalse)
- doApplySkyCorr#
- doPreWarpInterpolation#
Interpolate over bad pixels before warping? (
bool, defaultFalse)
- doRevertOldBackground#
Revert the old backgrounds from the
background_revert_listconnection? (bool, defaultFalse)
- doSelectPreWarp#
Select ccds before warping? (
bool, defaultTrue)
- doWarpMaskedFraction#
Warp the masked fraction image? (
bool, defaultTrue)
- idGenerator#
Configuration for how to generate catalog IDs from data IDs. (
DetectorVisitIdGeneratorConfig, default<class 'lsst.meas.base._id_generator.DetectorVisitIdGeneratorConfig'>)
- includeCalibVar#
Add photometric calibration variance to warp variance plane? Deprecated: Deprecated and disabled. Will be removed after v29. (
bool, defaultFalse)
- inputRecorder#
Subtask that helps fill CoaddInputs catalogs added to the final coadd (
ConfigurableInstance, default<class 'lsst.pipe.tasks.coaddInputRecorder.CoaddInputRecorderConfig'>)
- maskedFractionWarper#
Configuration for the warp that warps the mask fraction image (
WarperConfig, default<class 'lsst.afw.math._warper.WarperConfig'>)
- numberOfNoiseRealizations#
Number of noise realizations to simulate and persist. (
int, default0)Valid Range = [0,3]
- preWarpInterpolation#
Interpolation task to use for pre-warping interpolation (
ConfigurableInstance, default<class 'lsst.meas.algorithms.cloughTocher2DInterpolator.CloughTocher2DInterpolateConfig'>)
- saveLogOutput#
Flag to enable/disable saving of log output for a task, enabled by default. (
bool, defaultTrue)
- seedOffset#
Offset to the seed used for the noise realization. This can be used to create a different noise realization if the default ones are catastrophic, or for testing sensitivity to the noise. (
int, default0)
- select#
Image selection subtask. (
ConfigurableInstance, default<class 'lsst.pipe.tasks.selectImages.PsfWcsSelectImagesConfig'>)
- useMedianVariance#
Use the median of variance plane in the input calexp to generate noise realizations? If False, per-pixel variance will be used. (
bool, defaultTrue)
- useVisitSummaryPhotoCalib#
If True, use the photometric calibration from the ‘visit_summary’ connection to make the warp. If False, use the photometric calibration from the ‘calexp’ connection. (
bool, defaultTrue)
- useVisitSummaryPsf#
If True, use the PSF model and aperture corrections from the ‘visit_summary’ connection to make the warp. If False, use the PSF model and aperture corrections from the ‘calexp’ connection. (
bool, defaultTrue)
- useVisitSummaryWcs#
If True, use the WCS from the ‘visit_summary’ connection to make the warp. If False, use the WCS from the ‘calexp’ connection. (
bool, defaultTrue)
- warper#
Configuration for the warper that warps the image and noise (
WarperConfig, default<class 'lsst.afw.math._warper.WarperConfig'>)
Methods Documentation