]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Updated dphi,dtheta windows for trackleter, savannah bug 74741 (Ruben)
authorprino <prino@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 5 Nov 2010 16:20:51 +0000 (16:20 +0000)
committerprino <prino@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 5 Nov 2010 16:20:51 +0000 (16:20 +0000)
ITS/AliITSMultReconstructor.cxx
ITS/AliITSRecoParam.cxx
ITS/AliITSRecoParam.h
ITS/MakeITSRecoParam_2010.C

index f2b25b305fe370b48aad02fe3aebe792a92401b5..c67922ac10964848d94c1b79e5fcf17559060381 100644 (file)
@@ -654,7 +654,7 @@ void AliITSMultReconstructor::LoadClusterArrays(TTree* itsClusterTree, int il)
     while(nClusters--) {
       AliITSRecPoint* cluster = (AliITSRecPoint*)itsClusters->UncheckedAt(nClusters);
       if (!cluster) continue;
-      if (fCreateClustersCopy)         new ((*fClArr[il])[nclLayer]) AliITSRecPoint(*cluster);
+      if (fCreateClustersCopy)         cluster = new ((*fClArr[il])[nclLayer]) AliITSRecPoint(*cluster);
       clArr.AddAtAndExpand(cluster,nclLayer++);
       nClustersInChip[ fSPDSeg.GetChipFromLocal(0,cluster->GetDetLocalZ()) ]++; 
     }
index ef0e5c488ae6cbb0db1890d7f9e37801187ae927..e756b5995661d29ba22d8a8d8b03b0b31337948f 100644 (file)
@@ -436,6 +436,11 @@ AliITSRecoParam *AliITSRecoParam::GetHighFluxParam()
   param->fMultCutK0SFromDecay = -10.;
   param->fMultCutMaxDCA = 1.;  
   //
+  // trackleter
+  param->fTrackleterPhiWindow = 0.06;
+  param->fTrackleterNStdDev = 25.;
+  param->fScaleDTBySin2T = kTRUE;
+
   return param;
 }
 //_____________________________________________________________________________
index 84a0b80bf0be3d47188c6e752e93f06b3ff11a38..243c48a38b71622eb74d3f9407e327e0b9a28038 100644 (file)
@@ -727,7 +727,7 @@ class AliITSRecoParam : public AliDetectorRecoParam
   AliITSRecoParam(const AliITSRecoParam & param);
   AliITSRecoParam & operator=(const AliITSRecoParam &param);
 
-  ClassDef(AliITSRecoParam,35) // ITS reco parameters
+  ClassDef(AliITSRecoParam,36) // ITS reco parameters
 };
 
 #endif
index 6f0e2014ae939363148ff8cf5369734b1ccd2a19..149f58043c083c5729f101c03333aee5438ac479 100644 (file)
@@ -122,6 +122,12 @@ void MakeITSRecoParam_2010(AliRecoParam::EventSpecie_t default=AliRecoParam::kLo
     itsRecoParam->SetTrackleterZetaWindowL2(0.4);
     itsRecoParam->SetTrackleterPhiWindowL1(0.10);
     itsRecoParam->SetTrackleterZetaWindowL1(0.6);
+    //
+    itsRecoParam->SetTrackleterPhiWindow(0.06);
+    itsRecoParam->SetTrackleterThetaWindow(0.025);
+    itsRecoParam->SetTrackleterNStdDevCut(25);
+    itsRecoParam->SetTrackleterScaleDThetaBySin2T(kTRUE);
+    //
     // Removal of tracklets reconstructed in the SPD overlaps 
     itsRecoParam->SetTrackleterRemoveClustersFromOverlaps(kTRUE);