]> git.uio.no Git - u/mrichter/AliRoot.git/blob - macros/DrawTrees.C
correctly handling the output directory path
[u/mrichter/AliRoot.git] / macros / DrawTrees.C
1 void DrawTrees()
2 {
3    TControlBar *menu = new TControlBar("vertical","DrawTrees menu");
4    menu->AddButton("TPC tree",     "((TGeant3*)gMC)->Gdtree(\"tpc\")","Shows the Geant tree for the TPC");
5    menu->AddButton("ITS tree",     "((TGeant3*)gMC)->Gdtree(\"ITSV\")","Shows the Geant tree for the ITS");
6    menu->AddButton("CASTOR tree",  "((TGeant3*)gMC)->Gdtree(\"OCTA\")","Shows the Geant tree for the CASTOR");
7    menu->AddButton("ABSO tree",    "((TGeant3*)gMC)->Gdtree(\"ABSM\")","Shows the Geant tree for the ABSO");
8    menu->AddButton("DIPO tree",    "((TGeant3*)gMC)->Gdtree(\"DDIP\")","Shows the Geant tree for the DIPO");
9    menu->AddButton("FMD tree",     "((TGeant3*)gMC)->Gdtree(\"IWR3\")","Shows the Geant tree for the FMD");
10    menu->AddButton("FRAME tree",   "((TGeant3*)gMC)->Gdtree(\"BFMO\")","Shows the Geant tree for the FRAME");
11    menu->AddButton("HALL tree",    "((TGeant3*)gMC)->Gdtree(\"HUWA\")","Shows the Geant tree for the HALL");
12    menu->AddButton("MAG tree",     "((TGeant3*)gMC)->Gdtree(\"L3MO\")","Shows the Geant tree for the MAG");
13    menu->AddButton("MUON tree",    "((TGeant3*)gMC)->Gdtree(\"CH1A\")","Shows the Geant tree for the MUON");
14    menu->AddButton("PHOS tree",    "((TGeant3*)gMC)->Gdtree(\"phos\")","Shows the Geant tree for the PHOS");
15    menu->AddButton("PIPE tree",    "((TGeant3*)gMC)->Gdtree(\"QQMO\")","Shows the Geant tree for the PIPE");
16    menu->AddButton("PMD tree",     "((TGeant3*)gMC)->Gdtree(\"DPMD\")","Shows the Geant tree for the PMD");
17    menu->AddButton("HMPID tree",    "((TGeant3*)gMC)->Gdtree(\"rich\")","Shows the Geant tree for the HMPID");
18    menu->AddButton("SHIL tree",    "((TGeant3*)gMC)->Gdtree(\"YMOT\")","Shows the Geant tree for the SHIL");
19    menu->AddButton("T0 tree",    "((TGeant3*)gMC)->Gdtree(\"T0ST\")","Shows the Geant tree for the T0");
20    menu->AddButton("TOF tree",     "((TGeant3*)gMC)->Gdtree(\"FBAR\")","Shows the Geant tree for the TOF");
21    menu->AddButton("TRD tree",     "((TGeant3*)gMC)->Gdtree(\"trd\")","Shows the Geant tree for the TRD");
22    menu->AddButton("ZDC tree",     "((TGeant3*)gMC)->Gdtree(\"zdc\")","Shows the Geant tree for the ZDC");
23    menu->AddButton("V0R tree", "((TGeant3*)gMC)->Gdtree(\"V0RI\")","Shows the Geant tree for the V0R");
24    menu->AddButton("V0L tree", "((TGeant3*)gMC)->Gdtree(\"V0LE\")","Shows the Geant tree for the V0L");
25    menu->Show();
26 }
27
28
29