]> git.uio.no Git - u/mrichter/AliRoot.git/blame - AliFluka/AliDetConstructionHelper.cxx
Reverted direct flow parameters
[u/mrichter/AliRoot.git] / AliFluka / AliDetConstructionHelper.cxx
CommitLineData
16710643 1/**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3 * *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
6 * *
7 * Permission to use, copy, modify and distribute this software and its *
8 * documentation strictly for non-commercial purposes is hereby granted *
9 * without fee, provided that the above copyright notice appears in all *
10 * copies and that both the copyright notice and this permission notice *
11 * appear in the supporting documentation. The authors make no claims *
12 * about the suitability of this software for any purpose. It is *
13 * provided "as is" without express or implied warranty. *
14 **************************************************************************/
15
04c6e46a 16// $Id$
16710643 17//
18// Author: I. Hrivnacova
19//
20// Class AliDetConstructionHelper
21// ------------------------------
22// See the class description in the header file.
04c6e46a 23
24#include "AliDetConstructionHelper.h"
25#include "AliDetConstruction.h"
26#include "AliFiles.h"
27#include "AliBODY.h"
28#include "AliHALL.h"
29
30/*
31#include <TROOT.h>
32#include <TCint.h>
33*/
34
35AliDetConstructionHelper::AliDetConstructionHelper()
36{
37/*
38 // initialize the Alice setup
39 gROOT->LoadMacro("/home/ivana/AliRoot/macros/Config.C");
40 gInterpreter->ProcessLine("Config()");
41*/
42 G4cout << "Creating world" << G4endl;
43 AliBODY *BODY = new AliBODY("BODY","Alice envelop");
44 G4cout << "Creating hall" << G4endl;
45 AliHALL *HALL = new AliHALL("HALL","Alice Hall");
46
47 fFiles = new AliFiles();
48 fDetConstruction = new AliDetConstruction();
49}
50
51AliDetConstructionHelper::~AliDetConstructionHelper()
52{
53 delete fDetConstruction;
54 delete fFiles;
55}
56