Belle II Software development
__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_stages_from_particles',
23 'get_default_channels',
24 'get_ccbarLambdaC_channels',
25 'get_unittest_channels',
26 'do_trainings',
27 'get_mode_names',
28 'Particle',
29 'MVAConfiguration',
30 'PreCutConfiguration',
31 'PostCutConfiguration',
32 'FeiConfiguration',
33 'DecayChannel',
34 'save_summary'
35]
36# @endcond
37
38from fei.config import Particle, MVAConfiguration, PreCutConfiguration, PostCutConfiguration, FeiConfiguration, DecayChannel
39from fei.default_channels import get_default_channels, get_ccbarLambdaC_channels, get_unittest_channels, get_mode_names
40from fei.core import get_path, FeiState, do_trainings, get_stages_from_particles, save_summary