]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
finish HLT code update (Theo)
authorcblume <cblume@f7af4fe6-9843-0410-8265-dc069ae4e863>
Sun, 25 Jul 2010 20:20:38 +0000 (20:20 +0000)
committercblume <cblume@f7af4fe6-9843-0410-8265-dc069ae4e863>
Sun, 25 Jul 2010 20:20:38 +0000 (20:20 +0000)
TRD/AliTRDclusterizer.cxx
TRD/AliTRDrecoParam.cxx

index 2669c20e45f581e5b998f391a6c0d1518504e190..567307f89fab346a596d5ae05c96f1781b6da1dd 100644 (file)
@@ -1022,7 +1022,8 @@ void AliTRDclusterizer::CreateCluster(const MaxStruct &Max)
   // Transform the local cluster coordinates into calibrated 
   // space point positions defined in the local tracking system.
   // Here the calibration for T0, Vdrift and ExB is applied as well.
-  if(!fTransform->Transform(&cluster)) return;
+  if(!TestBit(kHLT)) if(!fTransform->Transform(&cluster)) return;
+
   // Temporarily store the Max.Row, column and time bin of the center pad
   // Used to later on assign the track indices
   cluster.SetLabel(Max.row, 0);
index b00241b3af6ad3d161763b2aaabc17c7dc63d983..7b92b5d9a9973dbfda8af248267eada84600ccf7 100644 (file)
@@ -171,8 +171,7 @@ AliTRDrecoParam *AliTRDrecoParam::GetLowFluxHLTParam()
   //
 
   AliTRDrecoParam *rec = GetLowFluxParam();
-  rec->fNumberOfConfigs = 3;
-  rec->fRecEveryNTB = 1;
+  rec->fNumberOfConfigs = 2;
   return rec;
 
 }
@@ -202,6 +201,7 @@ AliTRDrecoParam *AliTRDrecoParam::GetHighFluxHLTParam()
   AliTRDrecoParam *rec = GetHighFluxParam();
   rec->fNumberOfConfigs = 1;
   rec->fRecEveryNTB = 2;
+  rec->fkNMeanClusters = 10;
   return rec;
 
 }