![]() |
Belle II Software light-2505-deimos
|


Public Member Functions | |
| __init__ (self) | |
| initialize (self) | |
| beginRun (self) | |
| event (self) | |
| endRun (self) | |
| terminate (self) | |
A minimal example of a basf2 module in python.
Definition at line 6 of file 083_module.py.
| __init__ | ( | self | ) |
Constructor
Definition at line 9 of file 083_module.py.
| beginRun | ( | self | ) |
Called every time a run changes before the actual events in that run are processed
Definition at line 20 of file 083_module.py.
| endRun | ( | self | ) |
Called every time a run changes after the actual events in that run were processed
Definition at line 30 of file 083_module.py.
| event | ( | self | ) |
Called once for each event
Definition at line 26 of file 083_module.py.
| initialize | ( | self | ) |
Called once in the beginning just before starting processing
Definition at line 16 of file 083_module.py.
| terminate | ( | self | ) |
Called once after all the processing is complete
Definition at line 36 of file 083_module.py.