ROOT logo
// $Id$
// Main authors: Matevz Tadel & Alja Mrak-Tadel: 2006, 2007

/**************************************************************************
 * Copyright(c) 1998-2008, ALICE Experiment at CERN, all rights reserved. *
 * See http://aliceinfo.cern.ch/Offline/AliRoot/License.html for          *
 * full copyright notice.                                                 *
 **************************************************************************/

/// \ingroup evemacros
/// \file MUON_geomAll.C
///
/// \author B. Vulpescu, LPC

#if !defined(__CINT__) || defined(__MAKECINT__)
#include <TGeoManager.h>
#include <TGeoNode.h>
#include <TEveManager.h>
#include <TEveGeoNode.h>
#endif

void MUON_geomAll()
{
  gGeoManager = gEve->GetGeometry("geometry.root");

  TEveGeoTopNode* topn_re = new TEveGeoTopNode
    (gGeoManager, gGeoManager->GetTopNode());

  gEve->AddGlobalElement(topn_re);

  gEve->Redraw3D(kTRUE);

}
 MUON_geomAll.C:1
 MUON_geomAll.C:2
 MUON_geomAll.C:3
 MUON_geomAll.C:4
 MUON_geomAll.C:5
 MUON_geomAll.C:6
 MUON_geomAll.C:7
 MUON_geomAll.C:8
 MUON_geomAll.C:9
 MUON_geomAll.C:10
 MUON_geomAll.C:11
 MUON_geomAll.C:12
 MUON_geomAll.C:13
 MUON_geomAll.C:14
 MUON_geomAll.C:15
 MUON_geomAll.C:16
 MUON_geomAll.C:17
 MUON_geomAll.C:18
 MUON_geomAll.C:19
 MUON_geomAll.C:20
 MUON_geomAll.C:21
 MUON_geomAll.C:22
 MUON_geomAll.C:23
 MUON_geomAll.C:24
 MUON_geomAll.C:25
 MUON_geomAll.C:26
 MUON_geomAll.C:27
 MUON_geomAll.C:28
 MUON_geomAll.C:29
 MUON_geomAll.C:30
 MUON_geomAll.C:31
 MUON_geomAll.C:32
 MUON_geomAll.C:33
 MUON_geomAll.C:34