This file contains hidden or 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
| import uproot | |
| # Just load one file and look at it | |
| f = uproot.open('optPhot_00001_g4mc_G4.root')['events/events'] | |
| eventid = f['eventid'].array() | |
| f.keys() | |
| # Iterate over several branches of a single file | |
| f = uproot.open('optPhot_00001_g4mc_G4.root')['events/events'] | |
| for x, y, z in f.iterate(["xp_pri", "yp_pri", "zp_pri"], outputtype=tuple): |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.