![]() |
Belle II Software development
|
Public Member Functions | |
__init__ (self, digits_arrays) | |
initialize (self) | |
event (self) | |
Public Attributes | |
digits_arrays = digits_arrays | |
Array of digits. | |
pxddigits = PyStoreArray("PXDDigits", DataStore.c_Event) | |
PyStoreArray. | |
it_digits = iter(self.digits_arrays) | |
Iterator of the digits array. | |
Simple basf2 module to fill a PyStoreArray with PXD digits. Takes as arguments the digits to fill the PyStoreArray with, and then for each event it calls the fillArray function.
Definition at line 38 of file fill_array_example.py.
__init__ | ( | self, | |
digits_arrays ) |
Initialization -------------- digits_array: array of digits with lenght equal to the number of events
Definition at line 45 of file fill_array_example.py.
event | ( | self | ) |
For each event take the corresponding entry of digits_array and write it into the PyStoreArray
Definition at line 65 of file fill_array_example.py.
initialize | ( | self | ) |
Initialization of the PyStoreArray and registration in the DataStore
Definition at line 55 of file fill_array_example.py.
digits_arrays = digits_arrays |
Array of digits.
Definition at line 52 of file fill_array_example.py.
it_digits = iter(self.digits_arrays) |
Iterator of the digits array.
Definition at line 63 of file fill_array_example.py.
pxddigits = PyStoreArray("PXDDigits", DataStore.c_Event) |
PyStoreArray.
Definition at line 60 of file fill_array_example.py.