Belle II Software  release-06-02-00
__init__.py
1 #!/usr/bin/env python3
2 # -*- coding: utf-8 -*-
3 
4 
11 
12 """
13 Skim Package
14 ------------
15 
16 Core classes of skim package are provided as convenient imports directly from ``skim``.
17 
18 To use a specific skim, import the skim from the appropriate working group submodule in
19 ``skim.WGs``.
20 
21  from skim.WGs.systematics import RadEEList
22 """
23 
24 # Provide core classes of skim package
25 from skim.core import BaseSkim, CombinedSkim # noqa
26 from skim.utils.misc import fancy_skim_header # noqa
Definition: core.py:1