From 8fce69f3787bd8acd6edd66dd1a918dfc73c72dd Mon Sep 17 00:00:00 2001 From: Tamas Gal <tgal@km3net.de> Date: Thu, 3 Dec 2020 21:27:42 +0100 Subject: [PATCH] Remove uproot3 --- km3io/tools.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/km3io/tools.py b/km3io/tools.py index 11b7b41..044f17d 100644 --- a/km3io/tools.py +++ b/km3io/tools.py @@ -2,7 +2,6 @@ import numba as nb import numpy as np import awkward as ak -import uproot3 as uproot from km3io.definitions import reconstruction as krec from km3io.definitions import trigger as ktrg @@ -10,10 +9,6 @@ from km3io.definitions import fitparameters as kfit from km3io.definitions import w2list_genhen as kw2gen from km3io.definitions import w2list_gseagen as kw2gsg -# 110 MB based on the size of the largest basket found so far in km3net -BASKET_CACHE_SIZE = 110 * 1024 ** 2 -BASKET_CACHE = uproot.cache.ThreadSafeArrayCache(BASKET_CACHE_SIZE) - class cached_property: """A simple cache decorator for properties.""" -- GitLab