]>
Commit | Line | Data |
---|---|---|
fe4da5cc | 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"); | |
de1857bb | 17 | menu->AddButton("HMPID tree", "((TGeant3*)gMC)->Gdtree(\"rich\")","Shows the Geant tree for the HMPID"); |
fe4da5cc | 18 | menu->AddButton("SHIL tree", "((TGeant3*)gMC)->Gdtree(\"YMOT\")","Shows the Geant tree for the SHIL"); |
ababa197 | 19 | menu->AddButton("T0 tree", "((TGeant3*)gMC)->Gdtree(\"T0ST\")","Shows the Geant tree for the T0"); |
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"); | |
9fe20aac | 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"); | |
fe4da5cc | 25 | menu->Show(); |
26 | } | |
bec37e23 | 27 | |
28 | ||
29 |