CollectionType¶
-
class
lsst.daf.butler.CollectionType¶ Bases:
enum.IntEnumEnumeration used to label different types of collections.
Attributes Summary
CHAINEDA CHAINEDcollection is simply an ordered list of other collections to be searched.RUNA RUNcollection (also just called a ‘run’) is the initial collection a dataset is inserted into and the only one it can never be removed from.TAGGEDDatasets can be associated with and removed from TAGGEDcollections arbitrarily.Attributes Documentation
-
CHAINED= 3¶ A
CHAINEDcollection is simply an ordered list of other collections to be searched. These may include otherCHAINEDcollections.
-
RUN= 1¶ A
RUNcollection (also just called a ‘run’) is the initial collection a dataset is inserted into and the only one it can never be removed from.Within a particular run, there may only be one dataset with a particular dataset type and data ID.
-
TAGGED= 2¶ Datasets can be associated with and removed from
TAGGEDcollections arbitrarily.Within a particular tagged collection, there may only be one dataset with a particular dataset type and data ID.
-