]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ALIFAST/alifast.C
Introducing Id
[u/mrichter/AliRoot.git] / ALIFAST / alifast.C
1 void alifast()
2 {
3
4   AliFast * fast =new AliFast("blabla","blabla");
5   gAliFast->Init("Config.C");
6
7   TFile file("alifast.root","recreate","ALIFast root file",2);
8   gAliFast.Init();
9   gAliFast.MakeTree();
10   gAliFast->Generator()->Generate();
11
12   gAliFast.Make(0);       // Generate and Reconstruct event
13   gAliFast.FillTree();    
14   gAliFast.Clear();       // Clear reconstructed event lists
15
16   gAliFast.Finish();
17   gAliFast.Write(); 
18 }