]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EVE/alice-macros/MUON_geomAll.C
Remove EVE/Reve/ sub-module.
[u/mrichter/AliRoot.git] / EVE / alice-macros / MUON_geomAll.C
CommitLineData
382f0106 1// $Id$
2
3void MUON_geomAll()
4{
5
6 using namespace std;
7
6d82fe4b 8 TString dataPath = TString(Alieve::gEvent->GetTitle());
9 dataPath.Append("/geometry.root");
84aff7a4 10 gGeoManager = gEve->GetGeometry(dataPath.Data());
382f0106 11
84aff7a4 12 TEveGeoTopNode* topn_re = new TEveGeoTopNode
382f0106 13 (gGeoManager, gGeoManager->GetTopNode());
6d82fe4b 14
84aff7a4 15 gEve->AddGlobalElement(topn_re);
382f0106 16
84aff7a4 17 gEve->Redraw3D(kTRUE);
6d82fe4b 18
382f0106 19}