Skip to content

v01_01_00

Compare
Choose a tag to compare
@AndrewEdmonds11 AndrewEdmonds11 released this 19 May 21:37
· 773 commits to main since this release
d0035dd

Overview

This tag includes the new TrkAnaUtils.C script that can be used on the ROOT command line like so:

// load the utility and open a file
#include "TrkAna/examples/TrkAnaUtils.C"
TrkAnaUtils tku("trkana.root", "TrkAnaNeg")

// list all top-level branches
tku.ListBranches()

// list all top- and next-level branches
tku.ListBranches(1)

// list leaves on a specific branch
tku.ListBranch("deent")

// use ROOT's draw command
tku.Draw("deent.mom", "de.t0>700", "HIST")

What's Changed

Full Changelog: v01_00_01...v01_01_00