]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSDigits2RecPoints.C
New macros
[u/mrichter/AliRoot.git] / ITS / AliITSDigits2RecPoints.C
CommitLineData
af8e1c2d 1void AliITSDigits2RecPoints(Int_t evNumber1=0,Int_t evNumber2=0, const char *filename="galice.root"){
2 TStopwatch timer;
3
4 if(gAlice){
5 delete gAlice;
6 gAlice = 0;
7 } // end if gAlice
8 cout << "Creating reconstructed points from digits for the ITS..." << endl;
9 AliITSreconstruction *itsr = new AliITSreconstruction(filename);
10 timer.Start();
11 itsr->Exec();
12 timer.Stop(); timer.Print();
13 delete itsr;
14}