Belle II Software development
|
Public Member Functions | |
def | __init__ (self, queue) |
def | initialize (self) |
def | store_content (self) |
def | event (self) |
def | terminate (self) |
Public Attributes | |
queue | |
The queue to handle. | |
store_content_list | |
The contents of the store arrays for some events. | |
event_number | |
The current event number. | |
total_number_of_events | |
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.
def __init__ | ( | self, | |
queue | |||
) |
Create the module with the given queue.
Definition at line 23 of file python_modules.py.
def event | ( | self | ) |
Write the store array content into a list for later.
Definition at line 62 of file python_modules.py.
def initialize | ( | self | ) |
Get the total number of events from C++
Definition at line 37 of file python_modules.py.
def store_content | ( | self | ) |
Store the current content of the store array into the internal list.
Definition at line 43 of file python_modules.py.
def terminate | ( | self | ) |
Write the store array contents from the events to the queue.
Definition at line 78 of file python_modules.py.
event_number |
The current event number.
Definition at line 33 of file python_modules.py.
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.
total_number_of_events |
The total number of events.
Definition at line 35 of file python_modules.py.