Belle II Software development
|
Public Member Functions | |
def | __init__ (self, queue=None, label=None, *args, **kwargs) |
def | terminate (self) |
def | new_output_filename (self) |
Public Attributes | |
queue | |
The queue to handle. | |
label | |
The label for writing to the queue. | |
use_cpp | |
We want to use cpp for sure. | |
manager | |
We store the files in a list and this list must be accessible also in multiprocessing, so we us a manager here. | |
file_list | |
The list of created paths. | |
A wrapper around the svg drawer in the tracking package that writes its output files as a list to the queue
Definition at line 16 of file wrapper.py.
def __init__ | ( | self, | |
queue = None , |
|||
label = None , |
|||
* | args, | ||
** | kwargs | ||
) |
The same as the base class, except: Arguments --------- queue: The queue to write to label: The key name in the queue
Reimplemented from CDCSVGDisplayModule.
Definition at line 23 of file wrapper.py.
def new_output_filename | ( | self | ) |
Overwrite the function to listen for every new filename
Reimplemented from CDCSVGDisplayModule.
Definition at line 57 of file wrapper.py.
def terminate | ( | self | ) |
Overwrite the terminate to put the list to the queue
Reimplemented from CDCSVGDisplayModule.
Definition at line 49 of file wrapper.py.
file_list |
The list of created paths.
Definition at line 47 of file wrapper.py.
label |
The label for writing to the queue.
Definition at line 36 of file wrapper.py.
manager |
We store the files in a list and this list must be accessible also in multiprocessing, so we us a manager here.
Definition at line 44 of file wrapper.py.
queue |
The queue to handle.
Definition at line 33 of file wrapper.py.
use_cpp |
We want to use cpp for sure.
Definition at line 41 of file wrapper.py.