lsst.pipe.tasks g85f8d04a89+8cd9ef0b15
Loading...
Searching...
No Matches
Public Member Functions | Static Public Attributes | List of all members
lsst.pipe.tasks.calibrateImage.CalibrateImageConfig Class Reference
Inheritance diagram for lsst.pipe.tasks.calibrateImage.CalibrateImageConfig:
lsst.pipe.tasks.calibrateImage.CalibrateImageConnections

Public Member Functions

 setDefaults (self)
 

Static Public Attributes

 optional_outputs
 
 install_simple_psf
 
 psf_repair
 
 psf_subtract_background
 
 psf_detection
 
 psf_source_measurement
 
 psf_measure_psf
 
 measure_aperture_correction
 
 star_detection
 
 star_deblend
 
 star_measurement
 
 star_apply_aperture_correction
 
 star_catalog_calculation
 
 star_set_primary_flags
 
 star_selector
 
 astrometry
 
 astrometry_ref_loader
 
 photometry
 
 photometry_ref_loader
 
 compute_summary_stats
 

Detailed Description

Definition at line 135 of file calibrateImage.py.

Member Function Documentation

◆ setDefaults()

lsst.pipe.tasks.calibrateImage.CalibrateImageConfig.setDefaults (   self)

Definition at line 233 of file calibrateImage.py.

Member Data Documentation

◆ astrometry

lsst.pipe.tasks.calibrateImage.CalibrateImageConfig.astrometry
static
Initial value:
= pexConfig.ConfigurableField(
target=lsst.meas.astrom.AstrometryTask,
doc="Task to perform astrometric calibration to fit a WCS.",
)

Definition at line 211 of file calibrateImage.py.

◆ astrometry_ref_loader

lsst.pipe.tasks.calibrateImage.CalibrateImageConfig.astrometry_ref_loader
static
Initial value:
= pexConfig.ConfigField(
dtype=lsst.meas.algorithms.LoadReferenceObjectsConfig,
doc="Configuration of reference object loader for astrometric fit.",
)

Definition at line 215 of file calibrateImage.py.

◆ compute_summary_stats

lsst.pipe.tasks.calibrateImage.CalibrateImageConfig.compute_summary_stats
static
Initial value:
= pexConfig.ConfigurableField(
target=computeExposureSummaryStats.ComputeExposureSummaryStatsTask,
doc="Task to to compute summary statistics on the calibrated exposure."
)

Definition at line 228 of file calibrateImage.py.

◆ install_simple_psf

lsst.pipe.tasks.calibrateImage.CalibrateImageConfig.install_simple_psf
static
Initial value:
= pexConfig.ConfigurableField(
doc="Task to install a simple PSF model into the input exposure to use "
"when detecting bright sources for PSF estimation.",
)

Definition at line 146 of file calibrateImage.py.

◆ measure_aperture_correction

lsst.pipe.tasks.calibrateImage.CalibrateImageConfig.measure_aperture_correction
static
Initial value:
= pexConfig.ConfigurableField(
doc="Task to compute the aperture correction from the bright stars."
)

Definition at line 174 of file calibrateImage.py.

◆ optional_outputs

lsst.pipe.tasks.calibrateImage.CalibrateImageConfig.optional_outputs
static
Initial value:
= pexConfig.ListField(
doc="Which optional outputs to save (as their connection name)?",
dtype=str,
# TODO: note somewhere to disable this for benchmarking, but should
# we always have it on for production runs?
default=["psf_stars", "astrometry_matches", "photometry_matches"],
optional=True
)

Definition at line 136 of file calibrateImage.py.

◆ photometry

lsst.pipe.tasks.calibrateImage.CalibrateImageConfig.photometry
static
Initial value:
= pexConfig.ConfigurableField(
target=photoCal.PhotoCalTask,
doc="Task to perform photometric calibration to fit a PhotoCalib.",
)

Definition at line 219 of file calibrateImage.py.

◆ photometry_ref_loader

lsst.pipe.tasks.calibrateImage.CalibrateImageConfig.photometry_ref_loader
static
Initial value:
= pexConfig.ConfigField(
dtype=lsst.meas.algorithms.LoadReferenceObjectsConfig,
doc="Configuration of reference object loader for photometric fit.",
)

Definition at line 223 of file calibrateImage.py.

