]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TPC/AliTPCRecoParam.cxx
The charge at cluster maxima used in the dataQA
[u/mrichter/AliRoot.git] / TPC / AliTPCRecoParam.cxx
index a94209c35ba13f3e86d6857e94a581f9ce2fe6a9..99a025362db05d598118e8d9d1c213d6f0428970 100644 (file)
 //                                                                           //
 // Class with TPC reconstruction parameters                                  //
 //                                                                           //  
-//                                                                           //
+//
+/*
+  The reconstruction parameters are used in the AliTPCclustererMI and AliTPCtrackerMI
+  
+  They are retrieved:
+  0. User speciefied it in reconstruction macro
+  1. if (not 0) from OCDB  - AliTPCcalibDB::GetRecoParam(eventtype)
+  2. if (not 0 or 1) default parameter - High flux enevironment used  
+
+  FIXME:
+  In the future  reconstruction parameters should be changed on event basis
+  But for the moment, event types are still not defined 
+
+*/
+                                                                           //
 ///////////////////////////////////////////////////////////////////////////////
 
 
@@ -31,6 +45,8 @@ ClassImp(AliTPCRecoParam)
 
 //_____________________________________________________________________________
 AliTPCRecoParam::AliTPCRecoParam():
+  AliDetectorRecoParam(),
+  fBClusterSharing(kTRUE),
   fCtgRange(1.05),       
   fMaxSnpTracker(0.95),
   fMaxSnpTrack(0.999),
@@ -56,6 +72,8 @@ AliTPCRecoParam::AliTPCRecoParam():
   //
   // constructor
   //
+  SetName("TPC");
+  SetTitle("TPC");
 }
 
 //_____________________________________________________________________________
@@ -87,7 +105,7 @@ AliTPCRecoParam *AliTPCRecoParam::GetHighFluxParam(){
   AliTPCRecoParam *param = new AliTPCRecoParam;
   param->fCtgRange = 1.05;
   param->fFirstBin = 0;
-  param->fLastBin  = 1000;
+  param->fLastBin  = 1000;  
   return param;
 }
 
@@ -108,6 +126,8 @@ AliTPCRecoParam *AliTPCRecoParam::GetLaserTestParam(Bool_t bPedestal){
   param->fMaxC          = 0.02;
   param->fBSpecialSeeding = kTRUE;
   param->fBYMirror      = kFALSE;
+  //
+  //
   return param;
 }