Skip to content
Snippets Groups Projects
Commit b87063fe authored by Tamas Gal's avatar Tamas Gal :speech_balloon:
Browse files

uproot4->uproot, awkward1->awkward etc.

parent 05d50730
No related branches found
No related tags found
1 merge request!39WIP: Resolve "uproot4 integration"
#!/usr/bin/env python3 #!/usr/bin/env python3
import numpy as np import numpy as np
import awkward1 as ak import awkward as ak
import uproot3 as uproot import uproot3 as uproot
from .tools import unfold_indices from .tools import unfold_indices
......
#!/usr/bin/env python3 #!/usr/bin/env python3
import numba as nb import numba as nb
import numpy as np import numpy as np
import awkward1 as ak1 import awkward as ak
import uproot3 as uproot import uproot3 as uproot
from km3io.definitions import reconstruction as krec from km3io.definitions import reconstruction as krec
...@@ -160,7 +160,7 @@ def fitinf(fitparam, tracks): ...@@ -160,7 +160,7 @@ def fitinf(fitparam, tracks):
out = params[:, index] out = params[:, index]
else: else:
params = fit[count_nested(fit, axis=2) > index] params = fit[count_nested(fit, axis=2) > index]
out = ak1.Array([i[:, index] for i in params]) out = ak.Array([i[:, index] for i in params])
return out return out
...@@ -183,11 +183,11 @@ def count_nested(arr, axis=0): ...@@ -183,11 +183,11 @@ def count_nested(arr, axis=0):
counts of elements found in a nested awkward1 Array. counts of elements found in a nested awkward1 Array.
""" """
if axis == 0: if axis == 0:
return ak1.num(arr, axis=0) return ak.num(arr, axis=0)
if axis == 1: if axis == 1:
return ak1.num(arr, axis=1) return ak.num(arr, axis=1)
if axis == 2: if axis == 2:
return ak1.count(arr, axis=2) return ak.count(arr, axis=2)
def get_multiplicity(tracks, rec_stages): def get_multiplicity(tracks, rec_stages):
...@@ -276,7 +276,7 @@ def _longest_tracks(tracks): ...@@ -276,7 +276,7 @@ def _longest_tracks(tracks):
tracks_nesting_level = 1 tracks_nesting_level = 1
len_stages = count_nested(tracks.rec_stages, axis=stages_nesting_level) len_stages = count_nested(tracks.rec_stages, axis=stages_nesting_level)
longest = tracks[len_stages == ak1.max(len_stages, axis=tracks_nesting_level)] longest = tracks[len_stages == ak.max(len_stages, axis=tracks_nesting_level)]
return longest return longest
...@@ -288,7 +288,7 @@ def _max_lik_track(tracks): ...@@ -288,7 +288,7 @@ def _max_lik_track(tracks):
else: else:
tracks_nesting_level = 1 tracks_nesting_level = 1
return tracks[tracks.lik == ak1.max(tracks.lik, axis=tracks_nesting_level)] return tracks[tracks.lik == ak.max(tracks.lik, axis=tracks_nesting_level)]
def mask(tracks, stages=None, startend=None, minmax=None): def mask(tracks, stages=None, startend=None, minmax=None):
...@@ -345,7 +345,7 @@ def mask(tracks, stages=None, startend=None, minmax=None): ...@@ -345,7 +345,7 @@ def mask(tracks, stages=None, startend=None, minmax=None):
def _mask_rec_stages_between_start_end(tracks, start, end): def _mask_rec_stages_between_start_end(tracks, start, end):
"""Mask tracks.rec_stages that start exactly with start and end exactly """Mask tracks.rec_stages that start exactly with start and end exactly
with end. ie [start, a, b ...,z , end]""" with end. ie [start, a, b ...,z , end]"""
builder = ak1.ArrayBuilder() builder = ak.ArrayBuilder()
if tracks.is_single: if tracks.is_single:
_find_between_single(tracks.rec_stages, start, end, builder) _find_between_single(tracks.rec_stages, start, end, builder)
return (builder.snapshot() == 1)[0] return (builder.snapshot() == 1)[0]
...@@ -407,12 +407,12 @@ def _mask_explicit_rec_stages(tracks, stages): ...@@ -407,12 +407,12 @@ def _mask_explicit_rec_stages(tracks, stages):
where stages were found. False otherwise. where stages were found. False otherwise.
""" """
builder = ak1.ArrayBuilder() builder = ak.ArrayBuilder()
if tracks.is_single: if tracks.is_single:
_find_single(tracks.rec_stages, ak1.Array(stages), builder) _find_single(tracks.rec_stages, ak.Array(stages), builder)
return (builder.snapshot() == 1)[0] return (builder.snapshot() == 1)[0]
else: else:
_find(tracks.rec_stages, ak1.Array(stages), builder) _find(tracks.rec_stages, ak.Array(stages), builder)
return builder.snapshot() == 1 return builder.snapshot() == 1
...@@ -583,7 +583,7 @@ def _mask_rec_stages_in_range_min_max(tracks, min_stage=None, max_stage=None): ...@@ -583,7 +583,7 @@ def _mask_rec_stages_in_range_min_max(tracks, min_stage=None, max_stage=None):
""" """
if (min_stage is not None) and (max_stage is not None): if (min_stage is not None) and (max_stage is not None):
builder = ak1.ArrayBuilder() builder = ak.ArrayBuilder()
if tracks.is_single: if tracks.is_single:
_find_in_range_single(tracks.rec_stages, min_stage, max_stage, builder) _find_in_range_single(tracks.rec_stages, min_stage, max_stage, builder)
return (builder.snapshot() == 1)[0] return (builder.snapshot() == 1)[0]
...@@ -685,7 +685,7 @@ def _mask_rec_stages_in_set(tracks, stages): ...@@ -685,7 +685,7 @@ def _mask_rec_stages_in_set(tracks, stages):
""" """
if isinstance(stages, set): if isinstance(stages, set):
builder = ak1.ArrayBuilder() builder = ak.ArrayBuilder()
if tracks.is_single: if tracks.is_single:
_find_in_set_single(tracks.rec_stages, stages, builder) _find_in_set_single(tracks.rec_stages, stages, builder)
return (builder.snapshot() == 1)[0] return (builder.snapshot() == 1)[0]
...@@ -788,14 +788,14 @@ def is_cc(fobj): ...@@ -788,14 +788,14 @@ def is_cc(fobj):
""" """
program = fobj.header.simul.program program = fobj.header.simul.program
w2list = fobj.events.w2list w2list = fobj.events.w2list
len_w2lists = ak1.num(w2list, axis=1) len_w2lists = ak.num(w2list, axis=1)
if all(len_w2lists <= 7): # old nu file have w2list of len 7. if all(len_w2lists <= 7): # old nu file have w2list of len 7.
usr_names = fobj.events.mc_tracks.usr_names usr_names = fobj.events.mc_tracks.usr_names
usr_data = fobj.events.mc_tracks.usr usr_data = fobj.events.mc_tracks.usr
mask_cc_flag = usr_names[:, 0] == b"cc" mask_cc_flag = usr_names[:, 0] == b"cc"
inter_ID = usr_data[:, 0][mask_cc_flag] inter_ID = usr_data[:, 0][mask_cc_flag]
out = ak1.flatten(inter_ID == 2) # 2 is the interaction ID for CC. out = ak.flatten(inter_ID == 2) # 2 is the interaction ID for CC.
else: else:
if "gseagen" in program.lower(): if "gseagen" in program.lower():
......
...@@ -14,7 +14,7 @@ Options: ...@@ -14,7 +14,7 @@ Options:
-h --help Show this screen. -h --help Show this screen.
""" """
import uproot4 as uproot import uproot
def print_tree(filename): def print_tree(filename):
......
docopt docopt
numba>=0.50 numba>=0.50
awkward1>=0.3.1 awkward>=1.0.0rc1
uproot4 uproot>=4.0.0rc3
uproot3 uproot3
setuptools_scm setuptools_scm
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment