LSST Applications  22.0.1,22.0.1+01bcf6a671,22.0.1+046ee49490,22.0.1+05c7de27da,22.0.1+0c6914dbf6,22.0.1+1220d50b50,22.0.1+12fd109e95,22.0.1+1a1dd69893,22.0.1+1c910dc348,22.0.1+1ef34551f5,22.0.1+30170c3d08,22.0.1+39153823fd,22.0.1+611137eacc,22.0.1+771eb1e3e8,22.0.1+94e66cc9ed,22.0.1+9a075d06e2,22.0.1+a5ff6e246e,22.0.1+a7db719c1a,22.0.1+ba0d97e778,22.0.1+bfe1ee9056,22.0.1+c4e1e0358a,22.0.1+cc34b8281e,22.0.1+d640e2c0fa,22.0.1+d72a2e677a,22.0.1+d9a6b571bd,22.0.1+e485e9761b,22.0.1+ebe8d3385e
LSST Data Management Base Package
Public Member Functions | List of all members
lsst.pipe.base.struct.Struct Class Reference
Inheritance diagram for lsst.pipe.base.struct.Struct:
lsst.ctrl.pool.pool.Cache

Public Member Functions

def __init__ (self, **keyArgs)
 
def getDict (self)
 
def mergeItems (self, struct, *nameList)
 
def copy (self)
 
def __eq__ (self, other)
 
def __len__ (self)
 
def __repr__ (self)
 

Detailed Description

A container to which you can add fields as attributes.

Parameters
----------
keyArgs
    keyword arguments specifying fields and their values.

Notes
-----
Intended to be used for the return value from `~lsst.pipe.base.Task.run`
and other `~lsst.pipe.base.Task` methods, and useful for any method that
returns multiple values.

The intent is to allow accessing returned items by name, instead of
unpacking a tuple.  This makes the code much more robust and easier to
read. It allows one to change what values are returned without inducing
mysterious failures: adding items is completely safe, and removing or
renaming items causes errors that are caught quickly and reported in a way
that is easy to understand.

The primary reason for using Struct instead of dict is that the fields may
be accessed as attributes, e.g. ``aStruct.foo`` instead of
``aDict["foo"]``. Admittedly this only saves a few characters, but it
makes the code significantly more readable.

Struct is preferred over named tuples, because named tuples can be used as
ordinary tuples, thus losing all the safety advantages of Struct. In
addition, named tuples are clumsy to define and Structs are much more
mutable (e.g. one can trivially combine Structs and add additional fields).

Examples
--------
>>> myStruct = Struct(
>>>     strVal = 'the value of the field named "strVal"',
>>>     intVal = 35,
>>> )

Definition at line 26 of file struct.py.

Constructor & Destructor Documentation

◆ __init__()

def lsst.pipe.base.struct.Struct.__init__ (   self,
**  keyArgs 
)

Definition at line 66 of file struct.py.

66  def __init__(self, **keyArgs):
67  for name, val in keyArgs.items():
68  self.__safeAdd(name, val)
69 

Member Function Documentation

◆ __eq__()

def lsst.pipe.base.struct.Struct.__eq__ (   self,
  other 
)

Definition at line 143 of file struct.py.

143  def __eq__(self, other):
144  return self.__dict__ == other.__dict__
145 

◆ __len__()

def lsst.pipe.base.struct.Struct.__len__ (   self)

Definition at line 146 of file struct.py.

146  def __len__(self):
147  return len(self.__dict__)
148 

◆ __repr__()

def lsst.pipe.base.struct.Struct.__repr__ (   self)

Definition at line 149 of file struct.py.

149  def __repr__(self):
150  itemsStr = "; ".join(f"{name}={val}" for name, val in self.getDict().items())
151  return f"{self.__class__.__name__}({itemsStr})"
std::vector< SchemaItem< Flag > > * items

◆ copy()

def lsst.pipe.base.struct.Struct.copy (   self)
Make a one-level-deep copy (values are not copied).

Returns
-------
copy : `Struct`
    One-level-deep copy of this Struct.

Definition at line 133 of file struct.py.

133  def copy(self):
134  """Make a one-level-deep copy (values are not copied).
135 
136  Returns
137  -------
138  copy : `Struct`
139  One-level-deep copy of this Struct.
140  """
141  return Struct(**self.getDict())
142 

◆ getDict()

def lsst.pipe.base.struct.Struct.getDict (   self)
Get a dictionary of fields in this struct.

Returns
-------
structDict : `dict`
    Dictionary with field names as keys and field values as values.
    The values are shallow copies.

Definition at line 93 of file struct.py.

93  def getDict(self):
94  """Get a dictionary of fields in this struct.
95 
96  Returns
97  -------
98  structDict : `dict`
99  Dictionary with field names as keys and field values as values.
100  The values are shallow copies.
101  """
102  return self.__dict__.copy()
103 

◆ mergeItems()

def lsst.pipe.base.struct.Struct.mergeItems (   self,
  struct,
nameList 
)
Copy specified fields from another struct, provided they don't
already exist.

Parameters
----------
struct : `Struct`
    `Struct` from which to copy.
*nameList : `str`
    All remaining arguments are names of items to copy.

Raises
------
RuntimeError
    Raised if any item in nameList already exists in self (but any
    items before the conflicting item in nameList will have been
    copied).

Examples
--------
For example::

    foo.copyItems(other, "itemName1", "itemName2")

copies ``other.itemName1`` and ``other.itemName2`` into self.

Definition at line 104 of file struct.py.

104  def mergeItems(self, struct, *nameList):
105  """Copy specified fields from another struct, provided they don't
106  already exist.
107 
108  Parameters
109  ----------
110  struct : `Struct`
111  `Struct` from which to copy.
112  *nameList : `str`
113  All remaining arguments are names of items to copy.
114 
115  Raises
116  ------
117  RuntimeError
118  Raised if any item in nameList already exists in self (but any
119  items before the conflicting item in nameList will have been
120  copied).
121 
122  Examples
123  --------
124  For example::
125 
126  foo.copyItems(other, "itemName1", "itemName2")
127 
128  copies ``other.itemName1`` and ``other.itemName2`` into self.
129  """
130  for name in nameList:
131  self.__safeAdd(name, getattr(struct, name))
132 

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