lsst.pipe.tasks
21.0.0-139-g4e3796b1+8c8683df0a
|
Public Member Functions | |
Any | __call__ (self, *args, **kwargs) |
def | __iter__ (self) |
def | keys (self) |
def | values (self) |
def | items (self) |
def | iteritems (self) |
def | itervalues (self) |
def | iterkeys (self) |
def | __contains__ (self, name) |
def | __new__ (cls, *args, **kw) |
def | __reduce__ (self) |
def | setDefaults (self) |
def | update (self, **kw) |
def | load (self, filename, root="config") |
def | loadFromStream (self, stream, root="config", filename=None) |
def | save (self, filename, root="config") |
def | saveToStream (self, outfile, root="config", skipImports=False) |
def | freeze (self) |
def | toDict (self) |
def | names (self) |
def | validate (self) |
def | formatHistory (self, name, **kwargs) |
def | __setattr__ (self, attr, value, at=None, label="assignment") |
def | compare (self, other, shortcut=True, rtol=1E-8, atol=1E-8, output=None) |
def | __init_subclass__ (cls, **kwargs) |
A `ConfigurableAction` is an interface that extends a `lsst.pex.config.Config` class to include a `__call__` method. This interface is designed to create an action that can be used at runtime with state that is determined during the configuration stage. A single action thus may be assigned multiple times, each with different configurations. This allows state to be set and recorded at configuration time, making future reproduction of results easy. This class is intended to be an interface only, but because of various inheritance conflicts this class can not be implemented as an Abstract Base Class. Instead, the `__call__` method is purely virtual, meaning that it will raise a `NotImplementedError` when called. Subclasses that represent concrete actions must provide an override.
Definition at line 30 of file _configurableAction.py.
Any lsst.pipe.tasks.configurableActions._configurableAction.ConfigurableAction.__call__ | ( | self, | |
* | args, | ||
** | kwargs | ||
) |
Definition at line 48 of file _configurableAction.py.