Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
K
km3io
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
km3py
km3io
Commits
b87063fe
Commit
b87063fe
authored
4 years ago
by
Tamas Gal
Browse files
Options
Downloads
Patches
Plain Diff
uproot4->uproot, awkward1->awkward etc.
parent
05d50730
No related branches found
Branches containing commit
No related tags found
1 merge request
!39
WIP: Resolve "uproot4 integration"
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
km3io/rootio.py
+1
-1
1 addition, 1 deletion
km3io/rootio.py
km3io/tools.py
+15
-15
15 additions, 15 deletions
km3io/tools.py
km3io/utils/kprinttree.py
+1
-1
1 addition, 1 deletion
km3io/utils/kprinttree.py
requirements/install.txt
+2
-2
2 additions, 2 deletions
requirements/install.txt
with
19 additions
and
19 deletions
km3io/rootio.py
+
1
−
1
View file @
b87063fe
#!/usr/bin/env python3
#!/usr/bin/env python3
import
numpy
as
np
import
numpy
as
np
import
awkward
1
as
ak
import
awkward
as
ak
import
uproot3
as
uproot
import
uproot3
as
uproot
from
.tools
import
unfold_indices
from
.tools
import
unfold_indices
...
...
This diff is collapsed.
Click to expand it.
km3io/tools.py
+
15
−
15
View file @
b87063fe
#!/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
awkward
1
as
ak
1
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
=
ak
1
.
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
ak
1
.
num
(
arr
,
axis
=
0
)
return
ak
.
num
(
arr
,
axis
=
0
)
if
axis
==
1
:
if
axis
==
1
:
return
ak
1
.
num
(
arr
,
axis
=
1
)
return
ak
.
num
(
arr
,
axis
=
1
)
if
axis
==
2
:
if
axis
==
2
:
return
ak
1
.
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
==
ak
1
.
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
==
ak
1
.
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
=
ak
1
.
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
=
ak
1
.
ArrayBuilder
()
builder
=
ak
.
ArrayBuilder
()
if
tracks
.
is_single
:
if
tracks
.
is_single
:
_find_single
(
tracks
.
rec_stages
,
ak
1
.
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
,
ak
1
.
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
=
ak
1
.
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
=
ak
1
.
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
=
ak
1
.
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
=
ak
1
.
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
():
...
...
This diff is collapsed.
Click to expand it.
km3io/utils/kprinttree.py
+
1
−
1
View file @
b87063fe
...
@@ -14,7 +14,7 @@ Options:
...
@@ -14,7 +14,7 @@ Options:
-h --help Show this screen.
-h --help Show this screen.
"""
"""
import
uproot
4
as
uproot
import
uproot
def
print_tree
(
filename
):
def
print_tree
(
filename
):
...
...
This diff is collapsed.
Click to expand it.
requirements/install.txt
+
2
−
2
View file @
b87063fe
docopt
docopt
numba>=0.50
numba>=0.50
awkward
1
>=
0.3.
1
awkward>=
1.0.0rc
1
uproot
4
uproot
>=4.0.0rc3
uproot3
uproot3
setuptools_scm
setuptools_scm
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment