![]() |
Belle II Software
release-05-02-19
|
Functions | |
| def | adjust_module (path, module_type, params={}, **kwds) |
| def | skip_modules_after (path, module_type) |
| def | disable_deltas (path) |
| def | keep_secondaries (path) |
| def | enable_wire_by_wire_mode (path) |
Contains functions that operate on populated path adjust some module parameters
| def tracking.adjustments.adjust_module | ( | path, | |
| module_type, | |||
params = {}, |
|||
| ** | kwds | ||
| ) |
Set parameters of the module with the given type in the path to the given parameters
Arguments
---------
path : basf2.Path
Module path to be adjusted.
module_type : str
Type of the module to adjusted as returned by Module.type()
params : dict
Dictionary of parameters served to Module.param(params)
**kwds
Keyword parameters served to Module.param(params)
Definition at line 6 of file adjustments.py.
| def tracking.adjustments.disable_deltas | ( | path | ) |
Disables the generation of delta electrons in FullSim Arguments --------- path : basf2.Path
Definition at line 45 of file adjustments.py.
| def tracking.adjustments.enable_wire_by_wire_mode | ( | path | ) |
Enables the wire by wire material distribution in the CDC Arguments --------- path : basf2.Path
Definition at line 75 of file adjustments.py.
| def tracking.adjustments.keep_secondaries | ( | path | ) |
Keep all secondaries from the FullSim Arguments --------- path : basf2.Path
Definition at line 58 of file adjustments.py.
| def tracking.adjustments.skip_modules_after | ( | path, | |
| module_type | |||
| ) |
Inserts a conditional path at the module of the given type such that modules after are skipped.
Arguments
---------
path : basf2.Path
Module path to be adjusted.
module_type : str
Type of the module to adjusted as returned by Module.type()
Definition at line 28 of file adjustments.py.