From cbfff4084f0c5fa82a578b2c8920d155994ff09f Mon Sep 17 00:00:00 2001 From: Johannes Schumann <johannes.schumann@fau.de> Date: Sun, 15 Nov 2020 01:21:10 +0100 Subject: [PATCH] Removed TQDM --- km3buu/output.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/km3buu/output.py b/km3buu/output.py index 133cc10..2cd5ba6 100644 --- a/km3buu/output.py +++ b/km3buu/output.py @@ -281,8 +281,7 @@ def write_detector_file(gibuu_output, event_data = fobj["RootTuple"].arrays() bjorkenx = GiBUUOutput.bjorken_x(event_data) bjorkeny = GiBUUOutput.bjorken_y(event_data) - from tqdm import tqdm - for i, event in tqdm(enumerate(event_data)): + for i, event in enumerate(event_data): aafile.evt.clear() aafile.evt.id = mc_event_id aafile.evt.mc_run_id = mc_event_id -- GitLab