]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EVE/alice-macros/geom_simple.C
cosmetics
[u/mrichter/AliRoot.git] / EVE / alice-macros / geom_simple.C
CommitLineData
5a5a1232 1// $Id$
d810d0de 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 *
51346b82 7 * full copyright notice. *
d810d0de 8 **************************************************************************/
6c49a8e1 9
ba978640 10#if !defined(__CINT__) || defined(__MAKECINT__)
11#include <TGeoManager.h>
12#include <TEveManager.h>
13#include <TEveGeoNode.h>
14#endif
5a5a1232 15
16void geom_simple()
17{
81515106 18 gGeoManager = gEve->GetGeometry("$ALICE_ROOT/EVE/alice-data/simple_geo.root");
5a5a1232 19
84aff7a4 20 TEveGeoTopNode* topn_re = new TEveGeoTopNode(gGeoManager, gGeoManager->GetTopNode());
21 gEve->AddGlobalElement(topn_re);
22 gEve->Redraw3D();
5a5a1232 23}