LsstCam

class lsst.obs.lsst.LsstCam(*args, **kwargs)

Bases: lsst.obs.base.Instrument

Gen3 Butler specialization for the LSST Main Camera.

Parameters:
camera : lsst.cameraGeom.Camera

Camera object from which to extract detector information.

filters : list of FilterDefinition

An ordered list of filters to define the set of PhysicalFilters associated with this instrument in the registry.

While both the camera geometry and the set of filters associated with a
camera are expected to change with time in general, their Butler Registry
representations defined by an Instrument do not. Instead:
  • We only extract names, IDs, and purposes from the detectors in the camera, which should be static information that actually reflects detector “slots” rather than the physical sensors themselves. Because the distinction between physical sensors and slots is unimportant in the vast majority of Butler use cases, we just use “detector” even though the concept really maps better to “detector slot”. Ideally in the future this distinction between static and time-dependent information would be encoded in cameraGeom itself (e.g. by making the time-dependent Detector class inherit from a related class that only carries static content).
  • The Butler Registry is expected to contain physical_filter entries for all filters an instrument has ever had, because we really only care about which filters were used for particular observations, not which filters were available at some point in the past. And changes in individual filters over time will be captured as changes in their TransmissionCurve datasets, not changes in the registry content (which is really just a label). While at present Instrument and Registry do not provide a way to add new physical_filters, they will in the future.

Attributes Summary

configPaths Built-in immutable sequence.
filterDefinitions
instrument
obsDataPackage
obsDataPackageDir The root of the obs package that provides specializations for this instrument (str).
policyName
standardCuratedDatasetTypes

Methods Summary

applyConfigOverrides(name, config) Apply instrument-specific overrides for a task config.
extractDetectorRecord(camGeomDetector) Create a Gen3 Detector entry dict from a cameraGeom.Detector.
fromName(name, registry) Given an instrument name and a butler, retrieve a corresponding instantiated instrument object.
getCamera() Retrieve the cameraGeom representation of this instrument.
getName() Return the short (dimension) name for this instrument.
getRawFormatter(dataId) Return the Formatter class that should be used to read a particular raw file.
makeDataIdTranslatorFactory() Return a factory for creating Gen2->Gen3 data ID translators, specialized for this instrument.
register(registry) Insert instrument, physical_filter, and detector entries into a Registry.
writeCameraGeom(butler) Write the default camera geometry to the butler repository with an infinite validity range.
writeCuratedCalibrations(butler) Write human-curated calibration Datasets to the given Butler with the appropriate validity ranges.
writeStandardTextCuratedCalibrations(butler) Write the set of standardized curated text calibrations to the repository.

Attributes Documentation

configPaths

Built-in immutable sequence.

If no argument is given, the constructor returns an empty tuple. If iterable is specified the tuple is initialized from iterable’s items.

If the argument is a tuple, the return value is the same object.

filterDefinitions = <lsst.obs.base.filters.FilterDefinitionCollection object>
instrument = 'LSSTCam'
obsDataPackage = 'obs_lsst_data'
obsDataPackageDir

The root of the obs package that provides specializations for this instrument (str).

policyName = 'lsstCam'
standardCuratedDatasetTypes = ('defects', 'qe_curve')

Methods Documentation

applyConfigOverrides(name, config)

Apply instrument-specific overrides for a task config.

Parameters:
name : str

Name of the object being configured; typically the _DefaultName of a Task.

config : lsst.pex.config.Config

Config instance to which overrides should be applied.

extractDetectorRecord(camGeomDetector)

Create a Gen3 Detector entry dict from a cameraGeom.Detector.

classmethod fromName(name, registry)

Given an instrument name and a butler, retrieve a corresponding instantiated instrument object.

Parameters:
name : str

Name of the instrument (must match the return value of getName).

registry : lsst.daf.butler.Registry

Butler registry to query to find the information.

Returns:
instrument : Instrument

An instance of the relevant Instrument.

Raises:
LookupError

Raised if the instrument is not known to the supplied registry.

ModuleNotFoundError

Raised if the class could not be imported. This could mean that the relevant obs package has not been setup.

TypeError

Raised if the class name retrieved is not a string.

Notes

The instrument must be registered in the corresponding butler.

classmethod getCamera()

Retrieve the cameraGeom representation of this instrument.

This is a temporary API that should go away once obs_ packages have a standardized approach to writing versioned cameras to a Gen3 repo.

classmethod getName()

Return the short (dimension) name for this instrument.

This is not (in general) the same as the class name - it’s what is used as the value of the “instrument” field in data IDs, and is usually an abbreviation of the full name.

getRawFormatter(dataId)

Return the Formatter class that should be used to read a particular raw file.

Parameters:
dataId : DataCoordinate

Dimension-based ID for the raw file or files being ingested.

Returns:
formatter : Formatter class

Class to be used that reads the file into an lsst.afw.image.Exposure instance.

makeDataIdTranslatorFactory() → lsst.obs.base.gen2to3.translators.TranslatorFactory

Return a factory for creating Gen2->Gen3 data ID translators, specialized for this instrument.

Derived class implementations should generally call TranslatorFactory.addGenericInstrumentRules with appropriate arguments, but are not required to (and may not be able to if their Gen2 raw data IDs are sufficiently different from the HSC/DECam/CFHT norm).

Returns:
factory : TranslatorFactory.

Factory for Translator objects.

register(registry)

Insert instrument, physical_filter, and detector entries into a Registry.

writeCameraGeom(butler)

Write the default camera geometry to the butler repository with an infinite validity range.

Parameters:
butler : lsst.daf.butler.Butler

Butler to receive these calibration datasets.

writeCuratedCalibrations(butler)

Write human-curated calibration Datasets to the given Butler with the appropriate validity ranges.

Parameters:
butler : lsst.daf.butler.Butler

Butler to use to store these calibrations.

Notes

Expected to be called from subclasses. The base method calls writeCameraGeom and writeStandardTextCuratedCalibrations.

writeStandardTextCuratedCalibrations(butler)

Write the set of standardized curated text calibrations to the repository.

Parameters:
butler : lsst.daf.butler.Butler

Butler to receive these calibration datasets.