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