DetectorTableMeasurementConfig#
- class lsst.faro.measurement.DetectorTableMeasurementConfig(*args, **kw)#
Bases:
CatalogMeasurementBaseConfigConfiguration for DetectorTableMeasurementTask.
Attributes Summary
Field which refers to a dynamically added configuration class which is based on a PipelineTaskConnections class.
Measure task (
ConfigurableInstance, default<class 'lsst.faro.base.BaseSubTasks.NumSourcesConfig'>)Reference catalog loader (
ConfigurableInstance, default<class 'lsst.pipe.tasks.loadReferenceCatalog.LoadReferenceCatalogConfig'>)Require that a given catalog have a valid WCS in order to be included in metric measurements? (
bool, defaultTrue)Require that a given catalog have a valid photoCalib in order to be included in metric measurements? (
bool, defaultTrue)Flag to enable/disable saving of log output for a task, enabled by default.
Methods Summary
validate()Validate the Config, raising an exception if invalid.
Attributes Documentation
- connections: pexConfig.ConfigField#
Field which refers to a dynamically added configuration class which is based on a PipelineTaskConnections class.
- measure#
Measure task (
ConfigurableInstance, default<class 'lsst.faro.base.BaseSubTasks.NumSourcesConfig'>)
- referenceCatalogLoader#
Reference catalog loader (
ConfigurableInstance, default<class 'lsst.pipe.tasks.loadReferenceCatalog.LoadReferenceCatalogConfig'>)
- requireAstrometry#
Require that a given catalog have a valid WCS in order to be included in metric measurements? (
bool, defaultTrue)
- requirePhotometry#
Require that a given catalog have a valid photoCalib in order to be included in metric measurements? (
bool, defaultTrue)
- saveLogOutput#
Flag to enable/disable saving of log output for a task, enabled by default. (
bool, defaultTrue)
Methods Documentation
- 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.