oxyroot 0.1.25

Another attempt to make library reading and writing of `.root` binary files which are commonly used in particle physics
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
   int  v_i = 0;

   TFile *hfile = hfile = TFile::Open("o.root","RECREATE", "", 207);

   TTree *tree = new TTree("T","data for rust tests");
   tree->Branch("v_i",&v_i);
   
   for (int i = -10; i < 10; ++i)
     {
       v_i = i;
       tree->Fill(); 
     }   

   tree->Print();
   tree->Write();   
   delete hfile;
}