]> git.uio.no Git - u/mrichter/AliRoot.git/blob - macros/grun.C
Added the rails between ITS and TPC
[u/mrichter/AliRoot.git] / macros / grun.C
1 Int_t ievent;
2 void grun (Int_t nevent=1, const char *config="Config.C")
3 {
4   //
5   // Simple macro to run aliroot in a batch mode
6   //
7   ievent=nevent;
8   gAlice->Init(config);
9   gAlice->Run(ievent);
10 }