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
74992087
Commit
74992087
authored
5 years ago
by
Tamas Gal
Browse files
Options
Downloads
Patches
Plain Diff
Cleanup
parent
7667ff67
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!27
Refactor offline I/O
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
km3io/offline.py
+3
-37
3 additions, 37 deletions
km3io/offline.py
tests/test_offline.py
+2
-5
2 additions, 5 deletions
tests/test_offline.py
with
5 additions
and
42 deletions
km3io/offline.py
+
3
−
37
View file @
74992087
...
@@ -88,7 +88,7 @@ class cached_property:
...
@@ -88,7 +88,7 @@ class cached_property:
class
OfflineReader
:
class
OfflineReader
:
"""
reader for offline ROOT files
"""
"""
reader for offline ROOT files
"""
def
__init__
(
self
,
file_path
=
None
,
fobj
=
None
,
data
=
None
,
index
=
None
):
def
__init__
(
self
,
file_path
=
None
):
"""
OfflineReader class is an offline ROOT file wrapper
"""
OfflineReader class is an offline ROOT file wrapper
Parameters
Parameters
...
@@ -98,49 +98,15 @@ class OfflineReader:
...
@@ -98,49 +98,15 @@ class OfflineReader:
path-like object that points to the file.
path-like object that points to the file.
"""
"""
self
.
_index
=
index
self
.
_fobj
=
uproot
.
open
(
file_path
)
if
file_path
is
not
None
:
self
.
_tree
=
self
.
_fobj
[
MAIN_TREE_NAME
]
self
.
_fobj
=
uproot
.
open
(
file_path
)
self
.
_tree
=
self
.
_fobj
[
MAIN_TREE_NAME
]
self
.
_data
=
self
.
_tree
.
lazyarrays
(
basketcache
=
BASKET_CACHE
)
else
:
self
.
_fobj
=
fobj
self
.
_tree
=
self
.
_fobj
[
MAIN_TREE_NAME
]
self
.
_data
=
data
@cached_property
@cached_property
def
events
(
self
):
def
events
(
self
):
return
Branch
(
self
.
_tree
,
return
Branch
(
self
.
_tree
,
mapper
=
EVENTS_MAP
,
mapper
=
EVENTS_MAP
,
index
=
self
.
_index
,
subbranchmaps
=
SUBBRANCH_MAPS
)
subbranchmaps
=
SUBBRANCH_MAPS
)
@classmethod
def
from_index
(
cls
,
source
,
index
):
"""
Create an instance with a subtree of a given index
Parameters
----------
source: ROOTDirectory
The source file object.
index: index or slice
The index or slice to create the subtree.
"""
instance
=
cls
(
fobj
=
source
.
_fobj
,
data
=
source
.
_data
[
index
],
index
=
index
)
return
instance
def
__getitem__
(
self
,
index
):
return
OfflineReader
.
from_index
(
source
=
self
,
index
=
index
)
def
__len__
(
self
):
tree
=
self
.
_fobj
[
MAIN_TREE_NAME
]
if
self
.
_index
is
None
:
return
len
(
tree
)
else
:
return
len
(
tree
.
lazyarrays
(
basketcache
=
BASKET_CACHE
)[
self
.
index
])
@cached_property
@cached_property
def
header
(
self
):
def
header
(
self
):
if
'
Head
'
in
self
.
_fobj
:
if
'
Head
'
in
self
.
_fobj
:
...
...
This diff is collapsed.
Click to expand it.
tests/test_offline.py
+
2
−
5
View file @
74992087
...
@@ -14,13 +14,10 @@ class TestOfflineReader(unittest.TestCase):
...
@@ -14,13 +14,10 @@ class TestOfflineReader(unittest.TestCase):
def
setUp
(
self
):
def
setUp
(
self
):
self
.
r
=
OFFLINE_FILE
self
.
r
=
OFFLINE_FILE
self
.
nu
=
OFFLINE_NUMUCC
self
.
nu
=
OFFLINE_NUMUCC
self
.
N
events
=
10
self
.
n_
events
=
10
def
test_number_events
(
self
):
def
test_number_events
(
self
):
Nevents
=
len
(
self
.
r
)
assert
self
.
n_events
==
len
(
self
.
r
.
events
)
# check that there are 10 events
self
.
assertEqual
(
Nevents
,
self
.
Nevents
)
def
test_find_empty
(
self
):
def
test_find_empty
(
self
):
fitinf
=
self
.
nu
.
events
.
tracks
.
fitinf
fitinf
=
self
.
nu
.
events
.
tracks
.
fitinf
...
...
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