]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Latest update, bugfix i think
authorvestbo <vestbo@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 25 Oct 2001 16:44:17 +0000 (16:44 +0000)
committervestbo <vestbo@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 25 Oct 2001 16:44:17 +0000 (16:44 +0000)
HLT/hough/AliL3HoughMaxFinder.cxx

index a5cda4d54e609e6b0198784d6fd88f9200517ead..c30bdd3856bed2894aa66637d7e8c420413dcf52 100644 (file)
@@ -508,7 +508,7 @@ void AliL3HoughMaxFinder::FindPeak1(Float_t *xpeaks,Float_t *ypeaks,Int_t &n)
       return;
     }  
   Int_t y_window=2;
-  Int_t x_bin_sides=2;
+  Int_t x_bin_sides=1;
   Int_t max_sum=0;
   
   Int_t xmin = fCurrentHisto->GetFirstXbin();
@@ -594,6 +594,8 @@ void AliL3HoughMaxFinder::FindPeak1(Float_t *xpeaks,Float_t *ypeaks,Int_t &n)
       ytop=0,ybutt=0;    
       for(Int_t j=xbin-x_bin_sides; j<=xbin+x_bin_sides; j++)
        {
+         if(anotherPt[j]->ymin > anotherPt[xbin]->ymax) continue;
+         if(anotherPt[j]->ymax < anotherPt[xbin]->ymin) continue;
          top += fCurrentHisto->GetBinCenterX(j)*anotherPt[j]->weight;
          butt += anotherPt[j]->weight;
          for(Int_t k=anotherPt[j]->ymin; k<anotherPt[j]->ymax; k++)