Fix memory leak
authormariana <mariana@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 15 Jun 2001 15:58:26 +0000 (15:58 +0000)
committermariana <mariana@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 15 Jun 2001 15:58:26 +0000 (15:58 +0000)
ITS/AliITSClusterFinderSSD.cxx

index 17ef79dab632756f845c297fa64df6e46a44b470..3798b7623b189501e7aaebb4945a84185baebffd 100644 (file)
@@ -147,7 +147,6 @@ void AliITSClusterFinderSSD::FindRawClusters(Int_t module)
   FindNeighbouringDigits(); //ad. 2
   //SeparateOverlappedClusters();  //ad. 3
   ClustersToPackages();  //ad. 4
-  AliITSRecPoint rnew;
   fMap->ClearMap();
 }
 
@@ -624,8 +623,8 @@ void AliITSClusterFinderSSD::ClustersToPackages()
     }
   }
 
-   delete oneSclP;
-   delete oneSclN;
+   delete [] oneSclP;
+   delete [] oneSclN;
 
 }