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