]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TPC/AliTPCclustererMI.cxx
Fixed memory leaks for #86360: High memory consumption in 2.76TeV p+p RAW reco jobs
[u/mrichter/AliRoot.git] / TPC / AliTPCclustererMI.cxx
index 82bb79a533f362c7d2e51e25962893d2d75bb138..95170c532976d37b2a2b8c0fe7b6f5f5abdeca3d 100644 (file)
@@ -258,8 +258,8 @@ void AliTPCclustererMI::SetOutput(TTree * tree)
   //
   if (!tree) return;
   fOutput= tree;
-  AliTPCClustersRow clrow, *pclrow=&clrow;  
-  pclrow = new AliTPCClustersRow("AliTPCclusterMI");
+  AliTPCClustersRow clrow("AliTPCclusterMI");
+  AliTPCClustersRow *pclrow=&clrow;  
   fOutput->Branch("Segment","AliTPCClustersRow",&pclrow,32000,200);    
 }