Belle II Software light-2505-deimos
__init__.py
1#!/usr/bin/env python3
2
3
10
11"""
12Full Event Interpretation framework for Belle II
13
14Detailed 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__ = [
20 'FeiState',
21 'get_path',
22 'get_default_channels',
23 'get_ccbarLambdaC_channels',
24 'get_unittest_channels',
25 'do_trainings',
26 'get_mode_names',
27 'Particle',
28 'MVAConfiguration',
29 'PreCutConfiguration',
30 'PostCutConfiguration',
31 'FeiConfiguration',
32 'DecayChannel',
33]
34# @endcond
35
36from fei.config import Particle, MVAConfiguration, PreCutConfiguration, PostCutConfiguration, FeiConfiguration, DecayChannel
37from fei.default_channels import get_default_channels, get_ccbarLambdaC_channels, get_unittest_channels, get_mode_names
38from fei.core import get_path, FeiState, do_trainings