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