]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EVE/alice-macros/MUON_geomAll.C
New files; macros to demonstrate non-linear projections.
[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 = gReve->GetGeometry(dataPath.Data());
11
12   Reve::GeoTopNodeRnrEl* topn_re = new Reve::GeoTopNodeRnrEl
13     (gGeoManager, gGeoManager->GetTopNode());
14   
15   gReve->AddGlobalRenderElement(topn_re);
16
17   gReve->Redraw3D(kTRUE);
18   
19 }