]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
The cut on V0 pointing angle is now momentum dependent below 1.5 GeV/c. Above this...
authorbelikov <belikov@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 11 Nov 2011 10:47:22 +0000 (10:47 +0000)
committerbelikov <belikov@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 11 Nov 2011 10:47:22 +0000 (10:47 +0000)
STEER/STEER/AliV0vertexer.cxx

index 4e8d21c5811d794973f2a35025ad7ca970028bba..ad07ed6a31272cab3db60aa011427ec075fd4265 100644 (file)
@@ -119,7 +119,19 @@ Int_t AliV0vertexer::Tracks2V0vertices(AliESDEvent *event) {
          if (r2 > fRmax*fRmax) continue;
 
         Float_t cpa=vertex.GetV0CosineOfPointingAngle(xPrimaryVertex,yPrimaryVertex,zPrimaryVertex);
+         const Double_t pThr=1.5;
+         Double_t pv0=vertex.P();
+         if (pv0<pThr) {
+           //Below the threshold "pThr", try a momentum dependent cos(PA) cut 
+           const Double_t bend=0.03; // approximate Xi bending angle
+           const Double_t qt=0.211;  // max Lambda pT in Xi decay
+           const Double_t cpaThr=TMath::Cos(TMath::ASin(qt/pThr) + bend);
+           Double_t 
+           cpaCut=(fCPAmin/cpaThr)*TMath::Cos(TMath::ASin(qt/pv0) + bend); 
+           if (cpa < cpaCut) continue;
+         } 
         if (cpa < fCPAmin) continue;
+
         vertex.SetDcaV0Daughters(dca);
          vertex.SetV0CosineOfPointingAngle(cpa);
          vertex.ChangeMassHypothesis(kK0Short);