]> git.uio.no Git - u/mrichter/AliRoot.git/blob - RICH/RichBatch.C
TOF can't be created without FRAME error corrected
[u/mrichter/AliRoot.git] / RICH / RichBatch.C
1 void RichBatch(const Int_t iNevents,const Bool_t isDebug,const char *sConfigFileName)
2 {
3   if(isDebug) gAlice->SetDebug(1);
4
5   Info("my/RichBatch.C","%i event(s) requested, debug %i,config file %s",iNevents,isDebug,sConfigFileName);  
6   TStopwatch sw;TDatime time;   
7
8   AliSimulation a;  a.Run(iNevents);
9    
10   cout<<"\nInfo in <my/RichBatch.C>: Start time: ";time.Print();
11     cout<<"Info in <my/RichBatch.C>: Stop  time: ";time.Set();  time.Print();
12     cout<<"Info in <my/RichBatch.C>: Time  used: ";sw.Print();
13   gSystem->Exec("touch ZZZ______finished_______ZZZ");
14 }