QuantumGraph¶
-
class
lsst.pipe.base.QuantumGraph(iterable=None)¶ Bases:
listQuantumGraph is a sequence of QuantumGraphNodes objects.
Typically the order of the tasks in the list will be the same as the order of tasks in a pipeline (obviously depends on the code which constructs graph).
Parameters: - iterable : iterable of
QuantumGraphNodesinstances, optional Initial sequence of per-task nodes.
Methods Summary
append(object)clear()copy()count(value)extend(iterable)getDatasetTypes([initInputs, initOutputs, …])index(value, [start, [stop]])Raises ValueError if the value is not present. insertL.insert(index, object) – insert object before index pop([index])Raises IndexError if list is empty or index is out of range. quanta()Iterator over quanta in a graph. remove(value)Raises ValueError if the value is not present. reverseL.reverse() – reverse IN PLACE sort([key, reverse])Methods Documentation
-
append(object) → None -- append object to end¶
-
clear() → None -- remove all items from L¶
-
copy() → list -- a shallow copy of L¶
-
count(value) → integer -- return number of occurrences of value¶
-
extend(iterable) → None -- extend list by appending elements from the iterable¶
-
getDatasetTypes(initInputs=True, initOutputs=True, inputs=True, outputs=True)¶
-
index(value[, start[, stop]]) → integer -- return first index of value.¶ Raises ValueError if the value is not present.
-
insert()¶ L.insert(index, object) – insert object before index
-
pop([index]) → item -- remove and return item at index (default last).¶ Raises IndexError if list is empty or index is out of range.
-
quanta()¶ Iterator over quanta in a graph.
Yields: - taskDef :
TaskDef Task definition for a Quantum.
- quantum :
Quantum Single quantum.
- taskDef :
-
remove(value) → None -- remove first occurrence of value.¶ Raises ValueError if the value is not present.
-
reverse()¶ L.reverse() – reverse IN PLACE
-
sort(key=None, reverse=False) → None -- stable sort *IN PLACE*¶
- iterable : iterable of