I find the TTree::Show method extremely valuable when trying to recall all the names of branches and leaves in a tree. I’ve come upon the situation where I have multiple trees that have all been friended to one master tree. When I execute Show on this master tree (or even TTree::Print) I’m only returned the branches and leaves from the master tree. I would have expected all the friends to show up as well as the branches are available in TTree::Draw and TTree::Scan.
Is there anyway to easily get this functionality without much overhead? I like to use this on the command line so even a few lines of code would be too much. I believe this is an oversight and should be included in the next release, but that is just my opinion.
You are correct about TTree::Print, I should have had a closer look at the documentation. What about TTree::Show? I think it would be useful to have that functionality as well. Honestly, I use show more often than print as the output is more compact and most of the times I just need a quick refresher on the names of the leaves.