-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #73 from nugraph/feature/plotting-updates
Updates to graph processing and plotting
- Loading branch information
Showing
3 changed files
with
116 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
"""Test pynuml graph processing""" | ||
import pynuml | ||
|
||
def test_process_uboone(): | ||
"""Test graph processing with MicroBooNE open data release""" | ||
f = pynuml.io.File("/raid/nugraph/uboone-opendata/uboone-opendata.evt.h5") | ||
processor = pynuml.process.HitGraphProducer( | ||
file=f, | ||
semantic_labeller=pynuml.labels.StandardLabels(), | ||
event_labeller=pynuml.labels.FlavorLabels(), | ||
label_vertex=True) | ||
f.read_data(0, 100) | ||
evts = f.build_evt() | ||
for evt in evts: | ||
processor(evt) |