6ad0bfa0 |
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 | |
b2a60966 |
16 | /* $Id$ */ |
17 | |
6ad0bfa0 |
18 | //_________________________________________________________________________ |
b2a60966 |
19 | // Implementation version v1 of the PHOS particle identifier |
7acf6008 |
20 | // Particle identification based on the |
148b2bba |
21 | // - RCPV: distance from CPV recpoint to EMCA recpoint. |
22 | // - TOF |
23 | // - PCA: Principal Components Analysis.. |
24 | // The identified particle has an identification number corresponding |
25 | // to a 9 bits number: |
bc0c084c |
26 | // -Bit 0 to 2: bit set if RCPV > CpvEmcDistance (each bit corresponds |
148b2bba |
27 | // to a different efficiency-purity point of the photon identification) |
bc0c084c |
28 | // -Bit 3 to 5: bit set if TOF < TimeGate (each bit corresponds |
148b2bba |
29 | // to a different efficiency-purity point of the photon identification) |
30 | // -Bit 6 to 9: bit set if Principal Components are |
50739f15 |
31 | // inside an ellipse defined by the parameters a, b, c, x0 and y0. |
148b2bba |
32 | // (each bit corresponds to a different efficiency-purity point of the |
50739f15 |
33 | // photon identification) |
34 | // The PCA (Principal components analysis) needs a file that contains |
35 | // a previous analysis of the correlations between the particles. This |
bc0c084c |
36 | // file is $ALICE_ROOT/PHOS/PCA8pa15_0.5-100.root. Analysis done for |
50739f15 |
37 | // energies between 0.5 and 100 GeV. |
9fa5f1d0 |
38 | // A calibrated energy is calculated. The energy of the reconstructed |
50739f15 |
39 | // cluster is corrected with the formula A + B * E + C * E^2, whose |
bc0c084c |
40 | // parameters where obtained through the study of the reconstructed |
50739f15 |
41 | // energy distribution of monoenergetic photons. |
a4e98857 |
42 | // |
bc0c084c |
43 | // All the parameters (RCPV(2 rows-3 columns),TOF(1r-3c),PCA(5r-4c) |
50739f15 |
44 | // and calibration(1r-3c))are stored in a file called |
45 | // $ALICE_ROOT/PHOS/Parameters.dat. Each time that AliPHOSPIDv1 is |
bc0c084c |
46 | // initialized, this parameters are copied to a Matrix (9,4), a |
50739f15 |
47 | // TMatrixD object. |
7acf6008 |
48 | // |
a4e98857 |
49 | // use case: |
50739f15 |
50 | // root [0] AliPHOSPIDv1 * p = new AliPHOSPIDv1("galice1.root") |
a4e98857 |
51 | // Warning in <TDatabasePDG::TDatabasePDG>: object already instantiated |
50739f15 |
52 | // // reading headers from file galice1.root and create RecParticles |
53 | // TrackSegments and RecPoints are used |
54 | // // set file name for the branch RecParticles |
f0a4c9e9 |
55 | // root [1] p->ExecuteTask("deb all time") |
50739f15 |
56 | // // available options |
57 | // // "deb" - prints # of reconstructed particles |
58 | // // "deb all" - prints # and list of RecParticles |
59 | // // "time" - prints benchmarking results |
7acf6008 |
60 | // |
50739f15 |
61 | // root [2] AliPHOSPIDv1 * p2 = new AliPHOSPIDv1("galice1.root","v1",kTRUE) |
148b2bba |
62 | // Warning in <TDatabasePDG::TDatabasePDG>: object already instantiated |
50739f15 |
63 | // //Split mode. |
f0a4c9e9 |
64 | // root [3] p2->ExecuteTask() |
65 | // |
50739f15 |
66 | |
f0a4c9e9 |
67 | |
7acf6008 |
68 | //*-- Author: Yves Schutz (SUBATECH) & Gines Martinez (SUBATECH) & |
148b2bba |
69 | // Gustavo Conesa April 2002 |
50739f15 |
70 | // PCA redesigned by Gustavo Conesa October 2002: |
71 | // The way of using the PCA has changed. Instead of 2 |
72 | // files with the PCA, each one with different energy ranges |
73 | // of application, we use the wide one (0.5-100 GeV), and instead |
bc0c084c |
74 | // of fixing 3 ellipses for different ranges of energy, it has been |
50739f15 |
75 | // studied the dependency of the ellipses parameters with the |
76 | // energy, and they are implemented in the code as a funtion |
77 | // of the energy. |
78 | // |
79 | // |
80 | // |
6ad0bfa0 |
81 | // --- ROOT system --- |
7acf6008 |
82 | #include "TROOT.h" |
83 | #include "TTree.h" |
84 | #include "TFile.h" |
e3817e5f |
85 | #include "TF2.h" |
86 | #include "TFormula.h" |
87 | #include "TCanvas.h" |
88 | #include "TFolder.h" |
7acf6008 |
89 | #include "TSystem.h" |
90 | #include "TBenchmark.h" |
148b2bba |
91 | #include "TMatrixD.h" |
92 | #include "TPrincipal.h" |
e3817e5f |
93 | #include "TSystem.h" |
148b2bba |
94 | |
6ad0bfa0 |
95 | // --- Standard library --- |
96 | |
75a6835b |
97 | |
6ad0bfa0 |
98 | // --- AliRoot header files --- |
99 | |
7acf6008 |
100 | #include "AliGenerator.h" |
e3817e5f |
101 | #include "AliPHOS.h" |
26d4b141 |
102 | #include "AliPHOSPIDv1.h" |
e3817e5f |
103 | #include "AliPHOSClusterizerv1.h" |
d956e9b7 |
104 | #include "AliPHOSEmcRecPoint.h" |
6ad0bfa0 |
105 | #include "AliPHOSTrackSegment.h" |
e3817e5f |
106 | #include "AliPHOSTrackSegmentMakerv1.h" |
6ad0bfa0 |
107 | #include "AliPHOSRecParticle.h" |
7b7c1533 |
108 | #include "AliPHOSGeometry.h" |
109 | #include "AliPHOSGetter.h" |
6ad0bfa0 |
110 | |
26d4b141 |
111 | ClassImp( AliPHOSPIDv1) |
6ad0bfa0 |
112 | |
1cb7c1ee |
113 | //____________________________________________________________________________ |
114 | AliPHOSPIDv1::AliPHOSPIDv1():AliPHOSPID() |
115 | { |
a4e98857 |
116 | // default ctor |
148b2bba |
117 | |
8d0f3f77 |
118 | InitParameters() ; |
92f521a9 |
119 | fDefaultInit = kTRUE ; |
7acf6008 |
120 | } |
121 | |
581354c5 |
122 | //____________________________________________________________________________ |
88cb7938 |
123 | AliPHOSPIDv1::AliPHOSPIDv1(const AliPHOSPIDv1 & pid ):AliPHOSPID(pid) |
581354c5 |
124 | { |
386aef34 |
125 | // ctor |
581354c5 |
126 | InitParameters() ; |
581354c5 |
127 | Init() ; |
581354c5 |
128 | |
129 | } |
130 | |
7acf6008 |
131 | //____________________________________________________________________________ |
88cb7938 |
132 | AliPHOSPIDv1::AliPHOSPIDv1(const TString alirunFileName, const TString eventFolderName):AliPHOSPID(alirunFileName, eventFolderName) |
7acf6008 |
133 | { |
a4e98857 |
134 | //ctor with the indication on where to look for the track segments |
7b7c1533 |
135 | |
8d0f3f77 |
136 | InitParameters() ; |
2bd5457f |
137 | Init() ; |
92f521a9 |
138 | fDefaultInit = kFALSE ; |
7acf6008 |
139 | } |
7b7c1533 |
140 | |
7acf6008 |
141 | //____________________________________________________________________________ |
142 | AliPHOSPIDv1::~AliPHOSPIDv1() |
143 | { |
79bb1b62 |
144 | // dtor |
9fa5f1d0 |
145 | |
e3817e5f |
146 | delete [] fX ; // Principal input |
147 | delete [] fPPhoton ; // Photon Principal components |
148 | delete [] fPPi0 ; // Pi0 Principal components |
7acf6008 |
149 | } |
a496c46c |
150 | //____________________________________________________________________________ |
151 | const TString AliPHOSPIDv1::BranchName() const |
152 | { |
88cb7938 |
153 | |
154 | return GetName() ; |
a496c46c |
155 | } |
156 | |
148b2bba |
157 | //____________________________________________________________________________ |
158 | void AliPHOSPIDv1::Init() |
159 | { |
160 | // Make all memory allocations that are not possible in default constructor |
161 | // Add the PID task to the list of PHOS tasks |
a496c46c |
162 | |
88cb7938 |
163 | AliPHOSGetter * gime = AliPHOSGetter::Instance(GetTitle(), fEventFolderName.Data()) ; |
164 | |
165 | if ( !gime->PID() ) |
166 | gime->PostPID(this) ; |
148b2bba |
167 | } |
8d0f3f77 |
168 | |
169 | //____________________________________________________________________________ |
170 | void AliPHOSPIDv1::InitParameters() |
171 | { |
e3817e5f |
172 | // Initialize PID parameters |
8d0f3f77 |
173 | fRecParticlesInRun = 0 ; |
8d0f3f77 |
174 | fNEvent = 0 ; |
8d0f3f77 |
175 | fRecParticlesInRun = 0 ; |
9fa5f1d0 |
176 | SetParameters() ; // fill the parameters matrix from parameters file |
eabde521 |
177 | SetEventRange(0,-1) ; |
cc1fe362 |
178 | // initialisation of response function parameters |
179 | // Tof |
180 | // Photons |
181 | fTphoton[0] = 2.97E-1 ; |
182 | fTphoton[1] = 1.55E-8 ; |
183 | fTphoton[2] = 5.40E-10 ; |
184 | fTFphoton = new TFormula("ToF response to photon" , "gaus") ; |
185 | fTFphoton->SetParameters( fTphoton[0], fTphoton[1], fTphoton[2]) ; |
186 | // Electrons |
187 | fTelectron[0] = 2.73E-1 ; |
188 | fTelectron[1] = 1.56E-8 ; |
189 | fTelectron[2] = 5.70E-10 ; |
190 | fTFelectron = new TFormula("ToF response to electron" , "gaus") ; |
191 | fTFelectron->SetParameters( fTelectron[0], fTelectron[1], fTelectron[2]) ; |
192 | //Charged Hadrons |
193 | fTchargedhadron[0] = 1.58E-1 ; |
194 | fTchargedhadron[1] = 1.64E-8 ; |
195 | fTchargedhadron[2] = 3.59E-10 ; |
196 | fTFchargedhadron = new TFormula("ToF response to charged hadron" , "landau") ; |
197 | fTFchargedhadron->SetParameters( fTchargedhadron[0], fTchargedhadron[1], fTchargedhadron[2]) ; |
198 | //Neutral Hadrons |
199 | fTneutralhadron[0] = 9.62E-1 ; |
200 | fTneutralhadron[1] = 1.65E-8 ; |
201 | fTneutralhadron[2] = 6.46E-10 ; |
202 | fTFneutralhadron = new TFormula("ToF response to neutral hadron" , "landau") ; |
203 | fTFneutralhadron->SetParameters( fTneutralhadron[0], fTneutralhadron[1], fTneutralhadron[2]) ; |
8d0f3f77 |
204 | } |
205 | |
88cb7938 |
206 | //________________________________________________________________________ |
eabde521 |
207 | void AliPHOSPIDv1::Exec(Option_t *option) |
88cb7938 |
208 | { |
eabde521 |
209 | // Steering method to perform particle reconstruction and identification |
210 | // for the event range from fFirstEvent to fLastEvent. |
211 | // This range is optionally set by SetEventRange(). |
212 | // if fLastEvent=-1 (by default), then process events until the end. |
61d3d6aa |
213 | |
88cb7938 |
214 | if(strstr(option,"tim")) |
215 | gBenchmark->Start("PHOSPID"); |
216 | |
217 | if(strstr(option,"print")) { |
218 | Print() ; |
219 | return ; |
220 | } |
221 | |
222 | |
fb43ada4 |
223 | AliPHOSGetter * gime = AliPHOSGetter::Instance(GetTitle()) ; |
88cb7938 |
224 | |
71cee46d |
225 | if (fLastEvent == -1) |
226 | fLastEvent = gime->MaxEvent() - 1 ; |
227 | else |
228 | fLastEvent = TMath::Min(fLastEvent,gime->MaxEvent()); |
eabde521 |
229 | Int_t nEvents = fLastEvent - fFirstEvent + 1; |
88cb7938 |
230 | |
71cee46d |
231 | Int_t ievent ; |
232 | for (ievent = fFirstEvent; ievent <= fLastEvent; ievent++) { |
88cb7938 |
233 | gime->Event(ievent,"TR") ; |
234 | if(gime->TrackSegments() && //Skip events, where no track segments made |
235 | gime->TrackSegments()->GetEntriesFast()) { |
236 | MakeRecParticles() ; |
2cc71c1e |
237 | MakePID() ; |
90cceaf6 |
238 | WriteRecParticles(); |
88cb7938 |
239 | if(strstr(option,"deb")) |
240 | PrintRecParticles(option) ; |
241 | //increment the total number of rec particles per run |
242 | fRecParticlesInRun += gime->RecParticles()->GetEntriesFast() ; |
243 | } |
244 | } |
ff417097 |
245 | if(strstr(option,"deb")) |
246 | PrintRecParticles(option); |
88cb7938 |
247 | if(strstr(option,"tim")){ |
248 | gBenchmark->Stop("PHOSPID"); |
249 | Info("Exec", "took %f seconds for PID %f seconds per event", |
250 | gBenchmark->GetCpuTime("PHOSPID"), |
eabde521 |
251 | gBenchmark->GetCpuTime("PHOSPID")/nEvents) ; |
88cb7938 |
252 | } |
88cb7938 |
253 | Unload(); |
254 | } |
255 | |
69183710 |
256 | //____________________________________________________________________________ |
e3817e5f |
257 | const TString AliPHOSPIDv1::GetFileNamePrincipal(TString particle) const |
148b2bba |
258 | { |
e3817e5f |
259 | //Get file name that contains the PCA for a particle ("photon or pi0") |
260 | particle.ToLower(); |
261 | TString name; |
262 | if (particle=="photon") name = fFileNamePrincipalPhoton ; |
263 | else if (particle=="pi0" ) name = fFileNamePrincipalPi0 ; |
264 | else Error("GetFileNamePrincipal","Wrong particle name: %s (choose from pi0/photon)\n",particle.Data()); |
265 | return name; |
266 | } |
bc0c084c |
267 | |
e3817e5f |
268 | //____________________________________________________________________________ |
fc7e2f43 |
269 | Float_t AliPHOSPIDv1::GetParameterCalibration(Int_t i) const |
e3817e5f |
270 | { |
271 | // Get the i-th parameter "Calibration" |
272 | Float_t param = 0.; |
273 | if (i>2 || i<0) |
274 | Error("GetParameterCalibration","Invalid parameter number: %d",i); |
9fa5f1d0 |
275 | else |
e3817e5f |
276 | param = (*fParameters)(0,i); |
277 | return param; |
278 | } |
bc0c084c |
279 | |
88cb7938 |
280 | //____________________________________________________________________________ |
fc7e2f43 |
281 | Float_t AliPHOSPIDv1::GetCalibratedEnergy(Float_t e) const |
88cb7938 |
282 | { |
283 | // It calibrates Energy depending on the recpoint energy. |
284 | // The energy of the reconstructed cluster is corrected with |
285 | // the formula A + B* E + C* E^2, whose parameters where obtained |
286 | // through the study of the reconstructed energy distribution of |
287 | // monoenergetic photons. |
288 | |
289 | Float_t p[]={0.,0.,0.}; |
290 | for (Int_t i=0; i<3; i++) p[i] = GetParameterCalibration(i); |
291 | Float_t enerec = p[0] + p[1]*e + p[2]*e*e; |
292 | return enerec ; |
293 | |
294 | } |
295 | |
e3817e5f |
296 | //____________________________________________________________________________ |
fc7e2f43 |
297 | Float_t AliPHOSPIDv1::GetParameterCpv2Emc(Int_t i, TString axis) const |
e3817e5f |
298 | { |
299 | // Get the i-th parameter "CPV-EMC distance" for the specified axis |
300 | Float_t param = 0.; |
301 | if(i>2 || i<0) |
302 | Error("GetParameterCpv2Emc","Invalid parameter number: %d",i); |
303 | else { |
304 | axis.ToLower(); |
305 | if (axis == "x") param = (*fParameters)(1,i); |
306 | else if (axis == "z") param = (*fParameters)(2,i); |
307 | else Error("GetParameterCpv2Emc","Invalid axis name: %s",axis.Data()); |
308 | } |
309 | return param; |
310 | } |
311 | |
312 | //____________________________________________________________________________ |
fc7e2f43 |
313 | Float_t AliPHOSPIDv1::GetCpv2EmcDistanceCut(TString axis, Float_t e) const |
e3817e5f |
314 | { |
88cb7938 |
315 | // Get CpvtoEmcDistance Cut depending on the cluster energy, axis and |
316 | // Purity-Efficiency point |
317 | |
318 | axis.ToLower(); |
319 | Float_t p[]={0.,0.,0.}; |
320 | for (Int_t i=0; i<3; i++) p[i] = GetParameterCpv2Emc(i,axis); |
321 | Float_t sig = p[0] + TMath::Exp(p[1] - p[2]*e); |
322 | return sig; |
e3817e5f |
323 | } |
324 | |
88cb7938 |
325 | //____________________________________________________________________________ |
fc7e2f43 |
326 | Float_t AliPHOSPIDv1::GetEllipseParameter(TString particle, TString param, Float_t e) const |
88cb7938 |
327 | { |
328 | // Calculates the parameter param of the ellipse |
e3817e5f |
329 | |
330 | particle.ToLower(); |
331 | param. ToLower(); |
88cb7938 |
332 | Float_t p[4]={0.,0.,0.,0.}; |
333 | Float_t value = 0.0; |
334 | for (Int_t i=0; i<4; i++) p[i] = GetParameterToCalculateEllipse(particle,param,i); |
335 | if (particle == "photon") { |
336 | if (param.Contains("a")) e = TMath::Min((Double_t)e,70.); |
337 | else if (param.Contains("b")) e = TMath::Min((Double_t)e,70.); |
338 | else if (param.Contains("x0")) e = TMath::Max((Double_t)e,1.1); |
339 | } |
e3817e5f |
340 | |
443caba9 |
341 | if (particle == "photon") |
342 | value = p[0]/TMath::Sqrt(e) + p[1]*e + p[2]*e*e + p[3]; |
343 | else if (particle == "pi0") |
344 | value = p[0] + p[1]*e + p[2]*e*e; |
345 | |
88cb7938 |
346 | return value; |
e3817e5f |
347 | } |
348 | |
349 | //_____________________________________________________________________________ |
fc7e2f43 |
350 | Float_t AliPHOSPIDv1::GetParameterPhotonBoundary (Int_t i) const |
e3817e5f |
351 | { |
352 | // Get the parameter "i" to calculate the boundary on the moment M2x |
353 | // for photons at high p_T |
354 | Float_t param = 0; |
355 | if (i>3 || i<0) |
356 | Error("GetParameterPhotonBoundary","Wrong parameter number: %d\n",i); |
357 | else |
358 | param = (*fParameters)(14,i) ; |
359 | return param; |
148b2bba |
360 | } |
e3817e5f |
361 | |
148b2bba |
362 | //____________________________________________________________________________ |
fc7e2f43 |
363 | Float_t AliPHOSPIDv1::GetParameterPi0Boundary (Int_t i) const |
e3817e5f |
364 | { |
365 | // Get the parameter "i" to calculate the boundary on the moment M2x |
366 | // for pi0 at high p_T |
367 | Float_t param = 0; |
368 | if (i>2 || i<0) |
369 | Error("GetParameterPi0Boundary","Wrong parameter number: %d\n",i); |
370 | else |
371 | param = (*fParameters)(15,i) ; |
372 | return param; |
373 | } |
148b2bba |
374 | |
e3817e5f |
375 | //____________________________________________________________________________ |
fc7e2f43 |
376 | Float_t AliPHOSPIDv1::GetParameterTimeGate(Int_t i) const |
e3817e5f |
377 | { |
88cb7938 |
378 | // Get TimeGate parameter depending on Purity-Efficiency i: |
379 | // i=0 - Low purity, i=1 - Medium purity, i=2 - High purity |
380 | Float_t param = 0.; |
e3817e5f |
381 | if(i>2 || i<0) |
88cb7938 |
382 | Error("GetParameterTimeGate","Invalid Efficiency-Purity choice %d",i); |
e3817e5f |
383 | else |
88cb7938 |
384 | param = (*fParameters)(3,i) ; |
385 | return param; |
e3817e5f |
386 | } |
387 | |
148b2bba |
388 | //_____________________________________________________________________________ |
fc7e2f43 |
389 | Float_t AliPHOSPIDv1::GetParameterToCalculateEllipse(TString particle, TString param, Int_t i) const |
88cb7938 |
390 | { |
391 | // Get the parameter "i" that is needed to calculate the ellipse |
392 | // parameter "param" for the particle "particle" ("photon" or "pi0") |
393 | |
e3817e5f |
394 | particle.ToLower(); |
395 | param. ToLower(); |
88cb7938 |
396 | Int_t offset = -1; |
e3817e5f |
397 | if (particle == "photon") offset=0; |
398 | else if (particle == "pi0") offset=5; |
399 | else |
88cb7938 |
400 | Error("GetParameterToCalculateEllipse","Wrong particle name: %s (choose from pi0/photon)\n",particle.Data()); |
401 | |
402 | Int_t p= -1; |
403 | Float_t par = 0; |
e3817e5f |
404 | |
405 | if (param.Contains("a")) p=4+offset; |
406 | else if(param.Contains("b")) p=5+offset; |
407 | else if(param.Contains("c")) p=6+offset; |
408 | else if(param.Contains("x0"))p=7+offset; |
409 | else if(param.Contains("y0"))p=8+offset; |
12022e83 |
410 | |
88cb7938 |
411 | if (i>4 || i<0) |
412 | Error("GetParameterToCalculateEllipse", "No parameter with index", i) ; |
413 | else if (p==-1) |
414 | Error("GetParameterToCalculateEllipse", "No parameter with name %s", param.Data() ) ; |
12022e83 |
415 | else |
88cb7938 |
416 | par = (*fParameters)(p,i) ; |
417 | |
418 | return par; |
12022e83 |
419 | } |
420 | |
12022e83 |
421 | |
422 | //____________________________________________________________________________ |
8d4608b5 |
423 | Float_t AliPHOSPIDv1::GetDistance(AliPHOSEmcRecPoint * emc,AliPHOSCpvRecPoint * cpv, Option_t * axis)const |
69183710 |
424 | { |
425 | // Calculates the distance between the EMC RecPoint and the PPSD RecPoint |
148b2bba |
426 | |
88cb7938 |
427 | const AliPHOSGeometry * geom = AliPHOSGetter::Instance()->PHOSGeometry() ; |
69183710 |
428 | TVector3 vecEmc ; |
7acf6008 |
429 | TVector3 vecCpv ; |
148b2bba |
430 | if(cpv){ |
431 | emc->GetLocalPosition(vecEmc) ; |
432 | cpv->GetLocalPosition(vecCpv) ; |
2bb500e5 |
433 | |
148b2bba |
434 | if(emc->GetPHOSMod() == cpv->GetPHOSMod()){ |
435 | // Correct to difference in CPV and EMC position due to different distance to center. |
436 | // we assume, that particle moves from center |
437 | Float_t dCPV = geom->GetIPtoOuterCoverDistance(); |
438 | Float_t dEMC = geom->GetIPtoCrystalSurface() ; |
439 | dEMC = dEMC / dCPV ; |
440 | vecCpv = dEMC * vecCpv - vecEmc ; |
e3817e5f |
441 | if (axis == "X") return vecCpv.X(); |
442 | if (axis == "Y") return vecCpv.Y(); |
443 | if (axis == "Z") return vecCpv.Z(); |
444 | if (axis == "R") return vecCpv.Mag(); |
445 | } |
148b2bba |
446 | return 100000000 ; |
447 | } |
7acf6008 |
448 | return 100000000 ; |
69183710 |
449 | } |
bc0c084c |
450 | //____________________________________________________________________________ |
8d4608b5 |
451 | Int_t AliPHOSPIDv1::GetCPVBit(AliPHOSEmcRecPoint * emc,AliPHOSCpvRecPoint * cpv, Int_t effPur, Float_t e) const |
bc0c084c |
452 | { |
e3817e5f |
453 | if(effPur>2 || effPur<0) |
454 | Error("GetCPVBit","Invalid Efficiency-Purity choice %d",effPur); |
bc0c084c |
455 | |
e3817e5f |
456 | Float_t sigX = GetCpv2EmcDistanceCut("X",e); |
457 | Float_t sigZ = GetCpv2EmcDistanceCut("Z",e); |
bc0c084c |
458 | |
459 | Float_t deltaX = TMath::Abs(GetDistance(emc, cpv, "X")); |
460 | Float_t deltaZ = TMath::Abs(GetDistance(emc, cpv, "Z")); |
8d4608b5 |
461 | |
e3817e5f |
462 | if((deltaX>sigX*(effPur+1))|(deltaZ>sigZ*(effPur+1))) |
bc0c084c |
463 | return 1;//Neutral |
464 | else |
465 | return 0;//Charged |
bc0c084c |
466 | } |
69183710 |
467 | |
6ad0bfa0 |
468 | //____________________________________________________________________________ |
fc7e2f43 |
469 | Int_t AliPHOSPIDv1::GetPrincipalBit(TString particle, const Double_t* p, Int_t effPur, Float_t e)const |
148b2bba |
470 | { |
50739f15 |
471 | //Is the particle inside de PCA ellipse? |
581354c5 |
472 | |
e3817e5f |
473 | particle.ToLower(); |
474 | Int_t prinbit = 0 ; |
475 | Float_t a = GetEllipseParameter(particle,"a" , e); |
476 | Float_t b = GetEllipseParameter(particle,"b" , e); |
477 | Float_t c = GetEllipseParameter(particle,"c" , e); |
478 | Float_t x0 = GetEllipseParameter(particle,"x0", e); |
479 | Float_t y0 = GetEllipseParameter(particle,"y0", e); |
480 | |
481 | Float_t r = TMath::Power((p[0] - x0)/a,2) + |
482 | TMath::Power((p[1] - y0)/b,2) + |
483 | c*(p[0] - x0)*(p[1] - y0)/(a*b) ; |
50739f15 |
484 | //3 different ellipses defined |
e3817e5f |
485 | if((effPur==2) && (r<1./2.)) prinbit= 1; |
486 | if((effPur==1) && (r<2. )) prinbit= 1; |
487 | if((effPur==0) && (r<9./2.)) prinbit= 1; |
50739f15 |
488 | |
581354c5 |
489 | if(r<0) |
e3817e5f |
490 | Error("GetPrincipalBit", "Negative square?") ; |
1f0e7ccd |
491 | |
492 | return prinbit; |
148b2bba |
493 | |
148b2bba |
494 | } |
1f0e7ccd |
495 | //____________________________________________________________________________ |
fc7e2f43 |
496 | Int_t AliPHOSPIDv1::GetHardPhotonBit(AliPHOSEmcRecPoint * emc) const |
1f0e7ccd |
497 | { |
e3817e5f |
498 | // Set bit for identified hard photons (E > 30 GeV) |
499 | // if the second moment M2x is below the boundary |
500 | |
501 | Float_t e = emc->GetEnergy(); |
502 | if (e < 30.0) return 0; |
503 | Float_t m2x = emc->GetM2x(); |
504 | Float_t m2xBoundary = GetParameterPhotonBoundary(0) * |
505 | TMath::Exp(-TMath::Power(e-GetParameterPhotonBoundary(1),2)/2.0/ |
506 | TMath::Power(GetParameterPhotonBoundary(2),2)) + |
507 | GetParameterPhotonBoundary(3); |
61d3d6aa |
508 | //Info("GetHardPhotonBit","E=%f, m2x=%f, boundary=%f",e,m2x,m2xBoundary); |
e3817e5f |
509 | if (m2x < m2xBoundary) |
510 | return 1;// A hard photon |
511 | else |
512 | return 0;// Not a hard photon |
1f0e7ccd |
513 | } |
92f521a9 |
514 | |
e3817e5f |
515 | //____________________________________________________________________________ |
fc7e2f43 |
516 | Int_t AliPHOSPIDv1::GetHardPi0Bit(AliPHOSEmcRecPoint * emc) const |
e3817e5f |
517 | { |
518 | // Set bit for identified hard pi0 (E > 30 GeV) |
519 | // if the second moment M2x is above the boundary |
520 | |
521 | Float_t e = emc->GetEnergy(); |
522 | if (e < 30.0) return 0; |
523 | Float_t m2x = emc->GetM2x(); |
524 | Float_t m2xBoundary = GetParameterPi0Boundary(0) + |
525 | e * GetParameterPi0Boundary(1); |
61d3d6aa |
526 | //Info("GetHardPi0Bit","E=%f, m2x=%f, boundary=%f",e,m2x,m2xBoundary); |
e3817e5f |
527 | if (m2x > m2xBoundary) |
528 | return 1;// A hard pi0 |
bc0c084c |
529 | else |
e3817e5f |
530 | return 0;// Not a hard pi0 |
f0a4c9e9 |
531 | } |
e3817e5f |
532 | |
533 | //____________________________________________________________________________ |
8d4608b5 |
534 | TVector3 AliPHOSPIDv1::GetMomentumDirection(AliPHOSEmcRecPoint * emc, AliPHOSCpvRecPoint * )const |
88cb7938 |
535 | { |
536 | // Calculates the momentum direction: |
537 | // 1. if only a EMC RecPoint, direction is given by IP and this RecPoint |
538 | // 2. if a EMC RecPoint and CPV RecPoint, direction is given by the line through the 2 recpoints |
539 | // However because of the poor position resolution of PPSD the direction is always taken as if we were |
540 | // in case 1. |
f0a4c9e9 |
541 | |
88cb7938 |
542 | TVector3 dir(0,0,0) ; |
9688c1dd |
543 | |
88cb7938 |
544 | TVector3 emcglobalpos ; |
545 | TMatrix dummy ; |
bf8f1fbd |
546 | |
88cb7938 |
547 | emc->GetGlobalPosition(emcglobalpos, dummy) ; |
bf8f1fbd |
548 | |
fbf811ec |
549 | |
88cb7938 |
550 | dir = emcglobalpos ; |
88cb7938 |
551 | dir.SetMag(1.) ; |
e3817e5f |
552 | |
88cb7938 |
553 | //account correction to the position of IP |
554 | Float_t xo,yo,zo ; //Coordinates of the origin |
555 | gAlice->Generator()->GetOrigin(xo,yo,zo) ; |
556 | TVector3 origin(xo,yo,zo); |
557 | dir = dir - origin ; |
e3817e5f |
558 | |
88cb7938 |
559 | return dir ; |
7b7c1533 |
560 | } |
561 | |
2cc71c1e |
562 | //____________________________________________________________________________ |
563 | void AliPHOSPIDv1::MakePID() |
564 | { |
565 | // construct the PID weight from a Bayesian Method |
566 | |
567 | Int_t index ; |
cc1fe362 |
568 | const Int_t kSPECIES = AliESDtrack::kSPECIESN ; |
569 | Double_t pid[kSPECIES] = {0., 0., 0., 0., 0., 0.} ; |
2cc71c1e |
570 | Int_t nparticles = AliPHOSGetter::Instance()->RecParticles()->GetEntriesFast() ; |
cc1fe362 |
571 | const Int_t kMAXPARTICLES = 200 ; |
572 | if (nparticles >= kMAXPARTICLES) |
573 | Error("MakePID", "Change size of MAXPARTICLES") ; |
574 | Double_t stof[kSPECIES][kMAXPARTICLES] ; |
575 | // make the normalized distribution of pid for this event |
576 | // w(pid) in the Bayesian formulation |
2cc71c1e |
577 | for(index = 0 ; index < nparticles ; index ++) { |
578 | AliPHOSRecParticle * recpar = AliPHOSGetter::Instance()->RecParticle(index) ; |
cc1fe362 |
579 | |
580 | pid[AliESDtrack::kKaon0] = 0 ; |
581 | |
582 | if (recpar->IsPhoton() || recpar->IsHardPhoton()) |
583 | pid[AliESDtrack::kPhoton]++ ; |
584 | |
585 | else if (recpar->IsPi0() || recpar->IsHardPi0()) |
586 | pid[AliESDtrack::kPi0]++ ; |
587 | |
588 | else if (recpar->IsElectron()) { |
589 | pid[AliESDtrack::kElectron]++ ; |
590 | pid[AliESDtrack::kMuon]++ ; |
591 | } |
592 | |
593 | else if (recpar->IsChargedHadron()){ |
594 | pid[AliESDtrack::kPion]++ ; |
595 | pid[AliESDtrack::kKaon]++ ; |
596 | pid[AliESDtrack::kProton]++ ; |
597 | } |
598 | |
599 | else if (recpar->IsNeutralHadron()) |
600 | pid[AliESDtrack::kNeutron]++ ; |
601 | |
602 | else if (recpar->IsEleCon()) |
603 | pid[AliESDtrack::kEleCon]++ ; |
604 | |
605 | // now get the signals probability |
606 | // s(pid) in the Bayesian formulation |
607 | // Tof |
608 | stof[AliESDtrack::kPhoton][index] = fTFphoton->Eval(recpar->ToF()) ; |
609 | stof[AliESDtrack::kPi0][index] = fTFphoton->Eval(recpar->ToF()) ; // pi0 are detected via decay photon |
610 | stof[AliESDtrack::kElectron][index] = fTFelectron->Eval(recpar->ToF()) ; |
611 | stof[AliESDtrack::kPion][index] = fTFchargedhadron->Eval(recpar->ToF()) ; |
612 | stof[AliESDtrack::kKaon][index] = fTFchargedhadron->Eval(recpar->ToF()) ; |
613 | stof[AliESDtrack::kProton][index] = fTFchargedhadron->Eval(recpar->ToF()) ; |
614 | stof[AliESDtrack::kNeutron][index] = fTFneutralhadron->Eval(recpar->ToF()) ; |
615 | stof[AliESDtrack::kEleCon][index] = fTFphoton->Eval(recpar->ToF()) ; // a conversion electron has the photon ToF |
616 | stof[AliESDtrack::kKaon0][index] = 0 ; // do not know yet what to to with K0 |
617 | |
618 | } |
619 | for (index = 0 ; index < kSPECIES ; index++) |
620 | pid[index] /= nparticles ; |
621 | |
622 | |
623 | for(index = 0 ; index < nparticles ; index ++) { |
624 | // calculates the Bayesian weight |
625 | Int_t jndex ; |
626 | Double_t wn = 0.0 ; |
627 | for (jndex = 0 ; jndex < kSPECIES ; jndex++) |
628 | wn += stof[jndex][index] * pid[jndex] ; |
629 | AliPHOSRecParticle * recpar = AliPHOSGetter::Instance()->RecParticle(index) ; |
630 | for (jndex = 0 ; jndex < kSPECIES ; jndex++) { |
631 | recpar->SetPID(jndex, stof[jndex][index] * pid[jndex] / wn) ; |
632 | } |
2cc71c1e |
633 | } |
634 | } |
635 | |
7acf6008 |
636 | //____________________________________________________________________________ |
e3817e5f |
637 | void AliPHOSPIDv1::MakeRecParticles() |
638 | { |
b2a60966 |
639 | // Makes a RecParticle out of a TrackSegment |
148b2bba |
640 | |
88cb7938 |
641 | AliPHOSGetter * gime = AliPHOSGetter::Instance() ; |
fbf811ec |
642 | TObjArray * emcRecPoints = gime->EmcRecPoints() ; |
643 | TObjArray * cpvRecPoints = gime->CpvRecPoints() ; |
644 | TClonesArray * trackSegments = gime->TrackSegments() ; |
148b2bba |
645 | if ( !emcRecPoints || !cpvRecPoints || !trackSegments ) { |
f1611b7c |
646 | Fatal("MakeRecParticles", "RecPoints or TrackSegments not found !") ; |
148b2bba |
647 | } |
fbf811ec |
648 | TClonesArray * recParticles = gime->RecParticles() ; |
01a599c9 |
649 | recParticles->Clear(); |
148b2bba |
650 | |
7b7c1533 |
651 | TIter next(trackSegments) ; |
7acf6008 |
652 | AliPHOSTrackSegment * ts ; |
6ad0bfa0 |
653 | Int_t index = 0 ; |
09fc14a0 |
654 | AliPHOSRecParticle * rp ; |
7acf6008 |
655 | while ( (ts = (AliPHOSTrackSegment *)next()) ) { |
fad3e5b9 |
656 | |
7b7c1533 |
657 | new( (*recParticles)[index] ) AliPHOSRecParticle() ; |
658 | rp = (AliPHOSRecParticle *)recParticles->At(index) ; |
f0a4c9e9 |
659 | rp->SetTrackSegment(index) ; |
9688c1dd |
660 | rp->SetIndexInList(index) ; |
148b2bba |
661 | |
7acf6008 |
662 | AliPHOSEmcRecPoint * emc = 0 ; |
663 | if(ts->GetEmcIndex()>=0) |
7b7c1533 |
664 | emc = (AliPHOSEmcRecPoint *) emcRecPoints->At(ts->GetEmcIndex()) ; |
fad3e5b9 |
665 | |
8d4608b5 |
666 | AliPHOSCpvRecPoint * cpv = 0 ; |
7acf6008 |
667 | if(ts->GetCpvIndex()>=0) |
8d4608b5 |
668 | cpv = (AliPHOSCpvRecPoint *) cpvRecPoints->At(ts->GetCpvIndex()) ; |
fad3e5b9 |
669 | |
bd76890a |
670 | Int_t track = 0 ; |
671 | track = ts->GetTrackIndex() ; |
672 | |
148b2bba |
673 | // Now set type (reconstructed) of the particle |
674 | |
675 | // Choose the cluster energy range |
9fa5f1d0 |
676 | |
fbf811ec |
677 | if (!emc) { |
f1611b7c |
678 | Fatal("MakeRecParticles", "-> emc(%d) = %d", ts->GetEmcIndex(), emc ) ; |
fbf811ec |
679 | } |
50739f15 |
680 | |
e3817e5f |
681 | Float_t e = emc->GetEnergy() ; |
bc0c084c |
682 | |
6f969528 |
683 | Float_t lambda[2] ; |
684 | emc->GetElipsAxis(lambda) ; |
50739f15 |
685 | |
686 | if((lambda[0]>0.01) && (lambda[1]>0.01)){ |
687 | // Looking PCA. Define and calculate the data (X), |
bc0c084c |
688 | // introduce in the function X2P that gives the components (P). |
689 | |
e3817e5f |
690 | Float_t Spher = 0. ; |
691 | Float_t Emaxdtotal = 0. ; |
50739f15 |
692 | |
bc0c084c |
693 | if((lambda[0]+lambda[1])!=0) |
e3817e5f |
694 | Spher=fabs(lambda[0]-lambda[1])/(lambda[0]+lambda[1]); |
50739f15 |
695 | |
e3817e5f |
696 | Emaxdtotal=emc->GetMaximalEnergy()/emc->GetEnergy(); |
50739f15 |
697 | |
698 | fX[0] = lambda[0] ; |
699 | fX[1] = lambda[1] ; |
700 | fX[2] = emc->GetDispersion() ; |
e3817e5f |
701 | fX[3] = Spher ; |
50739f15 |
702 | fX[4] = emc->GetMultiplicity() ; |
e3817e5f |
703 | fX[5] = Emaxdtotal ; |
50739f15 |
704 | fX[6] = emc->GetCoreEnergy() ; |
705 | |
e3817e5f |
706 | fPrincipalPhoton->X2P(fX,fPPhoton); |
707 | fPrincipalPi0 ->X2P(fX,fPPi0); |
1f0e7ccd |
708 | |
50739f15 |
709 | } |
710 | else{ |
e3817e5f |
711 | fPPhoton[0]=-100.0; //We do not accept clusters with |
712 | fPPhoton[1]=-100.0; //one cell as a photon-like |
713 | fPPi0[0] =-100.0; |
714 | fPPi0[1] =-100.0; |
50739f15 |
715 | } |
716 | |
2cc71c1e |
717 | Float_t time = emc->GetTime() ; |
718 | rp->SetTof(time) ; |
9fa5f1d0 |
719 | |
bc0c084c |
720 | // Loop of Efficiency-Purity (the 3 points of purity or efficiency |
721 | // are taken into account to set the particle identification) |
e3817e5f |
722 | for(Int_t effPur = 0; effPur < 3 ; effPur++){ |
50739f15 |
723 | |
bc0c084c |
724 | // Looking at the CPV detector. If RCPV greater than CpvEmcDistance, |
725 | // 1st,2nd or 3rd bit (depending on the efficiency-purity point ) |
726 | // is set to 1 |
e3817e5f |
727 | if(GetCPVBit(emc, cpv, effPur,e) == 1 ) |
728 | rp->SetPIDBit(effPur) ; |
f0a4c9e9 |
729 | |
50739f15 |
730 | // Looking the TOF. If TOF smaller than gate, 4th, 5th or 6th |
731 | // bit (depending on the efficiency-purity point )is set to 1 |
2cc71c1e |
732 | if(time< (*fParameters)(3,effPur)) |
e3817e5f |
733 | rp->SetPIDBit(effPur+3) ; |
2cc71c1e |
734 | |
e3817e5f |
735 | //Photon PCA |
50739f15 |
736 | //If we are inside the ellipse, 7th, 8th or 9th |
737 | // bit (depending on the efficiency-purity point )is set to 1 |
e3817e5f |
738 | if(GetPrincipalBit("photon",fPPhoton,effPur,e) == 1) |
739 | rp->SetPIDBit(effPur+6) ; |
1f0e7ccd |
740 | |
e3817e5f |
741 | //Pi0 PCA |
1f0e7ccd |
742 | //If we are inside the ellipse, 10th, 11th or 12th |
743 | // bit (depending on the efficiency-purity point )is set to 1 |
e3817e5f |
744 | if(GetPrincipalBit("pi0" ,fPPi0 ,effPur,e) == 1) |
745 | rp->SetPIDBit(effPur+9) ; |
f0a4c9e9 |
746 | } |
e3817e5f |
747 | if(GetHardPhotonBit(emc)) |
748 | rp->SetPIDBit(12) ; |
749 | if(GetHardPi0Bit (emc)) |
750 | rp->SetPIDBit(13) ; |
1f0e7ccd |
751 | |
bd76890a |
752 | if(track >= 0) |
753 | rp->SetPIDBit(14) ; |
754 | |
9fa5f1d0 |
755 | //Set momentum, energy and other parameters |
50739f15 |
756 | Float_t encal = GetCalibratedEnergy(e); |
9fa5f1d0 |
757 | TVector3 dir = GetMomentumDirection(emc,cpv) ; |
758 | dir.SetMag(encal) ; |
759 | rp->SetMomentum(dir.X(),dir.Y(),dir.Z(),encal) ; |
760 | rp->SetCalcMass(0); |
e0ed2e49 |
761 | rp->Name(); //If photon sets the particle pdg name to gamma |
e747b8da |
762 | rp->SetProductionVertex(0,0,0,0); |
763 | rp->SetFirstMother(-1); |
764 | rp->SetLastMother(-1); |
765 | rp->SetFirstDaughter(-1); |
766 | rp->SetLastDaughter(-1); |
767 | rp->SetPolarisation(0,0,0); |
d956e9b7 |
768 | //Set the position in global coordinate system from the RecPoint |
769 | AliPHOSGeometry * geom = gime->PHOSGeometry() ; |
770 | AliPHOSTrackSegment * ts = gime->TrackSegment(rp->GetPHOSTSIndex()) ; |
771 | AliPHOSEmcRecPoint * erp = gime->EmcRecPoint(ts->GetEmcIndex()) ; |
772 | TVector3 pos ; |
773 | geom->GetGlobal(erp, pos) ; |
774 | rp->SetPos(pos); |
6ad0bfa0 |
775 | index++ ; |
776 | } |
6ad0bfa0 |
777 | } |
e3817e5f |
778 | |
09fc14a0 |
779 | //____________________________________________________________________________ |
88cb7938 |
780 | void AliPHOSPIDv1::Print() const |
09fc14a0 |
781 | { |
b2a60966 |
782 | // Print the parameters used for the particle type identification |
bc0c084c |
783 | |
88cb7938 |
784 | Info("Print", "=============== AliPHOSPIDv1 ================") ; |
785 | printf("Making PID\n") ; |
786 | printf(" Pricipal analysis file from 0.5 to 100 %s\n", fFileNamePrincipalPhoton.Data() ) ; |
787 | printf(" Name of parameters file %s\n", fFileNameParameters.Data() ) ; |
788 | printf(" Matrix of Parameters: 14x4\n") ; |
789 | printf(" Energy Calibration 1x3 [3 parametres to calibrate energy: A + B* E + C * E^2]\n") ; |
790 | printf(" RCPV 2x3 rows x and z, columns function cut parameters\n") ; |
791 | printf(" TOF 1x3 [High Eff-Low Pur,Medium Eff-Pur, Low Eff-High Pur]\n") ; |
792 | printf(" PCA 5x4 [5 ellipse parametres and 4 parametres to calculate them: A/Sqrt(E) + B* E + C * E^2 + D]\n") ; |
793 | Printf(" Pi0 PCA 5x3 [5 ellipse parametres and 3 parametres to calculate them: A + B* E + C * E^2]\n") ; |
50739f15 |
794 | fParameters->Print() ; |
09fc14a0 |
795 | } |
796 | |
a496c46c |
797 | |
69183710 |
798 | |
7acf6008 |
799 | //____________________________________________________________________________ |
a4e98857 |
800 | void AliPHOSPIDv1::PrintRecParticles(Option_t * option) |
801 | { |
dd5c4038 |
802 | // Print table of reconstructed particles |
803 | |
88cb7938 |
804 | AliPHOSGetter *gime = AliPHOSGetter::Instance() ; |
bf8f1fbd |
805 | |
88cb7938 |
806 | TClonesArray * recParticles = gime->RecParticles() ; |
21cd0c07 |
807 | |
808 | TString message ; |
3bf72d32 |
809 | message = "\nevent " ; |
810 | message += gAlice->GetEvNumber() ; |
811 | message += " found " ; |
812 | message += recParticles->GetEntriesFast(); |
813 | message += " RecParticles\n" ; |
814 | |
7acf6008 |
815 | if(strstr(option,"all")) { // printing found TS |
3bf72d32 |
816 | message += "\n PARTICLE Index \n" ; |
7acf6008 |
817 | |
818 | Int_t index ; |
7b7c1533 |
819 | for (index = 0 ; index < recParticles->GetEntries() ; index++) { |
21cd0c07 |
820 | AliPHOSRecParticle * rp = (AliPHOSRecParticle * ) recParticles->At(index) ; |
3bf72d32 |
821 | message += "\n" ; |
822 | message += rp->Name().Data() ; |
823 | message += " " ; |
824 | message += rp->GetIndexInList() ; |
825 | message += " " ; |
826 | message += rp->GetType() ; |
7acf6008 |
827 | } |
3bf72d32 |
828 | } |
829 | Info("Print", message.Data() ) ; |
69183710 |
830 | } |
88cb7938 |
831 | |
832 | //____________________________________________________________________________ |
833 | void AliPHOSPIDv1::SetParameters() |
834 | { |
835 | // PCA : To do the Principal Components Analysis it is necessary |
836 | // the Principal file, which is opened here |
837 | fX = new double[7]; // Data for the PCA |
838 | fPPhoton = new double[7]; // Eigenvalues of the PCA |
839 | fPPi0 = new double[7]; // Eigenvalues of the Pi0 PCA |
840 | |
841 | // Read photon principals from the photon file |
842 | |
843 | fFileNamePrincipalPhoton = "$ALICE_ROOT/PHOS/PCA8pa15_0.5-100.root" ; |
844 | TFile f( fFileNamePrincipalPhoton.Data(), "read" ) ; |
845 | fPrincipalPhoton = dynamic_cast<TPrincipal*> (f.Get("principal")) ; |
846 | f.Close() ; |
847 | |
848 | // Read pi0 principals from the pi0 file |
849 | |
850 | fFileNamePrincipalPi0 = "$ALICE_ROOT/PHOS/PCA_pi0_40-120.root" ; |
851 | TFile fPi0( fFileNamePrincipalPi0.Data(), "read" ) ; |
852 | fPrincipalPi0 = dynamic_cast<TPrincipal*> (fPi0.Get("principal")) ; |
853 | fPi0.Close() ; |
854 | |
855 | // Open parameters file and initialization of the Parameters matrix. |
856 | // In the File Parameters.dat are all the parameters. These are introduced |
857 | // in a matrix of 16x4 |
858 | // |
859 | // All the parameters defined in this file are, in order of row: |
860 | // line 0 : calibration |
861 | // lines 1,2 : CPV rectangular cat for X and Z |
862 | // line 3 : TOF cut |
863 | // lines 4-8 : parameters to calculate photon PCA ellipse |
864 | // lines 9-13: parameters to calculate pi0 PCA ellipse |
865 | // lines 14-15: parameters to calculate border for high-pt photons and pi0 |
866 | |
867 | fFileNameParameters = gSystem->ExpandPathName("$ALICE_ROOT/PHOS/Parameters.dat"); |
868 | fParameters = new TMatrix(16,4) ; |
869 | const Int_t maxLeng=255; |
870 | char string[maxLeng]; |
871 | |
872 | // Open a text file with PID parameters |
873 | FILE *fd = fopen(fFileNameParameters.Data(),"r"); |
874 | if (!fd) |
875 | Fatal("SetParameter","File %s with a PID parameters cannot be opened\n", |
876 | fFileNameParameters.Data()); |
877 | |
878 | Int_t i=0; |
879 | // Read parameter file line-by-line and skip empty line and comments |
880 | while (fgets(string,maxLeng,fd) != NULL) { |
881 | if (string[0] == '\n' ) continue; |
882 | if (string[0] == '!' ) continue; |
883 | sscanf(string, "%f %f %f %f", |
884 | &(*fParameters)(i,0), &(*fParameters)(i,1), |
885 | &(*fParameters)(i,2), &(*fParameters)(i,3)); |
886 | i++; |
2cc71c1e |
887 | //Info("SetParameters", "line %d: %s",i,string); |
88cb7938 |
888 | } |
889 | fclose(fd); |
890 | } |
891 | |
892 | //____________________________________________________________________________ |
893 | void AliPHOSPIDv1::SetParameterCalibration(Int_t i,Float_t param) |
894 | { |
895 | // Set parameter "Calibration" i to a value param |
896 | if(i>2 || i<0) |
897 | Error("SetParameterCalibration","Invalid parameter number: %d",i); |
898 | else |
899 | (*fParameters)(0,i) = param ; |
900 | } |
901 | |
902 | //____________________________________________________________________________ |
903 | void AliPHOSPIDv1::SetParameterCpv2Emc(Int_t i, TString axis, Float_t cut) |
904 | { |
905 | // Set the parameters to calculate Cpv-to-Emc Distance Cut depending on |
906 | // Purity-Efficiency point i |
907 | |
908 | if(i>2 || i<0) |
909 | Error("SetParameterCpv2Emc","Invalid parameter number: %d",i); |
910 | else { |
911 | axis.ToLower(); |
912 | if (axis == "x") (*fParameters)(1,i) = cut; |
913 | else if (axis == "z") (*fParameters)(2,i) = cut; |
914 | else Error("SetParameterCpv2Emc","Invalid axis name: %s",axis.Data()); |
915 | } |
916 | } |
917 | |
918 | //____________________________________________________________________________ |
919 | void AliPHOSPIDv1::SetParameterPhotonBoundary(Int_t i,Float_t param) |
920 | { |
921 | // Set parameter "Hard photon boundary" i to a value param |
922 | if(i>4 || i<0) |
923 | Error("SetParameterPhotonBoundary","Invalid parameter number: %d",i); |
924 | else |
925 | (*fParameters)(14,i) = param ; |
926 | } |
927 | |
928 | //____________________________________________________________________________ |
929 | void AliPHOSPIDv1::SetParameterPi0Boundary(Int_t i,Float_t param) |
930 | { |
931 | // Set parameter "Hard pi0 boundary" i to a value param |
932 | if(i>1 || i<0) |
933 | Error("SetParameterPi0Boundary","Invalid parameter number: %d",i); |
934 | else |
935 | (*fParameters)(15,i) = param ; |
936 | } |
937 | |
938 | //_____________________________________________________________________________ |
939 | void AliPHOSPIDv1::SetParameterTimeGate(Int_t i, Float_t gate) |
940 | { |
941 | // Set the parameter TimeGate depending on Purity-Efficiency point i |
942 | if (i>2 || i<0) |
943 | Error("SetParameterTimeGate","Invalid Efficiency-Purity choice %d",i); |
944 | else |
945 | (*fParameters)(3,i)= gate ; |
946 | } |
947 | |
948 | //_____________________________________________________________________________ |
949 | void AliPHOSPIDv1::SetParameterToCalculateEllipse(TString particle, TString param, Int_t i, Float_t par) |
950 | { |
951 | // Set the parameter "i" that is needed to calculate the ellipse |
952 | // parameter "param" for a particle "particle" |
953 | |
954 | particle.ToLower(); |
955 | param. ToLower(); |
956 | Int_t p= -1; |
957 | Int_t offset=0; |
958 | |
959 | if (particle == "photon") offset=0; |
960 | else if (particle == "pi0") offset=5; |
961 | else |
962 | Error("SetParameterToCalculateEllipse","Wrong particle name: %s (choose from pi0/photon)\n",particle.Data()); |
963 | |
964 | if (param.Contains("a")) p=4+offset; |
965 | else if(param.Contains("b")) p=5+offset; |
966 | else if(param.Contains("c")) p=6+offset; |
967 | else if(param.Contains("x0"))p=7+offset; |
968 | else if(param.Contains("y0"))p=8+offset; |
969 | if((i>4)||(i<0)) |
970 | Error("SetEllipseParameter", "No parameter with index %d", i) ; |
971 | else if(p==-1) |
972 | Error("SetEllipseParameter", "No parameter with name %s", param.Data() ) ; |
973 | else |
974 | (*fParameters)(p,i) = par ; |
975 | } |
976 | |
977 | //____________________________________________________________________________ |
978 | void AliPHOSPIDv1::Unload() |
979 | { |
980 | AliPHOSGetter * gime = AliPHOSGetter::Instance() ; |
981 | gime->PhosLoader()->UnloadRecPoints() ; |
982 | gime->PhosLoader()->UnloadTracks() ; |
983 | gime->PhosLoader()->UnloadRecParticles() ; |
984 | } |
985 | |
986 | //____________________________________________________________________________ |
90cceaf6 |
987 | void AliPHOSPIDv1::WriteRecParticles() |
88cb7938 |
988 | { |
989 | |
990 | AliPHOSGetter *gime = AliPHOSGetter::Instance() ; |
991 | |
992 | TClonesArray * recParticles = gime->RecParticles() ; |
993 | recParticles->Expand(recParticles->GetEntriesFast() ) ; |
994 | TTree * treeP = gime->TreeP(); |
995 | |
996 | //First rp |
997 | Int_t bufferSize = 32000 ; |
998 | TBranch * rpBranch = treeP->Branch("PHOSRP",&recParticles,bufferSize); |
999 | rpBranch->SetTitle(BranchName()); |
1000 | |
1001 | rpBranch->Fill() ; |
1002 | |
1003 | gime->WriteRecParticles("OVERWRITE"); |
1004 | gime->WritePID("OVERWRITE"); |
1005 | } |
1006 | |