|
gstlal 1.13.0
|
Public Member Functions | |
| __post_init__ (self) | |
| requires (self) | |
| provides (self) | |
Static Public Attributes | |
| Optional | arguments = field(default_factory=list) |
| Optional | inputs = field(default_factory=list) |
| Optional | outputs = field(default_factory=list) |
Defines a single node (or job) in an HTCondor DAG.
Stores both the arguments used within a job as well
as capturing any inputs and outputs the job uses/creates.
Parameters
----------
arguments
The arguments the node uses which aren't I/O related.
inputs
The arguments the node takes as inputs.
outputs
The arguments the node takes as outputs.
Definition at line 252 of file __init__.py.
| python.dags.layers.Node.__post_init__ | ( | self | ) |
Definition at line 272 of file __init__.py.
| python.dags.layers.Node.provides | ( | self | ) |
Returns
-------
list
The outputs this node provides when it completes.
Definition at line 292 of file __init__.py.
| python.dags.layers.Node.requires | ( | self | ) |
Returns
-------
list
The inputs this node explicitly depends on to run.
Definition at line 281 of file __init__.py.
|
static |
Definition at line 268 of file __init__.py.
|
static |
Definition at line 269 of file __init__.py.
|
static |
Definition at line 270 of file __init__.py.