From: barbera Date: Tue, 14 May 2002 10:00:02 +0000 (+0000) Subject: The Init method of AliITSreconstruction has to be called by the user. This was done... X-Git-Url: http://git.uio.no/git/?p=u%2Fmrichter%2FAliRoot.git;a=commitdiff_plain;h=55c94fee645121415e87d30c008ef8a6f8d9f101 The Init method of AliITSreconstruction has to be called by the user. This was done in order to allow the possible declaration of an output file for recpoints --- diff --git a/ITS/AliITSDigits2RecPoints.C b/ITS/AliITSDigits2RecPoints.C index 303aaf28019..962cccc7162 100644 --- a/ITS/AliITSDigits2RecPoints.C +++ b/ITS/AliITSDigits2RecPoints.C @@ -8,6 +8,7 @@ void AliITSDigits2RecPoints(Int_t evNumber1=0,Int_t evNumber2=0, const char *fil cout << "Creating reconstructed points from digits for the ITS..." << endl; AliITSreconstruction *itsr = new AliITSreconstruction(filename); timer.Start(); + itsr->Init(); itsr->Exec(); timer.Stop(); timer.Print(); delete itsr;