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