FgcmOutputProductsConfig#

class lsst.fgcmcal.FgcmOutputProductsConfig(*args, **kw)#

Bases: PipelineTaskConfig

Config for FgcmOutputProductsTask

Attributes Summary

connections

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

doApplyMeanChromaticCorrection

Apply the mean chromatic correction to the zeropoints? (bool, default True)

doAtmosphereOutput

Output atmospheres in transmission_atmosphere_fgcm format (bool, default True)

doComposeWcsJacobian

Compose Jacobian of WCS with fgcm calibration for output photoCalib? (bool, default True)

doReferenceCalibration

Transfer 'absolute' calibration from reference catalog? This afterburner step is unnecessary if reference stars were used in the full fit in FgcmFitCycleTask.

doTractStars

Output tract-sharded standard stars? (bool, default True)

doZeropointOutput

Output zeropoints in fgcm_photoCalib format (bool, default True)

photoCal

task to perform 'absolute' calibration (ConfigurableInstance, default <class 'lsst.pipe.tasks.photoCal.PhotoCalConfig'>)

physicalFilterMap

Mapping from 'physicalFilter' to band.

referenceMinMatch

Minimum number of stars matched to reference catalog to be used in statistics (int, default 50)

referencePixelizationMinStars

Minimum number of stars per healpix pixel to select for comparisonto the specified reference catalog (int, default 200)

referencePixelizationNPixels

Number of healpix pixels to sample to do comparison.

referencePixelizationNside

Healpix nside to pixelize catalog to compare to reference catalog (int, default 64)

saveLogOutput

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

Methods Summary

setDefaults()

Subclass hook for computing defaults.

Attributes Documentation

connections: pexConfig.ConfigField#

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

doApplyMeanChromaticCorrection#

Apply the mean chromatic correction to the zeropoints? (bool, default True)

doAtmosphereOutput#

Output atmospheres in transmission_atmosphere_fgcm format (bool, default True)

doComposeWcsJacobian#

Compose Jacobian of WCS with fgcm calibration for output photoCalib? (bool, default True)

doReferenceCalibration#

Transfer ‘absolute’ calibration from reference catalog? This afterburner step is unnecessary if reference stars were used in the full fit in FgcmFitCycleTask. (bool, default False)

doTractStars#

Output tract-sharded standard stars? (bool, default True)

doZeropointOutput#

Output zeropoints in fgcm_photoCalib format (bool, default True)

photoCal#

task to perform ‘absolute’ calibration (ConfigurableInstance, default <class 'lsst.pipe.tasks.photoCal.PhotoCalConfig'>)

physicalFilterMap#

Mapping from ‘physicalFilter’ to band. (Dict, default {})

referenceMinMatch#

Minimum number of stars matched to reference catalog to be used in statistics (int, default 50)

referencePixelizationMinStars#

Minimum number of stars per healpix pixel to select for comparisonto the specified reference catalog (int, default 200)

referencePixelizationNPixels#

Number of healpix pixels to sample to do comparison. Doing too many will take a long time and not yield any more precise results because the final number is the median offset (per band) from the set of pixels. (int, default 100)

referencePixelizationNside#

Healpix nside to pixelize catalog to compare to reference catalog (int, default 64)

saveLogOutput#

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

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.