Coverage for src/km3pipe/io/__init__.py: 100%

19 statements  

« prev     ^ index     » next       coverage.py v7.4.4, created at 2024-03-28 03:15 +0000

1# Filename: __init__.py 

2""" 

3A collection of io for different kinds of data formats. 

4 

5""" 

6 

7import os.path 

8 

9import numpy as np 

10 

11from .evt import EvtPump # noqa 

12from .clb import CLBPump # noqa 

13from .ch import CHPump # noqa 

14from .hdf5 import HDF5Pump, HDF5Sink, HDF5MetaData # noqa 

15from .offline import OfflinePump 

16from . import online 

17from . import offline 

18from . import daq 

19 

20from km3pipe.logger import get_logger 

21 

22__author__ = "Tamas Gal" 

23__copyright__ = "Copyright 2016, Tamas Gal and the KM3NeT collaboration." 

24__credits__ = [] 

25__license__ = "MIT" 

26__maintainer__ = "Tamas Gal, Moritz Lotze" 

27__email__ = "tgal@km3net.de" 

28__status__ = "Development"