]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Corrected destructor (valgrind)
authorhristov <hristov@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 24 Oct 2006 13:02:53 +0000 (13:02 +0000)
committerhristov <hristov@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 24 Oct 2006 13:02:53 +0000 (13:02 +0000)
ITS/AliITSMultReconstructor.cxx

index 120be874304072fe1fac50f77e4b50fac54a2e2f..bdf8937f97ee701908d8ca9a93b3d86c73a21cd3 100644 (file)
@@ -112,31 +112,34 @@ AliITSMultReconstructor& AliITSMultReconstructor::operator=(const AliITSMultReco
 //______________________________________________________________________
 AliITSMultReconstructor::~AliITSMultReconstructor(){
   // Destructor
-  if(fhClustersDPhiAcc)delete fhClustersDPhiAcc;
-  if(fhClustersDThetaAcc)delete fhClustersDThetaAcc;
-  if(fhClustersDZetaAcc)delete fhClustersDZetaAcc;
-  if(fhClustersDPhiAll)delete fhClustersDPhiAll;
-  if(fhClustersDThetaAll)delete fhClustersDThetaAll;
-  if(fhClustersDZetaAll)delete fhClustersDZetaAll;
-  if(fhDPhiVsDThetaAll)delete fhDPhiVsDThetaAll;
-  if(fhDPhiVsDThetaAcc)delete fhDPhiVsDThetaAcc;
-  if(fhDPhiVsDZetaAll)delete fhDPhiVsDZetaAll;
-  if(fhDPhiVsDZetaAcc)delete fhDPhiVsDZetaAcc;
-  if(fhetaTracklets)delete fhetaTracklets;
-  if(fhphiTracklets)delete fhphiTracklets;
-  if(fhetaClustersLay1)delete fhetaClustersLay1;
-  if(fhphiClustersLay1)delete fhphiClustersLay1;
-  if(fClustersLay1){
-    for(Int_t i=0; i<300000; i++) {
-      delete [] fClustersLay1[i];
-      delete [] fClustersLay2[i];
-      delete [] fTracklets[i];
-    }
-    delete fClustersLay1;
-    delete  fClustersLay2;
-    delete fTracklets;
+
+  // delete histograms
+  delete fhClustersDPhiAcc;
+  delete fhClustersDThetaAcc;
+  delete fhClustersDZetaAcc;
+  delete fhClustersDPhiAll;
+  delete fhClustersDThetaAll;
+  delete fhClustersDZetaAll;
+  delete fhDPhiVsDThetaAll;
+  delete fhDPhiVsDThetaAcc;
+  delete fhDPhiVsDZetaAll;
+  delete fhDPhiVsDZetaAcc;
+  delete fhetaTracklets;
+  delete fhphiTracklets;
+  delete fhetaClustersLay1;
+  delete fhphiClustersLay1;
+
+  // delete arrays
+  for(Int_t i=0; i<300000; i++) {
+    delete [] fClustersLay1[i];
+    delete [] fClustersLay2[i];
+    delete [] fTracklets[i];
   }
-  if(fAssociationFlag)delete fAssociationFlag;
+  delete [] fClustersLay1;
+  delete [] fClustersLay2;
+  delete [] fTracklets;
+
+  delete [] fAssociationFlag;
 }
 
 //____________________________________________________________________