mirror of
https://github.com/pim-n/pg-rad
synced 2026-03-11 19:58:11 +01:00
generate init for physics module
This commit is contained in:
10
src/pg_rad/physics/__init__.py
Normal file
10
src/pg_rad/physics/__init__.py
Normal file
@ -0,0 +1,10 @@
|
||||
# do not expose internal logger when running mkinit
|
||||
__ignore__ = ["logger"]
|
||||
from pg_rad.physics import attenuation
|
||||
from pg_rad.physics import fluence
|
||||
|
||||
from pg_rad.physics.attenuation import (get_mass_attenuation_coeff,)
|
||||
from pg_rad.physics.fluence import (phi_single_source,)
|
||||
|
||||
__all__ = ['attenuation', 'fluence', 'get_mass_attenuation_coeff',
|
||||
'phi_single_source']
|
||||
Reference in New Issue
Block a user