]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ALIROOT/aliroot.cxx
ConfigPPR.C removed to avoid confusions with Config.C. Config.C contains all the...
[u/mrichter/AliRoot.git] / ALIROOT / aliroot.cxx
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
16 /*
17 $Log$
18 Revision 1.6  2001/05/21 17:22:50  buncic
19 Fixed problem with missing AliConfig while reading galice.root
20
21 Revision 1.5  2001/05/16 14:57:07  alibrary
22 New files for folders and Stack
23
24 Revision 1.4  2000/12/20 08:39:37  fca
25 Support for Cerenkov and process list in Virtual MC
26
27 Revision 1.3  1999/09/29 09:24:07  fca
28 Introduction of the Copyright and cvs Log
29
30 */
31
32 //////////////////////////////////////////////////////////////////////////
33 //                                                                      //
34 // aliroot                                                              //
35 //                                                                      //
36 // Main program used to create aliroot application.                     //
37 //                                                                      //
38 //                                                                      //
39 // To be able to communicate between the FORTRAN code of GEANT and the  //
40 // ROOT data structure, a number of interface routines have been        //
41 // developed.                                                           //
42 //Begin_Html
43 /*
44 <img src="picts/newg.gif">
45 */
46 //End_Html
47 //////////////////////////////////////////////////////////////////////////
48
49 //Standard Root includes
50 #include <TROOT.h>
51 #include <TRint.h>
52 #include <TFile.h>
53 #include <AliRun.h>
54 #include <AliConfig.h>
55
56 #if defined __linux
57 //On linux Fortran wants this, so we give to it!
58 int xargv=0;
59 int xargc=0;
60 #endif
61
62 #if defined WIN32 
63   extern "C" int __fastflag=0; 
64   extern "C" int _pctype=0; 
65   extern "C" int __mb_cur_max=0; 
66 #endif 
67
68 int gcbank_[3000000];
69
70 //Initialise the Root environment
71  extern void InitGui();
72  VoidFuncPtr_t initfuncs[] = { InitGui, 0 };
73  TROOT root("galice","The Alice/ROOT Interface", initfuncs);
74
75 //_____________________________________________________________________________
76 int main(int argc, char **argv)
77 {
78   //
79   // gAlice main program.
80   // It creates the main Geant3 and AliRun objects.
81   //
82   // The Hits are written out after each track in a ROOT Tree structure TreeH,
83   // of the file galice.root. There is one such tree per event. The kinematics
84   // of all the particles that produce hits, together with their genealogy up
85   // to the primary tracks is stared in the galice.root file in an other tree
86   // TreeK of which exists one per event. Finally the information of the events
87   // in the run is stored in the same file in the tree TreeE, containing the
88   // run and event number, the number of vertices, tracks and primary tracks
89   // in the event.
90   
91   // Create new configuration 
92   new AliConfig ("Folders","Alice data exchange");
93   
94   new AliRun("gAlice","The ALICE Off-line Simulation Framework");
95     
96   // Start interactive geant
97   
98   TRint *theApp = new TRint("aliroot", &argc, argv, 0, 0);
99   
100   // --- Start the event loop ---
101   theApp->Run();
102   
103   return(0);
104 }
105
106