DatasetType¶
- 
class lsst.daf.butler.DatasetType(name, dataUnits, storageClass)¶
- Bases: - object- A named category of Datasets that defines how they are organized, related, and stored. - A concrete, final class whose instances represent - DatasetTypes.- DatasetTypeinstances may be constructed without a- Registry, but they must be registered via- Registry.registerDatasetType()before corresponding Datasets may be added.- DatasetTypeinstances are immutable.- Parameters: - name : str
- A string name for the Dataset; must correspond to the same - DatasetTypeacross all Registries.
- dataUnits : iterableofstr
- DataUnitnames that defines the- DatasetRefs corresponding to this- DatasetType. The input iterable is copied into a- frozenset.
- storageClass : StorageClass
- Instance of a - StorageClassthat defines how this- DatasetTypeis persisted.
 
- name :