PyLamarr
Pythonizations for the ultra-fast simulation option for the LHCb experiment
 
Loading...
Searching...
No Matches
__init__.py
1from typing import Union
2
3from .PyPhotons import PyPhotons
4#------------------------------#
5
6def configure_pipeline(efficiency_model: Union[str, None], resolution_model: Union[str, None]):
7 return [
8 ("MkPhotons", PyPhotons(efficiency_model=efficiency_model, resolution_model=resolution_model)),
9 ]
10