Skip to content

Commit

Permalink
removed data subpackage
Browse files Browse the repository at this point in the history
  • Loading branch information
jacanchaplais committed Sep 27, 2023
1 parent da1ade0 commit 1f31fcb
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 587 deletions.
3 changes: 0 additions & 3 deletions heparchy/data/__init__.py

This file was deleted.

351 changes: 0 additions & 351 deletions heparchy/data/event.py

This file was deleted.

17 changes: 8 additions & 9 deletions heparchy/read/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,12 @@
-----
Currently only implemented for hepmc and hdf5.
"""
from . import hdf
from .hdf import *
import heparchy.read.hepmc as hepmc
from .hdf import HdfEventReader, HdfProcessReader, HdfReader, MapReader, ReadOnlyError


HepMC = hepmc.HepMC


__all__ = ["HepMC"]
__all__.extend(hdf.__all__)
__all__ = [
"ReadOnlyError",
"MapReader",
"HdfEventReader",
"HdfProcessReader",
"HdfReader",
]
Loading

0 comments on commit 1f31fcb

Please sign in to comment.