This object is an access list of tasks.
The 'tasks' represents all existing tasks.
A subset of tasks may be created by slicing (e.g. tasks[-10:] last ten
tasks) or select (e.g. tasks.select(status='new') or tasks.select(10,20)
tasks with ids between 10 and 20). A new access list is created as a
result of slice/select. The new access list may be further
restricted.
This object allows to perform collective operations listed below such
as run on all tasks in the current range. The keep_going=True (default)
means that the operation will continue despite possible errors until all
tasks are processed. The keep_going=False means that the operation will
bail out with an Exception on a first encountered error.
|
|
|
|
|
|
|
|
|
|
|
copy(self,
keep_going=True)
Copy all tasks. |
source code
|
|
|
help(self,
short=False)
Print a short introduction and 'cheat sheet' for the Ganga Tasks
package |
source code
|
|
|
pause(self,
keep_going=True)
Pause all tasks. |
source code
|
|
|
remove(self,
keep_going=True)
Remove all tasks. |
source code
|
|
|
|
|
|
|
table(self)
Prints a more detailed table of tasks and their transforms |
source code
|
|
Inherited from Registry.RegistrySliceProxy.RegistrySliceProxy :
__contains__ ,
__init__ ,
__iter__ ,
__len__ ,
clean ,
ids ,
incomplete_ids
Inherited from object :
__delattr__ ,
__format__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__repr__ ,
__setattr__ ,
__sizeof__ ,
__subclasshook__
|