]> git.uio.no Git - u/mrichter/AliRoot.git/blame - macros/DrawPictures.C
Adding /home/phristov/alice/AliRoot/include to the interpreter include path. This...
[u/mrichter/AliRoot.git] / macros / DrawPictures.C
CommitLineData
fe4da5cc 1void DrawPictures()
2{
3 TControlBar *menu = new TControlBar("vertical","Pictures menu");
4 menu->AddButton("TPC shaded", ".x DrawTPC.C","Draw a shaded view of TPC");
5 menu->AddButton("ITS shaded", ".x DrawITS.C","Draw a shaded view of ITS");
6 menu->AddButton("CASTOR shaded",".x DrawCASTOR.C","Draw a shaded view of CASTOR");
7 menu->AddButton("ABSO shaded", ".x DrawABSO.C","Draw a shaded view of ABSO");
8 menu->AddButton("DIPO shaded", ".x DrawDIPO.C","Draw a shaded view of DIPO");
9 menu->AddButton("FMD shaded", ".x DrawFMD.C","Draw a shaded view of FMD");
10 menu->AddButton("FRAME shaded", ".x DrawFRAME.C","Draw a shaded view of FRAME");
11 menu->AddButton("HALL shaded", ".x DrawHALL.C","Draw a shaded view of HALL");
12 menu->AddButton("MAG shaded", ".x DrawMAG.C","Draw a shaded view of MAG");
13 menu->AddButton("MUON shaded", ".x DrawMUON.C","Draw a shaded view of MUON");
14 menu->AddButton("PHOS shaded", ".x DrawPHOS.C","Draw a shaded view of PHOS");
15 menu->AddButton("PIPE shaded", ".x DrawPIPE.C","Draw a shaded view of PIPE");
16 menu->AddButton("PMD shaded", ".x DrawPMD.C","Draw a shaded view of PMD");
de1857bb 17 menu->AddButton("HMPID shaded", ".x DrawHMPID.C","Draw a shaded view of HMPID");
fe4da5cc 18 menu->AddButton("SHIL shaded", ".x DrawSHIL.C","Draw a shaded view of SHIL");
ababa197 19 menu->AddButton("T0 shaded", ".x DrawT0.C","Draw a shaded view of T0");
fe4da5cc 20 menu->AddButton("TOF shaded", ".x DrawTOF.C","Draw a shaded view of TOF");
21 menu->AddButton("TRD shaded", ".x DrawTRD.C","Draw a shaded view of TRD");
22 menu->AddButton("ZDC shaded", ".x DrawZDC.C","Draw a shaded view of ZDC");
9fe20aac 23 menu->AddButton("VZERO shaded", ".x DrawVZERO.C","Draw a shaded view of VZERO");
fe4da5cc 24 menu->Show();
25}