Belle II Software  release-08-01-10
__init__.py
1 #!/usr/bin/env python3
2 
3 
10 
11 """
12 Full Event Interpretation framework for Belle II
13 
14 Detailed usage examples can be found in analysis/examples/FEI/
15 """
16 
17 # @cond internal
18 # only public interfaces, to make package doc nicer. Also the only things imported by 'from fei import *'
19 __all__ = ['FeiState', 'get_path', 'get_default_channels', 'get_unittest_channels', 'do_trainings',
20  'Particle', 'MVAConfiguration', 'PreCutConfiguration', 'PostCutConfiguration', 'FeiConfiguration', 'DecayChannel']
21 # @endcond
22 
23 from fei.config import Particle, MVAConfiguration, PreCutConfiguration, PostCutConfiguration, FeiConfiguration, DecayChannel
24 from fei.default_channels import get_default_channels, get_unittest_channels
25 from fei.core import get_path, FeiState, do_trainings
Definition: core.py:1