]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Several pointers were set to zero in the default constructors to avoid memory managem...
authorhristov <hristov@f7af4fe6-9843-0410-8265-dc069ae4e863>
Sun, 21 Oct 2001 19:07:24 +0000 (19:07 +0000)
committerhristov <hristov@f7af4fe6-9843-0410-8265-dc069ae4e863>
Sun, 21 Oct 2001 19:07:24 +0000 (19:07 +0000)
TPC/AliClustersArray.cxx
TPC/AliTPCCluster.cxx
TPC/AliTPCClusterFinder.cxx
TPC/AliTPCPRF2D.cxx

index b9629ff58f39b570f45a6893bc4d112b3b14d3a1..cda700aa07b8ddb8176cbc6b6a1b9c31d525c414 100644 (file)
@@ -15,6 +15,9 @@
 
 /*
 $Log$
+Revision 1.4  2000/10/05 15:59:31  kowal2
+Forward declarations. Changes due to a new class AliComplexCluster.
+
 Revision 1.3  2000/06/30 12:07:49  kowal2
 Updated from the TPC-PreRelease branch
 
@@ -71,6 +74,7 @@ AliClustersArray::AliClustersArray()
   //
   fParam = 0;
   fClusterType = 0;
+  fClFinder = 0;
 }
 
 Bool_t  AliClustersArray::SetClusterType(Text_t * classname) 
index b337034ae6d6a2b0ab6c4b251190ab0f6ee1e976..6896d1d381688a65ac02afd2b19eb9e2dd88583b 100644 (file)
@@ -15,6 +15,9 @@
 
 /*
 $Log$
+Revision 1.2  2000/04/17 09:37:33  kowal2
+removed obsolete AliTPCDigitsDisplay.C
+
 Revision 1.1.4.2  2000/04/10 11:34:02  kowal2
 
 Clusters handling in a new data structure
@@ -51,7 +54,8 @@ AliTPCClustersRow::AliTPCClustersRow()
   //
   //default constructor
   fNclusters=0;
-  fClusters =  new TClonesArray("AliTPCcluster",kDefSize); 
+  fClusters =  new TClonesArray("AliTPCcluster",kDefSize);
+  fParam = 0;
 }
 //_____________________________________________________________________________
 AliTPCClustersRow::AliTPCClustersRow(Int_t size) 
index 2e91abf9c206186f1f318decbe96024b4d8b03ac..f024e60648aa61b45b79bd0e22e385d43a8ced50 100644 (file)
@@ -15,6 +15,9 @@
 
 /*
 $Log$
+Revision 1.5  2001/01/26 19:57:22  hristov
+Major upgrade of AliRoot code
+
 Revision 1.4  2000/10/05 16:08:15  kowal2
 Changes due to a new class AliComplexCluster. Forward declarations.
 
@@ -102,6 +105,7 @@ ClassImp(AliTPCClusterFinder)
 AliTPCClusterFinder::AliTPCClusterFinder()
 {
   fDigits =0;
+  fCells = 0;
   fDimX = 0;
   fDimY = 0;
   fNoiseTh = 3;
@@ -118,6 +122,7 @@ AliTPCClusterFinder::AliTPCClusterFinder()
 
 
   fDetectorParam = 0;
+  fDetectorIndex = 0;
   ResetStatus(); 
   fBFit = kFALSE;
   fMinuit= new TMinuit(5);
index 14b6169c6f7c868ad5727f62eebe9bdb0b65dea1..7af0273869231c0a3b1f8a4457271ad52c6a9330 100644 (file)
@@ -15,6 +15,9 @@
 
 /*
 $Log$
+Revision 1.7  2001/01/30 09:23:15  hristov
+Streamers removed (R.Brun)
+
 Revision 1.6  2000/09/07 11:23:27  kowal2
 Improved algoritms, coding convensions applied.
 
@@ -131,6 +134,7 @@ ClassImp(AliTPCPRF2D)
 AliTPCPRF2D::AliTPCPRF2D()
 {
   //default constructor for response function object
+  fcharge = 0;
   fNChargeArray = 0;
   fChargeArray = 0;
   fNPRF =fgkNPRF ;