![]() |
Belle II Software development
|
Public Member Functions | |
__init__ (self, queue) | |
initialize (self) | |
store_content (self) | |
event (self) | |
terminate (self) | |
Public Attributes | |
queue = queue | |
The queue to handle. | |
list | store_content_list = [] |
The contents of the store arrays for some events. | |
int | event_number = 0 |
The current event number. | |
int | total_number_of_events = 0 |
The total number of events. | |
A small module to catch the content of the store array for some events and store them in the queue.
Definition at line 17 of file python_modules.py.
__init__ | ( | self, | |
queue ) |
Create the module with the given queue.
Definition at line 23 of file python_modules.py.
event | ( | self | ) |
Write the store array content into a list for later.
Definition at line 62 of file python_modules.py.
initialize | ( | self | ) |
Get the total number of events from C++
Definition at line 37 of file python_modules.py.
store_content | ( | self | ) |
Store the current content of the store array into the internal list.
Definition at line 43 of file python_modules.py.
terminate | ( | self | ) |
Write the store array contents from the events to the queue.
Definition at line 78 of file python_modules.py.
int event_number = 0 |
The current event number.
Definition at line 33 of file python_modules.py.
queue = queue |
The queue to handle.
Definition at line 29 of file python_modules.py.
store_content_list = [] |
The contents of the store arrays for some events.
Definition at line 31 of file python_modules.py.
int total_number_of_events = 0 |
The total number of events.
Definition at line 35 of file python_modules.py.