]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ALIROOT/aliroot.cxx
fix
[u/mrichter/AliRoot.git] / ALIROOT / aliroot.cxx
CommitLineData
4c039060 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
803d1ab0 16/* $Id$ */
4c039060 17
fe4da5cc 18//////////////////////////////////////////////////////////////////////////
19// //
20// aliroot //
21// //
22// Main program used to create aliroot application. //
23// //
24// //
25// To be able to communicate between the FORTRAN code of GEANT and the //
26// ROOT data structure, a number of interface routines have been //
27// developed. //
28//Begin_Html
29/*
1439f98e 30<img src="picts/newg.gif">
fe4da5cc 31*/
32//End_Html
33//////////////////////////////////////////////////////////////////////////
34
35//Standard Root includes
36#include <TROOT.h>
37#include <TRint.h>
38#include <TFile.h>
39#include <AliRun.h>
bc5ed32d 40#include "Riostream.h"
41#include "ARVersion.h"
fe4da5cc 42
43#if defined __linux
44//On linux Fortran wants this, so we give to it!
45int xargv=0;
46int xargc=0;
47#endif
48
6a612904 49#ifdef FORTRAN_G95
50extern "C" void g95_runtime_start();
51#endif
52
fe4da5cc 53#if defined WIN32
54 extern "C" int __fastflag=0;
55 extern "C" int _pctype=0;
56 extern "C" int __mb_cur_max=0;
57#endif
58
c82bb898 59using std::cout;
60using std::endl;
61
fe4da5cc 62//_____________________________________________________________________________
63int main(int argc, char **argv)
64{
65 //
66 // gAlice main program.
67 // It creates the main Geant3 and AliRun objects.
68 //
69 // The Hits are written out after each track in a ROOT Tree structure TreeH,
70 // of the file galice.root. There is one such tree per event. The kinematics
71 // of all the particles that produce hits, together with their genealogy up
72 // to the primary tracks is stared in the galice.root file in an other tree
73 // TreeK of which exists one per event. Finally the information of the events
74 // in the run is stored in the same file in the tree TreeE, containing the
75 // run and event number, the number of vertices, tracks and primary tracks
76 // in the event.
fe4da5cc 77
bc5ed32d 78 for ( int i = 1; i < argc; ++i )
79 {
80 TString argument(argv[i]);
81
82 if (argument=="--version")
83 {
84 cout << "aliroot " << ALIROOT_SVN_REVISION << " " << ALIROOT_SVN_BRANCH << endl;
85 return 0;
86 }
87 }
88
9e1a0ddb 89 // Create new configuration
9e1a0ddb 90
91 new AliRun("gAlice","The ALICE Off-line Simulation Framework");
92
fe4da5cc 93 // Start interactive geant
94
4a87c8b6 95 TRint *theApp = new TRint("aliroot", &argc, argv);
6a612904 96#ifdef FORTRAN_G95
97 g95_runtime_start();
98#endif
fe4da5cc 99
27f3d82e 100 // --- Start the event loop ---
fe4da5cc 101 theApp->Run();
102
fe4da5cc 103 return(0);
104}
fe4da5cc 105