v01_01_00
AndrewEdmonds11
released this
19 May 21:37
·
773 commits
to main
since this release
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
- TrkAnaUtils by @brownd1978 in #59
Full Changelog: v01_00_01...v01_01_00