]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - ITS/AliITSpidESD.cxx
Crrected versions of AliAltroBuffer, AliAltroMapping and AliTPCRawStream
[u/mrichter/AliRoot.git] / ITS / AliITSpidESD.cxx
index c4109bd1858abae59859578d631fd315319356c6..141c86307d6d2b56436c1b9484c7f7309bfbe6ca 100644 (file)
 //-----------------------------------------------------------------
 
 #include "AliITSpidESD.h"
-#include "AliESD.h"
 #include "AliESDtrack.h"
 
 ClassImp(AliITSpidESD)
 
-//_________________________________________________________________________
-AliITSpidESD::AliITSpidESD(Double_t *param)
-{
-  //
-  //  The main constructor
-  //
-  fMIP=param[0];
-  fRes=param[1];
-  fRange=param[2];
-}
 
+//______________________________________________________________________
+AliITSpidESD::AliITSpidESD():TObject(){
+  //Default constructor
+}
 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=(1.+ bg2)/bg2*(log(5940*bg2) - bg2/(1.+ bg2));
+  Double_t bethe;
+  /*if (bg<3.5) 
+     bethe=(1.+ bg2)/bg2*(log(5940*bg2) - bg2/(1.+ bg2));
+  else*/  // not 100% clear why...
+     bethe=(1.+ bg2)/bg2*(log(3.5*5940*bg) - bg2/(1.+ bg2));
   return bethe/11.091;
 }
 
-//_________________________________________________________________________
-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;
-    Int_t ns=AliESDtrack::kSPECIES;
-    Double_t p[10];
-    for (Int_t j=0; j<ns; j++) {
-      Double_t mass=masses[j];
-      Double_t mom=t->GetP();
-      Double_t dedx=t->GetITSsignal()/fMIP;
-      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);
-        continue;
-      }
-      p[j]=TMath::Exp(-0.5*(dedx-bethe)*(dedx-bethe)/(sigma*sigma));
-    }
-    t->SetITSpid(p);
-  }
-  return 0;
-}