]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EVE/alice-macros/MUON_geomAll.C
From Stefano:
[u/mrichter/AliRoot.git] / EVE / alice-macros / MUON_geomAll.C
1 // $Id$
2 // Main authors: Matevz Tadel & Alja Mrak-Tadel: 2006, 2007
3
4 /**************************************************************************
5  * Copyright(c) 1998-2008, ALICE Experiment at CERN, all rights reserved. *
6  * See http://aliceinfo.cern.ch/Offline/AliRoot/License.html for          *
7  * full copyright notice.                                                 *
8  **************************************************************************/
9
10 /// \ingroup evemacros
11 /// \file MUON_geomAll.C
12 ///
13 /// \author B. Vulpescu, LPC
14
15 void MUON_geomAll()
16 {
17   gGeoManager = gEve->GetGeometry("geometry.root");
18
19   TEveGeoTopNode* topn_re = new TEveGeoTopNode
20     (gGeoManager, gGeoManager->GetTopNode());
21
22   gEve->AddGlobalElement(topn_re);
23
24   gEve->Redraw3D(kTRUE);
25
26 }