ConsolidateVisitSummaryConfig#
- class lsst.pipe.tasks.postprocess.ConsolidateVisitSummaryConfig(*args, **kw)#
Bases:
PipelineTaskConfigConfig for ConsolidateVisitSummaryTask
Attributes Summary
The dimensions of the 'camera' prerequisite input connection.
Field which refers to a dynamically added configuration class which is based on a PipelineTaskConnections class.
Whether to re-fit the pointing model.
Whether to write refit-pointing regions that can be used to update butler dimension records.
Whether to propate all exposure components.
A subtask for refitting the boresight pointing and orientation, and using those to produce new regions for butler dimensions.
Flag to enable/disable saving of log output for a task, enabled by default.
Methods Summary
Subclass hook for computing defaults.
validate()Validate the Config, raising an exception if invalid.
Attributes Documentation
- cameraDimensions#
The dimensions of the ‘camera’ prerequisite input connection. (
List, default['instrument'])
- connections: pexConfig.ConfigField#
Field which refers to a dynamically added configuration class which is based on a PipelineTaskConnections class.
- do_refit_pointing#
Whether to re-fit the pointing model. (
bool, defaultTrue)
- do_write_visit_geometry#
Whether to write refit-pointing regions that can be used to update butler dimension records. (
bool, defaultTrue)
- full#
Whether to propate all exposure components. This adds PSF, aperture correction map, transmission curve, and detector, which can increase file size by more than factor of 10, but it makes the visit summaries produced by this task fully usableby tasks that were designed to run downstream of lsst.drp.tasks.UpdateVisitSummaryTask. (
bool, defaultFalse)
- refitPointing#
A subtask for refitting the boresight pointing and orientation, and using those to produce new regions for butler dimensions. (
ConfigurableInstance, default<class 'lsst.meas.astrom.refit_pointing.RefitPointingConfig'>)
- saveLogOutput#
Flag to enable/disable saving of log output for a task, enabled by default. (
bool, defaultTrue)
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.