]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ITS/AliITSDigits2RecPoints.C
Made a new abstract base class; AliL3HoughBaseTransformer for different implementations
[u/mrichter/AliRoot.git] / ITS / AliITSDigits2RecPoints.C
1 void 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 }