ROOT logo
//-------------------------------------------------------------------------
// Setting the cuts for the V0 and cascade finding
// The values of the cuts below are "reasonable" for central PbPb events
//------------------------------------------------------------------------- 
{
  AliReconstruction rec;


  Double_t cuts[]={33,  // max allowed chi2
                  0.16, // min allowed impact parameter for the 1st daughter 
                  0.05, // min allowed impact parameter for the 2nd daughter
                  0.08, // max allowed DCA between the daughter tracks
                  0.99, // max allowed cosine of V0's pointing angle
                  0.9,  // min radius of the fiducial volume
                  2.9   // max radius of the fiducial volume
  };
  AliV0vertexer::SetDefaultCuts(cuts);

  Double_t cts[]={33.,  // max allowed chi2
                 0.05,  // min allowed V0 impact parameter 
                 0.008, // "window" around the Lambda mass 
                 0.035, // min allowed bachelor's impact parameter 
                 0.10,  // max allowed DCA between the V0 and the bachelor
                 0.9985,// max allowed cosine of the cascade pointing angle
                 0.9,   // min radius of the fiducial volume
                 2.9    // max radius of the fiducial volume
  };
  AliCascadeVertexer::SetDefaultCuts(cts);


  rec.Run();
}
 SetDefaultCuts.C:1
 SetDefaultCuts.C:2
 SetDefaultCuts.C:3
 SetDefaultCuts.C:4
 SetDefaultCuts.C:5
 SetDefaultCuts.C:6
 SetDefaultCuts.C:7
 SetDefaultCuts.C:8
 SetDefaultCuts.C:9
 SetDefaultCuts.C:10
 SetDefaultCuts.C:11
 SetDefaultCuts.C:12
 SetDefaultCuts.C:13
 SetDefaultCuts.C:14
 SetDefaultCuts.C:15
 SetDefaultCuts.C:16
 SetDefaultCuts.C:17
 SetDefaultCuts.C:18
 SetDefaultCuts.C:19
 SetDefaultCuts.C:20
 SetDefaultCuts.C:21
 SetDefaultCuts.C:22
 SetDefaultCuts.C:23
 SetDefaultCuts.C:24
 SetDefaultCuts.C:25
 SetDefaultCuts.C:26
 SetDefaultCuts.C:27
 SetDefaultCuts.C:28
 SetDefaultCuts.C:29
 SetDefaultCuts.C:30
 SetDefaultCuts.C:31
 SetDefaultCuts.C:32
 SetDefaultCuts.C:33