LSSTApplications  17.0+10,17.0+52,17.0+91,18.0.0+11,18.0.0+16,18.0.0+38,18.0.0+4,18.0.0-2-ge43143a+8,18.1.0-1-g0001055+4,18.1.0-1-g1349e88+13,18.1.0-1-g2505f39+10,18.1.0-1-g380d4d4+13,18.1.0-1-g5315e5e,18.1.0-1-g5e4b7ea+4,18.1.0-1-g7e8fceb,18.1.0-1-g85f8cd4+10,18.1.0-1-g9a6769a+4,18.1.0-1-ga1a4c1a+9,18.1.0-1-gd55f500+5,18.1.0-1-ge10677a+10,18.1.0-11-gb2589d7b,18.1.0-13-g451e75588+2,18.1.0-13-gbfe7f7f+4,18.1.0-14-g2e73c10+1,18.1.0-2-g31c43f9+10,18.1.0-2-g919ecaf,18.1.0-2-g9c63283+13,18.1.0-2-gdf0b915+13,18.1.0-2-gfefb8b5+2,18.1.0-3-g52aa583+4,18.1.0-3-g8f4a2b1+4,18.1.0-3-g9cb968e+12,18.1.0-3-gab23065,18.1.0-4-g7bbbad0+4,18.1.0-5-g510c42a+12,18.1.0-5-gaeab27e+13,18.1.0-6-gc4bdb98+2,18.1.0-6-gdda7f3e+15,18.1.0-9-g9613d271+1,w.2019.34
LSSTDataManagementBasePackage
Public Member Functions | Static Public Attributes | List of all members
lsst.pipe.base.config._GlobalDatasetTypeConfig Class Reference
Inheritance diagram for lsst.pipe.base.config._GlobalDatasetTypeConfig:
lsst.pipe.base.config._BaseDatasetTypeConfig lsst.pipe.base.config.InitInputDatasetConfig lsst.pipe.base.config.InitOutputDatasetConfig

Public Member Functions

def dimensions (self)
 

Static Public Attributes

 name
 
 storageClass
 
 nameTemplate
 

Detailed Description

Configuration class which defines dataset types used in PipelineTask
initialization.

Consists of DatasetType name and StorageCass name, with a read-only
``dimensions`` property that returns an empty tuple, enforcing the
constraint that datasets used in initialization are not associated with
any Dimensions. This class should not be used directly, instead one of
`InitInputDatasetConfig` or `InitOutputDatasetConfig` should be used in
PipelineTask config.

Definition at line 270 of file config.py.

Member Function Documentation

◆ dimensions()

def lsst.pipe.base.config._GlobalDatasetTypeConfig.dimensions (   self)
Dimensions associated with this DatasetType (always empty).

Definition at line 282 of file config.py.

282  def dimensions(self):
283  """Dimensions associated with this DatasetType (always empty)."""
284  return ()
285 
286 
afw::table::PointKey< int > dimensions
Definition: GaussianPsf.cc:49

Member Data Documentation

◆ name

lsst.pipe.base.config._BaseDatasetTypeConfig.name
staticinherited
Initial value:
= pexConfig.Field(dtype=str,
doc="name of the DatasetType")

Definition at line 222 of file config.py.

◆ nameTemplate

lsst.pipe.base.config._BaseDatasetTypeConfig.nameTemplate
staticinherited
Initial value:
= pexConfig.Field(dtype=str,
default='',
optional=True,
doc=("Templated name of string, used to set name "
"field according to a shared substring when "
"`~PipelineTaskConfig.formatTemplateNames` "
"is called"))

Definition at line 226 of file config.py.

◆ storageClass

lsst.pipe.base.config._BaseDatasetTypeConfig.storageClass
staticinherited
Initial value:
= pexConfig.Field(dtype=str,
doc="name of the StorageClass")

Definition at line 224 of file config.py.


The documentation for this class was generated from the following file: