]> git.uio.no Git - u/mrichter/AliRoot.git/blame - macros/DrawTrees.C
flistTreeFrame attribute added; fCanvasWindow removed
[u/mrichter/AliRoot.git] / macros / DrawTrees.C
CommitLineData
fe4da5cc 1void 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("RICH tree", "((TGeant3*)gMC)->Gdtree(\"rich\")","Shows the Geant tree for the RICH");
18 menu->AddButton("SHIL tree", "((TGeant3*)gMC)->Gdtree(\"YMOT\")","Shows the Geant tree for the SHIL");
e497e6b2 19 menu->AddButton("START tree", "((TGeant3*)gMC)->Gdtree(\"T0ST\")","Shows the Geant tree for the START");
fe4da5cc 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->Show();
24}
bec37e23 25
26
27