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