import ROOT as r
outFile = r.TFile("outfile.root", "RECREATE")
tree = openFile.Get('mini')
Hi, I’m confused about this 'mini' parameter here, also what is the type of tree? As far as I know the Get() method can extract information according to some ids of the histogram, for example.
Thanks.