From 31e85a4f32898a0ad593f950ce675fec5c0725e7 Mon Sep 17 00:00:00 2001
From: Johannes Schumann <jschumann@km3net.de>
Date: Wed, 28 Oct 2020 14:53:38 +0100
Subject: [PATCH] Remove LHE info line interpreter

---
 km3buu/output.py | 9 ---------
 1 file changed, 9 deletions(-)

diff --git a/km3buu/output.py b/km3buu/output.py
index 3dda0c9..574879f 100644
--- a/km3buu/output.py
+++ b/km3buu/output.py
@@ -89,15 +89,6 @@ def read_nu_abs_xsection(filepath):
     return values
 
 
-def parse_gibuu_event_info(line):
-    fields = line.split()[1:]
-    if int(fields[0]) != 5:
-        raise NotImplementedError(
-            "Event information type %s cannot be parsed yet!" % fields[0])
-    else:
-        return np.genfromtxt(StringIO(line[3:]), dtype=LHE_NU_INFO_DTYPE)
-
-
 class GiBUUOutput:
     def __init__(self, data_dir):
         """
-- 
GitLab