]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - ITS/AliITSpidESD.cxx
Coding convention violations: suppression
[u/mrichter/AliRoot.git] / ITS / AliITSpidESD.cxx
index 270f40891dc4e4d64ad0b8b39fe7e373a5e5e012..4c6c0572e34de4d8d1638f63c62b09f6c5f78030 100644 (file)
  * provided "as is" without express or implied warranty.                  *
  **************************************************************************/
 
+/* $Id$ */
+
 //-----------------------------------------------------------------
 //           Implementation of the ITS PID class
 // Very naive one... Should be made better by the detector experts...
 //      Origin: Iouri Belikov, CERN, Jouri.Belikov@cern.ch
 //-----------------------------------------------------------------
 
+#include <TMath.h>
+
 #include "AliITSpidESD.h"
-#include "AliESD.h"
 #include "AliESDtrack.h"
+#include "AliExternalTrackParam.h"
 
 ClassImp(AliITSpidESD)
 
-//_________________________________________________________________________
-AliITSpidESD::AliITSpidESD(Double_t *param)
-{
-  //
-  //  The main constructor
-  //
-  fMIP=param[0];
-  fRes=param[1];
-  fRange=param[2];
-}
 
-Double_t AliITSpidESD::Bethe(Double_t bg) {
-  //
-  // This is the Bethe-Bloch function normalised to 1 at the minimum
-  //
-  Double_t bg2=bg*bg;
-  Double_t bethe;
-  if (bg<3.5) bethe=(1.+ bg2)/bg2*(log(5940*bg2) - bg2/(1.+ bg2));
-  else bethe=(1.+ bg2)/bg2*(log(3.5*5940)+log(bg) - bg2/(1.+ bg2));
-  return bethe/11.091;
+//______________________________________________________________________
+AliITSpidESD::AliITSpidESD():TObject(){
+  //Default constructor
 }
 
-//_________________________________________________________________________
-Int_t AliITSpidESD::MakePID(AliESD *event)
-{
-  //
-  //  This function calculates the "detector response" PID probabilities 
-  //
-  static const Double_t masses[]={
-    0.000511, 0.105658, 0.139570, 0.493677, 0.938272, 1.875613
-  };
-  Int_t ntrk=event->GetNumberOfTracks();
-  for (Int_t i=0; i<ntrk; i++) {
-    AliESDtrack *t=event->GetTrack(i);
-    if ((t->GetStatus()&AliESDtrack::kITSin )==0)
-      if ((t->GetStatus()&AliESDtrack::kITSout)==0) continue;
-    Double_t mom=t->GetP();
-    Double_t dedx=t->GetITSsignal()/fMIP;
-    Int_t ns=AliESDtrack::kSPECIES;
-    Double_t p[10];
-    for (Int_t j=0; j<ns; j++) {
-      Double_t mass=masses[j];
-      Double_t bethe=Bethe(mom/mass); 
-      Double_t sigma=fRes*bethe;
-      if (TMath::Abs(dedx-bethe) > fRange*sigma) {
-       p[j]=TMath::Exp(-0.5*fRange*fRange)/sigma;
-        continue;
-      }
-      p[j]=TMath::Exp(-0.5*(dedx-bethe)*(dedx-bethe)/(sigma*sigma))/sigma;
-    }
-    t->SetITSpid(p);
-  }
-  return 0;
+Double_t AliITSpidESD::Bethe(Double_t p,Double_t mass) {
+  // returns AliExternalTrackParam::BetheBloch normalized to 1 at the minimum
+  Double_t density=2.33; // g/cm3
+  Double_t thickness=0.03; // cm
+  Double_t meanMIPSi=116.24; // keV in 300 microns of Si
+  Double_t conv=density*1E6*thickness/meanMIPSi;
+  Float_t betagamma=p/mass;
+  return conv*AliExternalTrackParam::BetheBlochSolid(betagamma);
+
 }