]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ALIROOT/aliroot.cxx
AdddTask update from Marco
[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 /* $Id$ */
17
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 /*
30 <img src="picts/newg.gif">
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>
40 #include "Riostream.h"
41 #include "ARVersion.h"
42 // STD
43 #include <iostream>
44 #include <algorithm>
45 #include <sstream>
46 #include <stdexcept>
47 #include <functional>
48 #include <AliLog.h>
49
50
51 #if defined __linux
52 //On linux Fortran wants this, so we give to it!
53 int xargv=0;
54 int xargc=0;
55 #endif
56
57 #ifdef FORTRAN_G95
58 extern "C" void g95_runtime_start();
59 #endif
60
61 #if defined WIN32 
62   extern "C" int __fastflag=0; 
63   extern "C" int _pctype=0; 
64   extern "C" int __mb_cur_max=0; 
65 #endif 
66
67 using std::cout;
68 using std::endl;
69
70 //_____________________________________________________________________________
71 int main(int argc, char **argv)
72 {
73   //
74   // gAlice main program.
75   // It creates the main Geant3 and AliRun objects.
76   //
77   // The Hits are written out after each track in a ROOT Tree structure TreeH,
78   // of the file galice.root. There is one such tree per event. The kinematics
79   // of all the particles that produce hits, together with their genealogy up
80   // to the primary tracks is stared in the galice.root file in an other tree
81   // TreeK of which exists one per event. Finally the information of the events
82   // in the run is stored in the same file in the tree TreeE, containing the
83   // run and event number, the number of vertices, tracks and primary tracks
84   // in the event.
85   
86   for ( int i = 1; i < argc; ++i ) 
87   {
88     TString argument(argv[i]);
89     
90     if (argument=="--version")
91     {      
92       cout << "aliroot " << ALIROOT_REVISION << " " << ALIROOT_BRANCH << endl;
93       return 0;
94     }    
95   }
96   
97   // Create new configuration 
98   
99   new AliRun("gAlice","The ALICE Off-line Simulation Framework");
100   AliLog::GetRootLogger();  // force AliLog to initialize at start time
101   // Start interactive geant
102   
103   TRint *theApp = new TRint("aliroot", &argc, argv);
104 #ifdef FORTRAN_G95
105   g95_runtime_start();
106 #endif
107   
108   // --- Start the event loop ---
109   //  run.Info("Start AliRoot");
110   try{
111     theApp->Run();  
112   } catch(const exception &e){
113     cerr << "Excception catched" << e.what() << endl;
114     AliLog::Message(0, "Exception catched", "ROOT", NULL, "Exception catched", NULL, 0);
115   }
116   
117   return(0);
118 }
119