Expand description
A convenience wrapper and needed parsers to work with ROOT’s
TTree
s. A Tree may be thought of as a table where each row
represents a particle collision. Each column may contain one or
several elements per collision. This module provides two Iterator
structs in order to iterate over these columns (TBranches
in
ROOT lingo).
Structs§
- Tree
- A
Tree
is the default “container” for datasets in Root files The data is oranized in so-called branches. This type is exposed only for the purpose of creatingColumnFixedIntoIter
andColumnVarIntoIter
objects from it.
Functions§
- ttree
- Parse a
Tree
from the given buffer. Usually used throughFileItem::parse_with
.