]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EVE/alice-macros/MUON_makeGeom.C
New detector AD
[u/mrichter/AliRoot.git] / EVE / alice-macros / MUON_makeGeom.C
CommitLineData
25b4bdb2 1// $Id$
2
3/**************************************************************************
4 * Copyright(c) 1998-2008, ALICE Experiment at CERN, all rights reserved. *
5 * See http://aliceinfo.cern.ch/Offline/AliRoot/License.html for *
6 * full copyright notice. *
7 **************************************************************************/
8
9/// \ingroup evemacros
10/// \file MUON_makeGeom.C
11///
12/// \author B. Vulpescu, LPC
ba978640 13#if !defined(__CINT__) || defined(__MAKECINT__)
14#include <TGeoManager.h>
25b4bdb2 15
6c49a8e1 16#include <AliMpCDB.h>
17#include <AliRun.h>
ba978640 18#endif
19
20void MUON_makeGeom()
58e15fc1 21{
22 AliMpCDB::LoadMpSegmentation2();
ba978640 23 gAlice->SetConfigFunction("$ALICE_ROOT/MUON/Config.C");
58e15fc1 24 //gAlice->Init("Config.C");
25
26 gGeoManager->Export("geometry.root");
27
28}