]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EVE/alice-macros/MUON_makeGeom.C
changes for Vertex and Tracks classes
[u/mrichter/AliRoot.git] / EVE / alice-macros / MUON_makeGeom.C
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
13 #if !defined(__CINT__) || defined(__MAKECINT__)
14 #include <TGeoManager.h>
15
16 #include <AliMpCDB.h>
17 #include <AliRun.h>
18 #endif
19
20 void MUON_makeGeom()
21 {
22   AliMpCDB::LoadMpSegmentation2(); 
23   gAlice->SetConfigFunction("$ALICE_ROOT/MUON/Config.C");
24   //gAlice->Init("Config.C");
25
26   gGeoManager->Export("geometry.root");
27
28 }