◆ psf_detection

lsst.pipe.tasks.calibrateImage.CalibrateImageConfig.psf_detection
static
Initial value:
= pexConfig.ConfigurableField(
target=lsst.meas.algorithms.SourceDetectionTask,
doc="Task to detect sources for PSF determination."
)

Definition at line 159 of file calibrateImage.py.

◆ psf_measure_psf

lsst.pipe.tasks.calibrateImage.CalibrateImageConfig.psf_measure_psf
static
Initial value:
= pexConfig.ConfigurableField(
target=measurePsf.MeasurePsfTask,
doc="Task to measure the psf on bright sources."
)

Definition at line 167 of file calibrateImage.py.

◆ psf_repair

lsst.pipe.tasks.calibrateImage.CalibrateImageConfig.psf_repair
static
Initial value:
= pexConfig.ConfigurableField(
target=repair.RepairTask,
doc="Task to repair cosmic rays on the exposure before PSF determination.",
)

Definition at line 151 of file calibrateImage.py.

◆ psf_source_measurement

lsst.pipe.tasks.calibrateImage.CalibrateImageConfig.psf_source_measurement
static
Initial value:
= pexConfig.ConfigurableField(
target=lsst.meas.base.SingleFrameMeasurementTask,
doc="Task to measure sources to be used for psf estimation."
)

Definition at line 163 of file calibrateImage.py.

◆ psf_subtract_background

lsst.pipe.tasks.calibrateImage.CalibrateImageConfig.psf_subtract_background
static
Initial value:
= pexConfig.ConfigurableField(
target=lsst.meas.algorithms.SubtractBackgroundTask,
doc="Task to perform intial background subtraction, before first detection pass.",
)

Definition at line 155 of file calibrateImage.py.

◆ star_apply_aperture_correction

lsst.pipe.tasks.calibrateImage.CalibrateImageConfig.star_apply_aperture_correction
static
Initial value:
= pexConfig.ConfigurableField(
target=lsst.meas.base.ApplyApCorrTask,
doc="Task to apply aperture corrections to the selected stars."
)

Definition at line 192 of file calibrateImage.py.

◆ star_catalog_calculation

lsst.pipe.tasks.calibrateImage.CalibrateImageConfig.star_catalog_calculation
static
Initial value:
= pexConfig.ConfigurableField(
target=lsst.meas.base.CatalogCalculationTask,
doc="Task to compute extendedness values on the star catalog, "
"for the star selector to remove extended sources."
)

Definition at line 196 of file calibrateImage.py.

◆ star_deblend

lsst.pipe.tasks.calibrateImage.CalibrateImageConfig.star_deblend
static
Initial value:
= pexConfig.ConfigurableField(
target=lsst.meas.deblender.SourceDeblendTask,
doc="Split blended sources into their components"
)

Definition at line 184 of file calibrateImage.py.

◆ star_detection

lsst.pipe.tasks.calibrateImage.CalibrateImageConfig.star_detection
static
Initial value:
= pexConfig.ConfigurableField(
target=lsst.meas.algorithms.SourceDetectionTask,
doc="Task to detect stars to return in the output catalog."
)

Definition at line 180 of file calibrateImage.py.

◆ star_measurement

lsst.pipe.tasks.calibrateImage.CalibrateImageConfig.star_measurement
static
Initial value:
= pexConfig.ConfigurableField(
target=lsst.meas.base.SingleFrameMeasurementTask,
doc="Task to measure stars to return in the output catalog."
)

Definition at line 188 of file calibrateImage.py.

◆ star_selector

lsst.pipe.tasks.calibrateImage.CalibrateImageConfig.star_selector
static
Initial value:
= lsst.meas.algorithms.sourceSelectorRegistry.makeField(
default="science",
doc="Task to select isolated stars to use for calibration."
)

Definition at line 205 of file calibrateImage.py.

◆ star_set_primary_flags

lsst.pipe.tasks.calibrateImage.CalibrateImageConfig.star_set_primary_flags
static
Initial value:
= pexConfig.ConfigurableField(
target=setPrimaryFlags.SetPrimaryFlagsTask,
doc="Task to add isPrimary to the catalog."
)

Definition at line 201 of file calibrateImage.py.


The documentation for this class was generated from the following file: