How to Work in Root Working with Root Files
Opening a root file:TFile file("file_name");
Examining file contents:file.ls();
Using a browser to examine a file:TBrowser b;
Writing output to a file:TFile file("file_name","RECREATE");... (code that creates an object with pointer objectPointer)objectPointer->Write();file.Close();