This repository was archived by the owner on Jun 21, 2022. It is now read-only.

Description
Apologies for the naive question, I cannot seem to grasp how to follow a TRef to find the component it points to.
For example, I have a root file created with delphes (detector simulator). It has particles (MC truth objects), tracks and towers (observations from the simulated detector). The tracks and towers keep a TRef that points to the particle that created them. I want to follow this TRef and learn the index of the particle that made them. Getting the particle itself would probably be enough to figure out it's index (with some fuzzy comparisons).
The only method I can see on the TRef object is tref.read(source, cursor, context, parent) which has no doc-string available.
How should I follow a TRef in uproot?