]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Momentum checked at the inner wall of TPC
authorpulvir <pulvir@f7af4fe6-9843-0410-8265-dc069ae4e863>
Mon, 11 Jan 2010 15:13:46 +0000 (15:13 +0000)
committerpulvir <pulvir@f7af4fe6-9843-0410-8265-dc069ae4e863>
Mon, 11 Jan 2010 15:13:46 +0000 (15:13 +0000)
PWG2/RESONANCES/AliRsnCutBetheBloch.cxx

index 492cacbbf02bbcc0a64b3b45bd9d3ea973c53698..256a9f112a545bf6af7af6b48b88760cb22b7dff 100644 (file)
@@ -17,6 +17,8 @@
 //
 #include "TMath.h"
 
+#include "AliExternalTrackParam.h"
+
 #include "AliRsnDaughter.h"
 #include "AliRsnCutBetheBloch.h"
 
@@ -56,7 +58,7 @@ AliRsnCutBetheBloch::AliRsnCutBetheBloch
 }
 
 //_____________________________________________________________________________
-Double_t AliRsnCutBetheBloch::BetheBloch(AliRsnDaughter * const track)
+Double_t AliRsnCutBetheBloch::BetheBloch(AliRsnDaughter * const trackRef)
 {
 //
 // Computes the theoretical dE/dx according to
@@ -72,7 +74,10 @@ Double_t AliRsnCutBetheBloch::BetheBloch(AliRsnDaughter * const track)
   AliPID pid;
   Double_t mass = pid.ParticleMass(fType);
 
-  Double_t betaGamma = track->P() / mass;
+  // get the track momentum at the inner wall of TPC
+  AliExternalTrackParam track(*trackRef->GetRefESD()->GetInnerParam());
+
+  Double_t betaGamma = track.P() / mass;
   Double_t beta = betaGamma / TMath::Sqrt(1.0 + betaGamma * betaGamma);
   Double_t aa = TMath::Power(beta, fConst[3]);
   Double_t bb = TMath::Power(1.0 / betaGamma, fConst[4]);