]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TRD/AliTRDpidESD.cxx
Rmove MCM status
[u/mrichter/AliRoot.git] / TRD / AliTRDpidESD.cxx
CommitLineData
b0f03c34 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
b52cb1b6 16////////////////////////////////////////////////////////////////////////////
17// //
18// Implementation of the TRD PID class //
19// //
20// Assigns the electron and pion likelihoods to each ESD track. //
21// The function MakePID(AliESD *event) calculates the probability //
22// of having dedx and a maximum timbin at a given //
23// momentum (mom) and particle type k //
24// from the precalculated distributions. //
25// //
26// Original version: //
27// Prashant Shukla <shukla@pi0.physi.uni-heidelberg.de> //
28// //
29////////////////////////////////////////////////////////////////////////////
b0f03c34 30
b52cb1b6 31#include "AliLog.h"
b0f03c34 32#include "AliESD.h"
33#include "AliESDtrack.h"
b52cb1b6 34
35#include "AliTRDpidESD.h"
36#include "AliTRDgeometry.h"
cc7cef99 37#include "AliTRDcalibDB.h"
7754cd1f 38#include "Cal/AliTRDCalPIDLQ.h"
b0f03c34 39
40ClassImp(AliTRDpidESD)
41
df34b21e 42 Bool_t AliTRDpidESD::fCheckTrackStatus = kTRUE;
43 Bool_t AliTRDpidESD::fCheckKinkStatus = kFALSE;
44 Int_t AliTRDpidESD::fMinPlane = 0;
45
b52cb1b6 46//_____________________________________________________________________________
47AliTRDpidESD::AliTRDpidESD():TObject()
b0f03c34 48{
49 //
b52cb1b6 50 // Default constructor
b0f03c34 51 //
b52cb1b6 52
b52cb1b6 53
b0f03c34 54}
55
b52cb1b6 56//_____________________________________________________________________________
57AliTRDpidESD::AliTRDpidESD(const AliTRDpidESD &p):TObject(p)
eab5961e 58{
b0f03c34 59 //
b52cb1b6 60 // AliTRDpidESD copy constructor
b0f03c34 61 //
eab5961e 62
b52cb1b6 63 ((AliTRDpidESD &) p).Copy(*this);
64
65}
66
67//_____________________________________________________________________________
68AliTRDpidESD &AliTRDpidESD::operator=(const AliTRDpidESD &p)
69{
70 //
71 // Assignment operator
72 //
73
74 if (this != &p) ((AliTRDpidESD &) p).Copy(*this);
75 return *this;
76
77}
78
79//_____________________________________________________________________________
80void AliTRDpidESD::Copy(TObject &p) const
81{
82 //
83 // Copy function
84 //
85
86 ((AliTRDpidESD &) p).fCheckTrackStatus = fCheckTrackStatus;
87 ((AliTRDpidESD &) p).fCheckKinkStatus = fCheckKinkStatus;
88 ((AliTRDpidESD &) p).fMinPlane = fMinPlane;
eab5961e 89
b0f03c34 90}
91
b52cb1b6 92//_____________________________________________________________________________
b0f03c34 93Int_t AliTRDpidESD::MakePID(AliESD *event)
bd50219c 94{
95 //
b52cb1b6 96 // This function calculates the PID probabilities based on TRD signals
bd50219c 97 //
b52cb1b6 98 // So far this method produces probabilities based on the total charge
99 // in each layer and the position of the maximum time bin in each layer.
100 // In a final version this should also exploit the charge measurement in
101 // the different slices of a given layer.
102 //
103
104 Double_t p[10];
105 Int_t nSpecies = AliPID::kSPECIES;
106 Int_t nPlanePID = 0;
107 Double_t mom = 0.0;
108 Double_t probTotal = 0.0;
109
110 AliTRDcalibDB *calibration = AliTRDcalibDB::Instance();
111 if (!calibration) {
030b4415 112 AliErrorGeneral("AliTRDpidESD::MakePID"
113 ,"No access to calibration data\n");
cc7cef99 114 return -1;
b52cb1b6 115 }
116
117 // Retrieve the CDB container class with the probability distributions
63a700c6 118 const AliTRDCalPIDLQ *pd = calibration->GetPIDLQObject();
b52cb1b6 119 if (!pd) {
030b4415 120 AliErrorGeneral("AliTRDpidESD::MakePID"
121 ,"No access to AliTRDCalPIDLQ\n");
b52cb1b6 122 return -1;
123 }
124
125 // Loop through all ESD tracks
126 Int_t ntrk = event->GetNumberOfTracks();
127 for (Int_t i = 0; i < ntrk; i++) {
128
129 AliESDtrack *t = event->GetTrack(i);
130
131 // Check the ESD track status
132 if (fCheckTrackStatus) {
133 if (((t->GetStatus() & AliESDtrack::kTRDout ) == 0) &&
134 ((t->GetStatus() & AliESDtrack::kTRDrefit) == 0)) {
135 continue;
136 }
137 }
138
139 // Check for ESD kink tracks
140 if (fCheckKinkStatus) {
141 if (t->GetKinkIndex(0) != 0) {
142 continue;
143 }
144 }
145
146 // Skip tracks that have no TRD signal at all
147 if (t->GetTRDsignal() == 0) {
148 continue;
149 }
150
151 mom = t->GetP();
152 probTotal = 0.0;
153 nPlanePID = 0;
154 for (Int_t iSpecies = 0; iSpecies < nSpecies; iSpecies++) {
155 p[iSpecies] = 1.0;
156 }
157
158 // Check the different detector layers
159 for (Int_t iPlan = 0; iPlan < AliTRDgeometry::kNplan; iPlan++) {
160
161 // Use the total charge in a given plane
162 Double_t dedx = t->GetTRDsignals(iPlan,-1);
163 Int_t timebin = t->GetTRDTimBin(iPlan);
164 if ((dedx > 0.0) &&
165 (timebin > -1.0)) {
166
167 nPlanePID++;
168
169 // Get the probabilities for the different particle species
170 for (Int_t iSpecies = 0; iSpecies < nSpecies; iSpecies++) {
171
172 p[iSpecies] *= pd->GetProbability(iSpecies,mom,dedx);
173 p[iSpecies] *= pd->GetProbabilityT(iSpecies,mom,timebin);
174 p[iSpecies] *= 100.0; // ??????????????
175
176 probTotal += p[iSpecies];
177
178 }
179
180 }
181
182 }
183
184 for (Int_t iSpecies = 0; iSpecies < nSpecies; iSpecies++) {
185 if ((probTotal > 0.0) &&
186 (nPlanePID > fMinPlane)) {
187 p[iSpecies] /= probTotal;
188 }
189 else {
190 p[iSpecies] = 1.0;
191 }
192 }
193
b0f03c34 194 t->SetTRDpid(p);
b52cb1b6 195
196 }
197
b0f03c34 198 return 0;
b52cb1b6 199
b0f03c34 200}