]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AliESDpid.cxx
Fix for bug #67104 solving the following problems:
[u/mrichter/AliRoot.git] / STEER / AliESDpid.cxx
CommitLineData
8c6a71ab 1/**************************************************************************
2 * Copyright(c) 1998-1999, 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
4f679a16 16/* $Id$ */
17
8c6a71ab 18//-----------------------------------------------------------------
19// Implementation of the combined PID class
4f679a16 20// For the Event Summary Data Class
21// produced by the reconstruction process
22// and containing information on the particle identification
8c6a71ab 23// Origin: Iouri Belikov, CERN, Jouri.Belikov@cern.ch
24//-----------------------------------------------------------------
25
10d100d4 26#include "AliLog.h"
27#include "AliPID.h"
8c6a71ab 28#include "AliESDpid.h"
af885e0f 29#include "AliESDEvent.h"
8c6a71ab 30#include "AliESDtrack.h"
31
32ClassImp(AliESDpid)
33
10d100d4 34Int_t AliESDpid::MakePID(AliESDEvent *event, Bool_t TPConly, Float_t TimeZeroTOF) const {
35 //
36 // Calculate probabilities for all detectors, except if TPConly==kTRUE
37 // and combine PID
38 //
39 // Option TPConly==kTRUE is used during reconstruction,
40 // because ITS tracking uses TPC pid
41 // HMPID and TRD pid are done in detector reconstructors
42 //
43
44 /*
45 Float_t TimeZeroTOF = 0;
46 if (subtractT0)
47 TimeZeroTOF = event->GetT0();
48 */
49 Int_t nTrk=event->GetNumberOfTracks();
50 for (Int_t iTrk=0; iTrk<nTrk; iTrk++) {
51 AliESDtrack *track=event->GetTrack(iTrk);
52 MakeTPCPID(track);
53 if (!TPConly) {
54 MakeITSPID(track);
55 MakeTOFPID(track, TimeZeroTOF);
56 //MakeHMPIDPID(track);
ce5d6908 57 //MakeTRDPID(track);
10d100d4 58 }
59 CombinePID(track);
60 }
61 return 0;
62}
8c6a71ab 63//_________________________________________________________________________
10d100d4 64void AliESDpid::MakeTPCPID(AliESDtrack *track) const
8c6a71ab 65{
4f679a16 66 //
10d100d4 67 // TPC pid using bethe-bloch and gaussian response
4f679a16 68 //
10d100d4 69 if ((track->GetStatus()&AliESDtrack::kTPCin )==0)
70 if ((track->GetStatus()&AliESDtrack::kTPCout)==0) return;
8c6a71ab 71
10d100d4 72 Double_t mom = track->GetP();
73 const AliExternalTrackParam *in=track->GetInnerParam();
74 if (in) mom = in->GetP();
8c6a71ab 75
10d100d4 76 Double_t p[AliPID::kSPECIES];
77 Double_t dedx=track->GetTPCsignal();
78 Bool_t mismatch=kTRUE, heavy=kTRUE;
8c6a71ab 79
10d100d4 80 for (Int_t j=0; j<AliPID::kSPECIES; j++) {
81 AliPID::EParticleType type=AliPID::EParticleType(j);
82 Double_t bethe=fTPCResponse.GetExpectedSignal(mom,type);
83 Double_t sigma=fTPCResponse.GetExpectedSigma(mom,track->GetTPCsignalN(),type);
84 if (TMath::Abs(dedx-bethe) > fRange*sigma) {
85 p[j]=TMath::Exp(-0.5*fRange*fRange)/sigma;
86 } else {
87 p[j]=TMath::Exp(-0.5*(dedx-bethe)*(dedx-bethe)/(sigma*sigma))/sigma;
88 mismatch=kFALSE;
89 }
8c6a71ab 90
10d100d4 91 // Check for particles heavier than (AliPID::kSPECIES - 1)
92 if (dedx < (bethe + fRange*sigma)) heavy=kFALSE;
c630aafd 93
4a78b8c5 94 }
95
10d100d4 96 if (mismatch)
97 for (Int_t j=0; j<AliPID::kSPECIES; j++) p[j]=1/AliPID::kSPECIES;
98
99 track->SetTPCpid(p);
100
101 if (heavy) track->ResetStatus(AliESDtrack::kTPCpid);
102
103}
104//_________________________________________________________________________
105void AliESDpid::MakeITSPID(AliESDtrack *track) const
106{
107 //
108 // ITS PID
109 // Two options, depending on fITSPIDmethod:
110 // 1) Truncated mean method
111 // 2) Likelihood, using charges measured in all 4 layers and
112 // Landau+gaus response functions
113 //
114
115 if ((track->GetStatus()&AliESDtrack::kITSin)==0 &&
116 (track->GetStatus()&AliESDtrack::kITSout)==0) return;
117
118 Double_t mom=track->GetP();
119 if (fITSPIDmethod == kITSTruncMean) {
120 Double_t dedx=track->GetITSsignal();
121 Double_t p[10];
122 Bool_t mismatch=kTRUE, heavy=kTRUE;
123 for (Int_t j=0; j<AliPID::kSPECIES; j++) {
124 Double_t mass=AliPID::ParticleMass(j);//GeV/c^2
125 Double_t bethe=fITSResponse.Bethe(mom,mass);
126 Double_t sigma=fITSResponse.GetResolution(bethe);
127 if (TMath::Abs(dedx-bethe) > fRange*sigma) {
128 p[j]=TMath::Exp(-0.5*fRange*fRange)/sigma;
129 } else {
130 p[j]=TMath::Exp(-0.5*(dedx-bethe)*(dedx-bethe)/(sigma*sigma))/sigma;
131 mismatch=kFALSE;
132 }
133
134 // Check for particles heavier than (AliPID::kSPECIES - 1)
135 if (dedx < (bethe + fRange*sigma)) heavy=kFALSE;
136
4a78b8c5 137 }
c630aafd 138
10d100d4 139 if (mismatch)
140 for (Int_t j=0; j<AliPID::kSPECIES; j++) p[j]=1./AliPID::kSPECIES;
141
142 track->SetITSpid(p);
143
144 if (heavy) track->ResetStatus(AliESDtrack::kITSpid);
145 }
146 else { // Likelihood method
147 Double_t condprobfun[AliPID::kSPECIES];
148 Double_t qclu[4];
149 track->GetITSdEdxSamples(qclu);
150 fITSResponse.GetITSProbabilities(mom,qclu,condprobfun);
151 track->SetITSpid(condprobfun);
8c6a71ab 152 }
7a8614f3 153
10d100d4 154}
155//_________________________________________________________________________
156void AliESDpid::MakeTOFPID(AliESDtrack *track, Float_t TimeZeroTOF) const
157{
158 //
159 // TOF PID using gaussian response
160 //
161 if ((track->GetStatus()&AliESDtrack::kTOFout)==0) return;
162 if ((track->GetStatus()&AliESDtrack::kTIME)==0) return;
163
164 Double_t time[AliPID::kSPECIESN];
165 track->GetIntegratedTimes(time);
166
167 Double_t sigma[AliPID::kSPECIES];
168 for (Int_t iPart = 0; iPart < AliPID::kSPECIES; iPart++) {
169 sigma[iPart] = fTOFResponse.GetExpectedSigma(track->GetP(),time[iPart],AliPID::ParticleMass(iPart));
170 }
171
172 AliDebugGeneral("AliESDpid::MakeTOFPID",2,
173 Form("Expected TOF signals [ps]: %f %f %f %f %f",
174 time[AliPID::kElectron],
175 time[AliPID::kMuon],
176 time[AliPID::kPion],
177 time[AliPID::kKaon],
178 time[AliPID::kProton]));
179
180 AliDebugGeneral("AliESDpid::MakeTOFPID",2,
181 Form("Expected TOF std deviations [ps]: %f %f %f %f %f",
182 sigma[AliPID::kElectron],
183 sigma[AliPID::kMuon],
184 sigma[AliPID::kPion],
185 sigma[AliPID::kKaon],
186 sigma[AliPID::kProton]
187 ));
188
189 Double_t tof = track->GetTOFsignal() - TimeZeroTOF;
190
191 Double_t p[AliPID::kSPECIES];
192 Bool_t mismatch = kTRUE, heavy = kTRUE;
193 for (Int_t j=0; j<AliPID::kSPECIES; j++) {
194 Double_t sig = sigma[j];
195 if (TMath::Abs(tof-time[j]) > fRange*sig) {
196 p[j] = TMath::Exp(-0.5*fRange*fRange)/sig;
197 } else
198 p[j] = TMath::Exp(-0.5*(tof-time[j])*(tof-time[j])/(sig*sig))/sig;
199
200 // Check the mismatching
201 Double_t mass = AliPID::ParticleMass(j);
202 Double_t pm = fTOFResponse.GetMismatchProbability(track->GetP(),mass);
203 if (p[j]>pm) mismatch = kFALSE;
204
205 // Check for particles heavier than (AliPID::kSPECIES - 1)
206 if (tof < (time[j] + fRange*sig)) heavy=kFALSE;
207
208 }
209
210 if (mismatch)
211 for (Int_t j=0; j<AliPID::kSPECIES; j++) p[j]=1/AliPID::kSPECIES;
212
213 track->SetTOFpid(p);
214
215 if (heavy) track->ResetStatus(AliESDtrack::kTOFpid);
216}
217//_________________________________________________________________________
b439f460 218void AliESDpid::MakeTRDPID(AliESDtrack *track) const
219{
220 //
221 // Method to recalculate the TRD PID probabilities
222 //
223 if((track->GetStatus()&AliESDtrack::kTRDout)==0) return;
224 Double_t prob[AliPID::kSPECIES]; Float_t mom[6];
225 Double_t dedx[48]; // Allocate space for the maximum number of TRD slices
226 for(Int_t ilayer = 0; ilayer < 6; ilayer++){
227 mom[ilayer] = track->GetTRDmomentum(ilayer);
228 for(Int_t islice = 0; islice < track->GetNumberOfTRDslices(); islice++){
229 dedx[ilayer*track->GetNumberOfTRDslices()+islice] = track->GetTRDslice(ilayer, islice);
230 }
231 }
232 fTRDResponse.GetResponse(track->GetNumberOfTRDslices(), dedx, mom, prob);
233 track->SetTRDpid(prob);
234}
235//_________________________________________________________________________
10d100d4 236void AliESDpid::CombinePID(AliESDtrack *track) const
237{
238 //
239 // Combine the information of various detectors
240 // to determine the Particle Identification
241 //
242 Int_t ns=AliPID::kSPECIES;
243 Double_t p[10]={1.,1.,1.,1.,1.,1.,1.,1.,1.,1.};
244
245 if (track->IsOn(AliESDtrack::kITSpid)) {
246 Double_t d[10];
247 track->GetITSpid(d);
248 for (Int_t j=0; j<ns; j++) p[j]*=d[j];
249 }
250
251 if (track->IsOn(AliESDtrack::kTPCpid)) {
252 Double_t d[10];
253 track->GetTPCpid(d);
254 for (Int_t j=0; j<ns; j++) p[j]*=d[j];
255 }
256
257 if (track->IsOn(AliESDtrack::kTRDpid)) {
258 Double_t d[10];
259 track->GetTRDpid(d);
260 for (Int_t j=0; j<ns; j++) p[j]*=d[j];
261 }
262
263 if (track->IsOn(AliESDtrack::kTOFpid)) {
264 Double_t d[10];
265 track->GetTOFpid(d);
266 for (Int_t j=0; j<ns; j++) p[j]*=d[j];
267 }
268
269 if (track->IsOn(AliESDtrack::kHMPIDpid)) {
270 Double_t d[10];
271 track->GetHMPIDpid(d);
272 for (Int_t j=0; j<ns; j++) p[j]*=d[j];
273 }
274
275 track->SetESDpid(p);
8c6a71ab 276}