]> git.uio.no Git - u/mrichter/AliRoot.git/blame - RICH/RICHRunLego.C
Moved from exa
[u/mrichter/AliRoot.git] / RICH / RICHRunLego.C
CommitLineData
8f10c927 1
2RICHRunLego()
3{
4 TControlBar *menu = new TControlBar("vertical","RICH Lego");
2c7efb94 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");
f7ed65c9 7 menu->AddButton("Center chamber (80 bins)","gAlice->RunLego(\"Config.C\",80,80,100,80,80,100,0,510,500)","Slow run");
2c7efb94 8 menu->AddButton("All chambers hi (200 bins)","gAlice->RunLego(\"Config.C\",200,60,120,200,60,120,0,600,500)","Very slow run");
f7ed65c9 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");
8f10c927 11 menu->Show();
12}
13
14
15