]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSpidESD1.cxx
Remove AliTRDv2
[u/mrichter/AliRoot.git] / ITS / AliITSpidESD1.cxx
CommitLineData
e62c1aea 1/**************************************************************************
2 * Copyright(c) 2005-2007, ALICE Experiment at CERN, All rights reserved. *
3 * *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
6 * *
7 * Permission to use, copy, modify and distribute this software and its *
8 * documentation strictly for non-commercial purposes is hereby granted *
9 * without fee, provided that the above copyright notice appears in all *
10 * copies and that both the copyright notice and this permission notice *
11 * appear in the supporting documentation. The authors make no claims *
12 * about the suitability of this software for any purpose. It is *
13 * provided "as is" without express or implied warranty. *
14 **************************************************************************/
15
16//-----------------------------------------------------------------
17// ITS PID method # 1
18// Implementation of the ITS PID class
19// Very naive one... Should be made better by the detector experts...
20// Origin: Iouri Belikov, CERN, Jouri.Belikov@cern.ch
21//-----------------------------------------------------------------
22#include "AliITSpidESD.h"
23#include "AliITSpidESD1.h"
24#include "AliESD.h"
25#include "AliESDtrack.h"
26
27ClassImp(AliITSpidESD1)
28
29AliITSpidESD1::AliITSpidESD1(): AliITSpidESD() {
30 //Default constructor
31 fMIP=0;
32 fRes=0;
33 fRange=0;
34}
35//_________________________________________________________________________
36AliITSpidESD1::AliITSpidESD1(Double_t *param): AliITSpidESD()
37{
38 //
39 // The main constructor
40 //
41 fMIP=param[0];
42 fRes=param[1];
43 fRange=param[2];
44}
45
46
47//_________________________________________________________________________
48Int_t AliITSpidESD1::MakePID(AliESD *event)
49{
50 //
51 // This function calculates the "detector response" PID probabilities
52 //
53 Int_t ntrk=event->GetNumberOfTracks();
54 for (Int_t i=0; i<ntrk; i++) {
55 AliESDtrack *t=event->GetTrack(i);
56 if ((t->GetStatus()&AliESDtrack::kITSin )==0)
57 if ((t->GetStatus()&AliESDtrack::kITSout)==0) continue;
58 Double_t mom=t->GetP();
59 Double_t dedx=t->GetITSsignal()/fMIP;
60 Int_t ns=AliPID::kSPECIES;
61 Double_t p[10];
62 for (Int_t j=0; j<ns; j++) {
63 Double_t mass=AliPID::ParticleMass(j);
64 Double_t bethe=AliITSpidESD::Bethe(mom/mass);
65 Double_t sigma=fRes*bethe;
66 if (TMath::Abs(dedx-bethe) > fRange*sigma) {
67 p[j]=TMath::Exp(-0.5*fRange*fRange)/sigma;
68 continue;
69 }
70 p[j]=TMath::Exp(-0.5*(dedx-bethe)*(dedx-bethe)/(sigma*sigma))/sigma;
71 }
72 t->SetITSpid(p);
73 }
74 return 0;
75}