]> git.uio.no Git - u/mrichter/AliRoot.git/blob - RICH/RICHRunLego.C
Minor improvements on the code
[u/mrichter/AliRoot.git] / RICH / RICHRunLego.C
1
2 RICHRunLego()
3
4    TControlBar *menu = new TControlBar("vertical","RICH Lego");
5    menu->AddButton("Center chamber (40 bins)","gAlice->RunLego(\"Config.C\",40,80,100,40,80,100,0,600,500)","Fast run");
6    menu->AddButton("All chambers (120 bins)","gAlice->RunLego(\"Config.C\",120,60,120,120,60,120,0,600,500)","Fast run");
7    menu->AddButton("Center chamber (80 bins)","gAlice->RunLego(\"Config.C\",80,80,100,80,80,100,0,510,500)","Slow run");
8    menu->AddButton("All chambers hi (200 bins)","gAlice->RunLego(\"Config.C\",200,60,120,200,60,120,0,600,500)","Very slow run");
9    menu->AddButton("Central chamber, x-z (40 bins)","gAlice->RunLego(\"Config.C\", 40, 0, 80, 40, 0, 80, 0, 600, 500, new  AliLegoGeneratorXYZ(\"y\"))","Fast run");
10    menu->AddButton("Central chamber, x-z (100 bins)","gAlice->RunLego(\"Config.C\", 100, 0, 80, 100, 0, 80, 0, 510, 500, new AliLegoGeneratorXYZ(\"y\"))","Slow run");
11    menu->Show();
12 }
13
14
15