Gen3DatasetIngestConfig#

class lsst.ap.verify.Gen3DatasetIngestConfig(*args, **kw)#

Bases: Config

Settings and defaults for Gen3DatasetIngestTask.

The correct target for ingester can be found in the documentation of the appropriate obs package.

Attributes Summary

dataBadFiles

Names of raw science files (no path; wildcards allowed) to not ingest, supersedes dataFiles.

dataFiles

Names of raw science files (no path; wildcards allowed) to ingest from the ap_verify dataset.

ingester

Task used to perform raw data ingestion.

visitDefiner

Task used to organize raw exposures into visits.

Methods Summary

setDefaults()

Subclass hook for computing defaults.

Attributes Documentation

dataBadFiles#

Names of raw science files (no path; wildcards allowed) to not ingest, supersedes dataFiles. (List, default [])

dataFiles#

Names of raw science files (no path; wildcards allowed) to ingest from the ap_verify dataset. (List, default ['*.fits', '*.fz', '*.fits.gz'])

ingester#

Task used to perform raw data ingestion. (ConfigurableInstance, default <class 'lsst.obs.base.ingest.RawIngestConfig'>)

visitDefiner#

Task used to organize raw exposures into visits. (ConfigurableInstance, default <class 'lsst.obs.base.defineVisits.DefineVisitsConfig'>)

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.