]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - STEER/AliCascadeVertexer.cxx
New class AliESDEvent, backward compatibility with the old AliESD (Christian)
[u/mrichter/AliRoot.git] / STEER / AliCascadeVertexer.cxx
index 7451457500ea312108d4e5a16ba4c58e73f92085..4c6750a12dba7d6a78a025b7c41bcd1aefe626f1 100644 (file)
 //                     Fills the ESD with the cascades 
 //    Origin: Christian Kuhn, IReS, Strasbourg, christian.kuhn@ires.in2p3.fr
 //-------------------------------------------------------------------------
+
+//modified by R. Vernet 30/6/2006 : daughter label
+//modified by R. Vernet  3/7/2006 : causality
+//modified by I. Belikov 24/11/2006 : static setter for the default cuts
+
+
 #include <TObjArray.h>
 #include <TTree.h>
 
-#include "AliESD.h"
+#include "AliESDEvent.h"
 #include "AliESDv0.h"
 #include "AliESDcascade.h"
 #include "AliCascadeVertexer.h"
 
 ClassImp(AliCascadeVertexer)
 
-Int_t AliCascadeVertexer::V0sTracks2CascadeVertices(AliESD *event) {
+//A set of loose cuts
+Double_t 
+  AliCascadeVertexer::fgChi2max=33.;    //maximal allowed chi2 
+Double_t 
+  AliCascadeVertexer::fgDV0min=0.05;    //min V0 impact parameter
+Double_t 
+  AliCascadeVertexer::fgMassWin=0.01;   //"window" around the Lambda mass
+Double_t 
+  AliCascadeVertexer::fgDBachMin=0.035; //min bachelor impact parameter
+Double_t 
+  AliCascadeVertexer::fgDCAmax=0.10;    //max DCA between the V0 and the track 
+Double_t 
+  AliCascadeVertexer::fgCPAmax=0.9985;  //max cosine of the cascade pointing angle
+Double_t 
+  AliCascadeVertexer::fgRmin=0.2;       //min radius of the fiducial volume
+Double_t 
+  AliCascadeVertexer::fgRmax=100.;      //max radius of the fiducial volume
+  
+
+Int_t AliCascadeVertexer::V0sTracks2CascadeVertices(AliESDEvent *event) {
   //--------------------------------------------------------------------
   // This function reconstructs cascade vertices
   //      Adapted to the ESD by I.Belikov (Jouri.Belikov@cern.ch)
   //--------------------------------------------------------------------
+   const AliESDVertex *vtx=event->GetVertex();
+   Double_t xv=vtx->GetXv(), yv=vtx->GetYv(), zv=vtx->GetZv();
+
    Double_t b=event->GetMagneticField();
    Int_t nV0=(Int_t)event->GetNumberOfV0s();
+
+   //stores relevant V0s in an array
    TObjArray vtcs(nV0);
    Int_t i;
    for (i=0; i<nV0; i++) {
        AliESDv0 *v=event->GetV0(i);
-       if (v->GetD(fX,fY,fZ)<fDV0min) continue;
+       if (v->GetOnFlyStatus()) continue;
+       if (v->GetD(xv,yv,zv)<fDV0min) continue;
        vtcs.AddLast(v);
    }
    nV0=vtcs.GetEntriesFast();
 
+   // stores relevant tracks in another array
    Int_t nentr=(Int_t)event->GetNumberOfTracks();
    TArrayI trk(nentr); Int_t ntr=0;
    for (i=0; i<nentr; i++) {
@@ -56,7 +88,7 @@ Int_t AliCascadeVertexer::V0sTracks2CascadeVertices(AliESD *event) {
        if ((status&AliESDtrack::kITSrefit)==0)
           if (flags!=status) continue;
 
-       if (TMath::Abs(esdtr->GetD(fX,fY,b))<fDBachMin) continue;
+       if (TMath::Abs(esdtr->GetD(xv,yv,b))<fDBachMin) continue;
 
        trk[ntr++]=i;
    }   
@@ -65,59 +97,60 @@ Int_t AliCascadeVertexer::V0sTracks2CascadeVertices(AliESD *event) {
    Int_t ncasc=0;
 
    // Looking for the cascades...
-   for (i=0; i<nV0; i++) {
+
+   for (i=0; i<nV0; i++) { //loop on V0s
+
       AliESDv0 *v=(AliESDv0*)vtcs.UncheckedAt(i);
       v->ChangeMassHypothesis(kLambda0); // the v0 must be Lambda 
       if (TMath::Abs(v->GetEffMass()-massLambda)>fMassWin) continue; 
-      for (Int_t j=0; j<ntr; j++) {
+
+      for (Int_t j=0; j<ntr; j++) {//loop on tracks
         Int_t bidx=trk[j];
+        //Bo:   if (bidx==v->GetNindex()) continue; //bachelor and v0's negative tracks must be different
+         if (bidx==v->GetIndex(0)) continue; //Bo:  consistency 0 for neg
         AliESDtrack *btrk=event->GetTrack(bidx);
-
          if (btrk->GetSign()>0) continue;  // bachelor's charge 
           
-        AliESDv0 v0(*v), *pv0=&v0;
+        AliESDv0 v0(*v), *pv0=&v0;
          AliExternalTrackParam bt(*btrk), *pbt=&bt;
 
          Double_t dca=PropagateToDCA(pv0,pbt,b);
          if (dca > fDCAmax) continue;
 
-         AliESDcascade cascade(*pv0,*pbt,bidx);
-         if (cascade.GetChi2() > fChi2max) continue;
+         AliESDcascade cascade(*pv0,*pbt,bidx);//constucts a cascade candidate
+         if (cascade.GetChi2Xi() > fChi2max) continue;
 
         Double_t x,y,z; cascade.GetXYZ(x,y,z); 
          Double_t r2=x*x + y*y; 
          if (r2 > fRmax*fRmax) continue;   // condition on fiducial zone
          if (r2 < fRmin*fRmin) continue;
 
-         {
+        Double_t pxV0,pyV0,pzV0;
+        pv0->GetPxPyPz(pxV0,pyV0,pzV0);
+        if (x*pxV0+y*pyV0+z*pzV0 < 0) continue; //causality
+
          Double_t x1,y1,z1; pv0->GetXYZ(x1,y1,z1);
          if (r2 > (x1*x1+y1*y1)) continue;
-         //if ((z-fZ)*(z-fZ) > (z1-fZ)*(z1-fZ)) continue;
-         }
-
-        Double_t px,py,pz; cascade.GetPxPyPz(px,py,pz);
-         Double_t p2=px*px+py*py+pz*pz;
-         Double_t cost=((x-fX)*px + (y-fY)*py + (z-fZ)*pz)/
-               TMath::Sqrt(p2*((x-fX)*(x-fX) + (y-fY)*(y-fY) + (z-fZ)*(z-fZ)));
-        if (cost<fCPAmax) continue; //condition on the cascade pointing angle 
-         //cascade.ChangeMassHypothesis(); //default is Xi
-
-         event->AddCascade(&cascade);
 
+        if (cascade.GetCascadeCosineOfPointingAngle(xv,yv,zv) <fCPAmax) continue; //condition on the cascade pointing angle 
+        
+        event->AddCascade(&cascade);
          ncasc++;
-
-      }
-   }
+      } // end loop tracks
+   } // end loop V0s
 
    // Looking for the anti-cascades...
-   for (i=0; i<nV0; i++) {
+
+   for (i=0; i<nV0; i++) { //loop on V0s
       AliESDv0 *v=(AliESDv0*)vtcs.UncheckedAt(i);
       v->ChangeMassHypothesis(kLambda0Bar); //the v0 must be anti-Lambda 
       if (TMath::Abs(v->GetEffMass()-massLambda)>fMassWin) continue; 
-      for (Int_t j=0; j<ntr; j++) {
+
+      for (Int_t j=0; j<ntr; j++) {//loop on tracks
         Int_t bidx=trk[j];
+        //Bo:   if (bidx==v->GetPindex()) continue; //bachelor and v0's positive tracks must be different
+         if (bidx==v->GetIndex(1)) continue; //Bo:  consistency 1 for pos
         AliESDtrack *btrk=event->GetTrack(bidx);
-
          if (btrk->GetSign()<0) continue;  // bachelor's charge 
           
         AliESDv0 v0(*v), *pv0=&v0;
@@ -126,34 +159,28 @@ Int_t AliCascadeVertexer::V0sTracks2CascadeVertices(AliESD *event) {
          Double_t dca=PropagateToDCA(pv0,pbt,b);
          if (dca > fDCAmax) continue;
 
-         AliESDcascade cascade(*pv0,*pbt,bidx);
-         if (cascade.GetChi2() > fChi2max) continue;
+         AliESDcascade cascade(*pv0,*pbt,bidx); //constucts a cascade candidate
+         if (cascade.GetChi2Xi() > fChi2max) continue;
 
         Double_t x,y,z; cascade.GetXYZ(x,y,z); 
          Double_t r2=x*x + y*y; 
          if (r2 > fRmax*fRmax) continue;   // condition on fiducial zone
          if (r2 < fRmin*fRmin) continue;
 
-         {
+        Double_t pxV0,pyV0,pzV0;
+        pv0->GetPxPyPz(pxV0,pyV0,pzV0);
+        if (x*pxV0+y*pyV0+z*pzV0 < 0) continue; //causality
+
          Double_t x1,y1,z1; pv0->GetXYZ(x1,y1,z1);
          if (r2 > (x1*x1+y1*y1)) continue;
          if (z*z > z1*z1) continue;
-         }
-
-        Double_t px,py,pz; cascade.GetPxPyPz(px,py,pz);
-         Double_t p2=px*px+py*py+pz*pz;
-         Double_t cost=((x-fX)*px + (y-fY)*py + (z-fZ)*pz)/
-               TMath::Sqrt(p2*((x-fX)*(x-fX) + (y-fY)*(y-fY) + (z-fZ)*(z-fZ)));
-
-         if (cost<fCPAmax) continue; //condition on the cascade pointing angle 
-         //cascade.ChangeMassHypothesis(); //default is Xi
-
-         event->AddCascade(&cascade);
 
+        if (cascade.GetCascadeCosineOfPointingAngle(xv,yv,zv) < fCPAmax) continue; //condition on the cascade pointing angle 
+        event->AddCascade(&cascade);
          ncasc++;
 
-      }
-   }
+      } // end loop tracks
+   } // end loop V0s
 
 Info("V0sTracks2CascadeVertices","Number of reconstructed cascades: %d",ncasc);
 
@@ -161,12 +188,12 @@ Info("V0sTracks2CascadeVertices","Number of reconstructed cascades: %d",ncasc);
 }
 
 
-inline Double_t det(Double_t a00, Double_t a01, Double_t a10, Double_t a11){
+Double_t det(Double_t a00, Double_t a01, Double_t a10, Double_t a11){
   // determinant 2x2
   return a00*a11 - a01*a10;
 }
 
-inline Double_t det (Double_t a00,Double_t a01,Double_t a02,
+Double_t det (Double_t a00,Double_t a01,Double_t a02,
                      Double_t a10,Double_t a11,Double_t a12,
                      Double_t a20,Double_t a21,Double_t a22) {
   // determinant 3x3