]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ALIFAST/alifast.C
Made a new abstract base class; AliL3HoughBaseTransformer for different implementations
[u/mrichter/AliRoot.git] / ALIFAST / alifast.C
CommitLineData
65a39007 1void 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}