]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PHOS/AliPHOSPIDv1.cxx
Enable creation of fast rec points for ITS, when input argument for ITS = 2.
[u/mrichter/AliRoot.git] / PHOS / AliPHOSPIDv1.cxx
CommitLineData
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:
26// -Bit 0 to 2: bit set if RCPV > fCpvEmcDistance (each bit corresponds
27// to a different efficiency-purity point of the photon identification)
28// -Bit 3 to 5: bit set if TOF < fTimeGate (each bit corresponds
29// to a different efficiency-purity point of the photon identification)
30// -Bit 6 to 9: bit set if Principal Components are
31// inside an ellipse defined by fX_center, fY_center, fA, fB, fAngle
32// (each bit corresponds to a different efficiency-purity point of the
33// photon identification)
a4e98857 34//
7acf6008 35//
a4e98857 36// use case:
f0a4c9e9 37// root [0] AliPHOSPIDv1 * p = new AliPHOSPIDv1("galice1.root","v1")
a4e98857 38// Warning in <TDatabasePDG::TDatabasePDG>: object already instantiated
148b2bba 39// // reading headers from file galice1.root and create RecParticles with title v1
40 // TrackSegments and RecPoints with title "v1" are used
7acf6008 41// // set file name for the branch RecParticles
f0a4c9e9 42// root [1] p->ExecuteTask("deb all time")
7acf6008 43// // available options
44// // "deb" - prints # of reconstructed particles
45// // "deb all" - prints # and list of RecParticles
46// // "time" - prints benchmarking results
47//
f0a4c9e9 48// root [2] AliPHOSPIDv1 * p2 = new AliPHOSPIDv1("galice1.root","v1","v0")
148b2bba 49// Warning in <TDatabasePDG::TDatabasePDG>: object already instantiated
50// // reading headers from file galice1.root and create RecParticles with title v1
51 // RecPoints and TrackSegments with title "v0" are used
f0a4c9e9 52// root [3] p2->ExecuteTask()
53//
54// There are two possible principal files available to do the analysis.
55// One for energy ranges from 0.5 to 5 GeV, the default one, and another
56// one from 0.5 to 100 GeV. To do the analysis with one of this files,
57// Use case
58// root [0] AliPHOSPIDv1 p("galice.root")
59// Warning in <TDatabasePDG::TDatabasePDG>: object already instantiated
60// root [1] p.SetParameters("Wide energy range") (0.5-100 GeV)
61// root [2] p.ExecuteTask("deb")
62// or
63// root [0] AliPHOSPIDv1 p("galice.root")
64// Warning in <TDatabasePDG::TDatabasePDG>: object already instantiated
65// root [1] p.SetParameters("Small energy range") (0.5-5 GeV)
66// or
67// p.SetParameters("Default") (0.5-5 GeV)
68// root [2] p.ExecuteTask("deb")
69
7acf6008 70//*-- Author: Yves Schutz (SUBATECH) & Gines Martinez (SUBATECH) &
148b2bba 71// Gustavo Conesa April 2002
6ad0bfa0 72
73// --- ROOT system ---
7acf6008 74#include "TROOT.h"
75#include "TTree.h"
76#include "TFile.h"
77#include "TF2.h"
78#include "TFormula.h"
79#include "TCanvas.h"
80#include "TFolder.h"
81#include "TSystem.h"
82#include "TBenchmark.h"
148b2bba 83#include "TMatrixD.h"
84#include "TPrincipal.h"
85#include "TSystem.h"
86
6ad0bfa0 87// --- Standard library ---
88
de9ec31b 89#include <iostream.h>
148b2bba 90#include <fstream.h>
7acf6008 91#include <iomanip.h>
6ad0bfa0 92
93// --- AliRoot header files ---
94
7acf6008 95#include "AliRun.h"
96#include "AliGenerator.h"
97#include "AliPHOS.h"
26d4b141 98#include "AliPHOSPIDv1.h"
7acf6008 99#include "AliPHOSClusterizerv1.h"
6ad0bfa0 100#include "AliPHOSTrackSegment.h"
7acf6008 101#include "AliPHOSTrackSegmentMakerv1.h"
6ad0bfa0 102#include "AliPHOSRecParticle.h"
7b7c1533 103#include "AliPHOSGeometry.h"
104#include "AliPHOSGetter.h"
6ad0bfa0 105
26d4b141 106ClassImp( AliPHOSPIDv1)
6ad0bfa0 107
1cb7c1ee 108//____________________________________________________________________________
109AliPHOSPIDv1::AliPHOSPIDv1():AliPHOSPID()
110{
a4e98857 111 // default ctor
148b2bba 112
8d0f3f77 113 InitParameters() ;
7acf6008 114}
115
116//____________________________________________________________________________
148b2bba 117AliPHOSPIDv1::AliPHOSPIDv1(const char * headerFile,const char * name, const char * from) : AliPHOSPID(headerFile, name)
e0ed2e49 118
119
7acf6008 120{
a4e98857 121 //ctor with the indication on where to look for the track segments
7b7c1533 122
8d0f3f77 123 InitParameters() ;
124
148b2bba 125 if ( from == 0 )
126 fFrom = name ;
127 else
128 fFrom = from ;
8d0f3f77 129
2bd5457f 130 Init() ;
7acf6008 131
132}
7b7c1533 133
7acf6008 134//____________________________________________________________________________
135AliPHOSPIDv1::~AliPHOSPIDv1()
136{
a496c46c 137
138 delete [] fX ; // Principal input
148b2bba 139 delete [] fP ; // Principal components
140 delete fParameters ; // Matrix of Parameters
8d0f3f77 141
142 AliPHOSGetter * gime = AliPHOSGetter::GetInstance() ;
143
144 // remove the task from the folder list
145 gime->RemoveTask("P",GetName()) ;
146 TString name(GetName()) ;
147 name.ReplaceAll("pid", "clu") ;
148 gime->RemoveTask("C",name) ;
149
150 // remove the data from the folder list
151 name = GetName() ;
152 name.Remove(name.Index(":")) ;
153 gime->RemoveObjects("RE", name) ; // EMCARecPoints
154 gime->RemoveObjects("RC", name) ; // CPVRecPoints
155 gime->RemoveObjects("T", name) ; // TrackSegments
156 gime->RemoveObjects("P", name) ; // RecParticles
157
158 // Delete gAlice
159 gime->CloseFile() ;
160
7acf6008 161}
2bd5457f 162
a496c46c 163//____________________________________________________________________________
164const TString AliPHOSPIDv1::BranchName() const
165{
166 TString branchName(GetName() ) ;
167 branchName.Remove(branchName.Index(Version())-1) ;
168 return branchName ;
169}
170
148b2bba 171//____________________________________________________________________________
172void AliPHOSPIDv1::Init()
173{
174 // Make all memory allocations that are not possible in default constructor
175 // Add the PID task to the list of PHOS tasks
a496c46c 176
148b2bba 177 if ( strcmp(GetTitle(), "") == 0 )
178 SetTitle("galice.root") ;
8d0f3f77 179
148b2bba 180 AliPHOSGetter * gime = AliPHOSGetter::GetInstance(GetTitle(), fFrom.Data()) ;
181
a496c46c 182 gime->SetRecParticlesTitle(BranchName()) ;
148b2bba 183 if ( gime == 0 ) {
184 cerr << "ERROR: AliPHOSPIDv1::Init -> Could not obtain the Getter object !" << endl ;
185 return ;
186 }
a496c46c 187
148b2bba 188 gime->PostPID(this) ;
189 // create a folder on the white board //YSAlice/WhiteBoard/RecParticles/PHOS/recparticlesName
a496c46c 190 gime->PostRecParticles(BranchName()) ;
148b2bba 191
192}
8d0f3f77 193
194//____________________________________________________________________________
195void AliPHOSPIDv1::InitParameters()
196{
197 fFrom = "" ;
198 fHeaderFileName = GetTitle() ;
199 TString name(GetName()) ;
200 if (name.IsNull())
201 name = "Default" ;
202 fTrackSegmentsTitle = name ;
203 fRecPointsTitle = name ;
204 fRecParticlesTitle = name ;
205 name.Append(":") ;
206 name.Append(Version()) ;
207 SetName(name) ;
208 fRecParticlesInRun = 0 ;
209 fOptFileName = "Default" ;
210 fNEvent = 0 ;
211 fClusterizer = 0 ;
212 fTSMaker = 0 ;
213 fRecParticlesInRun = 0 ;
214 SetParameters(fOptFileName) ; // fill the parameters matrix from parameters file
215}
216
69183710 217//____________________________________________________________________________
148b2bba 218Double_t AliPHOSPIDv1::GetCpvtoEmcDistanceCut(const Float_t Cluster_En, const TString Eff_Pur)const
219{
220 // Get CpvtoEmcDistanceCut parameter depending on the cluster energy and
221 // Purity-Efficiency point (possible options "HIGH EFFICIENCY"
222 // "MEDIUM EFFICIENCY" "LOW EFFICIENCY" and 3 more options changing
223 // EFFICIENCY by PURITY)
224
f0a4c9e9 225 Int_t cluster = GetClusterOption(Cluster_En,kTRUE);
226 Int_t eff_pur = GetEffPurOption(Eff_Pur);
148b2bba 227
f0a4c9e9 228 if((cluster!= -1)||(eff_pur != -1))
148b2bba 229 return (*fParameters)(cluster,eff_pur) ;
f0a4c9e9 230
148b2bba 231}
232//____________________________________________________________________________
233
234Double_t AliPHOSPIDv1::GetTimeGate(const Float_t Cluster_En, const TString Eff_Pur) const
235{
236 // Get TimeGate parameter depending on the cluster energy and
237 // Purity-Efficiency point (possible options "HIGH EFFICIENCY"
238 // "MEDIUM EFFICIENCY" "LOW EFFICIENCY" and 3 more options changing
239 // EFFICIENCY by PURITY)
148b2bba 240
f0a4c9e9 241 Int_t cluster = GetClusterOption( Cluster_En,kFALSE);
242 Int_t eff_pur = GetEffPurOption(Eff_Pur);
243
244 if((cluster!= -1)||(eff_pur != -1))
245 return (*fParameters)(cluster+3+fCluster,eff_pur) ;
148b2bba 246
148b2bba 247}
248//_____________________________________________________________________________
7acf6008 249Float_t AliPHOSPIDv1::GetDistance(AliPHOSEmcRecPoint * emc,AliPHOSRecPoint * cpv, Option_t * Axis)const
69183710 250{
251 // Calculates the distance between the EMC RecPoint and the PPSD RecPoint
148b2bba 252
7b7c1533 253 const AliPHOSGeometry * geom = AliPHOSGetter::GetInstance()->PHOSGeometry() ;
69183710 254 TVector3 vecEmc ;
7acf6008 255 TVector3 vecCpv ;
148b2bba 256 if(cpv){
257 emc->GetLocalPosition(vecEmc) ;
258 cpv->GetLocalPosition(vecCpv) ;
259 if(emc->GetPHOSMod() == cpv->GetPHOSMod()){
260 // Correct to difference in CPV and EMC position due to different distance to center.
261 // we assume, that particle moves from center
262 Float_t dCPV = geom->GetIPtoOuterCoverDistance();
263 Float_t dEMC = geom->GetIPtoCrystalSurface() ;
264 dEMC = dEMC / dCPV ;
265 vecCpv = dEMC * vecCpv - vecEmc ;
266 if (Axis == "X") return vecCpv.X();
267 if (Axis == "Y") return vecCpv.Y();
268 if (Axis == "Z") return vecCpv.Z();
269 if (Axis == "R") return vecCpv.Mag();
7acf6008 270 }
148b2bba 271
272 return 100000000 ;
273 }
7acf6008 274 return 100000000 ;
69183710 275}
276
6ad0bfa0 277//____________________________________________________________________________
148b2bba 278Int_t AliPHOSPIDv1::GetPrincipalSign(Double_t* P, Int_t cluster, Int_t eff_pur )const
279{
280 //This method gives if the PCA of the particle are inside a defined ellipse
281
282 // Get the parameters that define the ellipse stored in the
283 // fParameters matrix.
284 Double_t X_center = (*fParameters)(cluster+6,eff_pur) ;
285 Double_t Y_center = (*fParameters)(cluster+9,eff_pur) ;
286 Double_t A = (*fParameters)(cluster+12,eff_pur) ;
287 Double_t B = (*fParameters)(cluster+15,eff_pur) ;
288 Double_t Angle = (*fParameters)(cluster+18,eff_pur) ;
289
290 Int_t prinsign;
291 Double_t Dx = 0. ;
292 Double_t Delta = 0. ;
293 Double_t Y = 0. ;
294 Double_t Y_1 = 0. ;
295 Double_t Y_2 = 0. ;
296 Double_t Pi = TMath::Pi() ;
297 Double_t Cos_Theta = TMath::Cos(Pi*Angle/180.) ;
298 Double_t Sin_Theta = TMath::Sin(Pi*Angle/180.) ;
299
300 Dx = P[0] - X_center ;
301 Delta = 4.*A*A*A*B* (A*A*Cos_Theta*Cos_Theta
302 + B*B*Sin_Theta*Sin_Theta - Dx*Dx) ;
303 if (Delta < 0.)
304 {prinsign=0;}
305
306 else if (Delta == 0.)
307 {
308 Y = Cos_Theta*Sin_Theta*(A*A - B*B)*Dx /
309 (A*A*Cos_Theta*Cos_Theta + B*B*Sin_Theta*Sin_Theta) ;
310 Y += Y_center ;
311 if(P[1]==Y )
312 {prinsign=1;}
313 else
314 {prinsign=0;}
315 }
316 else
317 {
318 Y_1 = (Cos_Theta*Sin_Theta*(A*A - B*B) *Dx +
319 TMath::Sqrt(Delta)/2.)/(A*A*Cos_Theta*Cos_Theta +
320 B*B*Sin_Theta*Sin_Theta) ;
321 Y_2 = (Cos_Theta*Sin_Theta*(A*A - B*B) *Dx -
322 TMath::Sqrt(Delta)/2.)/(A*A*Cos_Theta*Cos_Theta
323 + B*B*Sin_Theta*Sin_Theta) ;
324 Y_1 += Y_center ;
325 Y_2 += Y_center ;
326 if ((P[1]<=Y_1) && (P[1]>=Y_2))
327 {prinsign=1;}
328 else
329 {prinsign=0;}
330 }
331 return prinsign;
332}
333
334//____________________________________________________________________________
e0ed2e49 335void AliPHOSPIDv1::SetPrincipalFileOptions(TString OptFileName) {
f0a4c9e9 336 fOptFileName = OptFileName ;
e0ed2e49 337
f0a4c9e9 338 if(fOptFileName.Contains("Small energy range")||fOptFileName.Contains("Default")){
e0ed2e49 339 fFileName = "$ALICE_ROOT/PHOS/PCA8pa15_0.5-5.root" ;
340 fFileNamePar = gSystem->ExpandPathName("$ALICE_ROOT/PHOS/Parameters_0.5_5.dat");
f0a4c9e9 341 fCluster = 0 ;
e0ed2e49 342 }
343
f0a4c9e9 344 else if(fOptFileName.Contains("Wide energy range")){
e0ed2e49 345 fFileName = "$ALICE_ROOT/PHOS/PCA8pa15_0.5-100.root" ;
346 fFileNamePar = gSystem->ExpandPathName("$ALICE_ROOT/PHOS/Parameters_0.5_100.dat");
f0a4c9e9 347 fCluster = 3 ;
348 }
349 else{
350 cout<<" Invalid energy range option "<<endl;
351 cout<<" Possible options : Default (0.5-5 GeV) "<<endl;
352 cout<<" Small energy range (0.5-5 GeV) "<<endl;
353 cout<<" Wide energy range (0.5-100 GeV) "<<endl;
e0ed2e49 354 }
355}
356
357//____________________________________________________________________________
358void AliPHOSPIDv1::SetEllipseParameters(Float_t Cluster_En, TString Eff_Pur, Float_t x, Float_t y,Float_t a, Float_t b,Float_t angle)
148b2bba 359{
360
361 // Set all ellipse parameters depending on the cluster energy and
362 // Purity-Efficiency point (possible options "HIGH EFFICIENCY"
363 // "MEDIUM EFFICIENCY" "LOW EFFICIENCY" and 3 more options changing
364 // EFFICIENCY by PURITY)
e0ed2e49 365
f0a4c9e9 366 Int_t cluster = GetClusterOption( Cluster_En, kFALSE);
367 Int_t eff_pur = GetEffPurOption(Eff_Pur);
e0ed2e49 368
f0a4c9e9 369 if((cluster!= -1)||(eff_pur != -1)){
370 (*fParameters)(cluster+6 +fCluster,eff_pur) = x ;
371 (*fParameters)(cluster+9 +fCluster,eff_pur) = y ;
372 (*fParameters)(cluster+12+fCluster,eff_pur) = a ;
373 (*fParameters)(cluster+15+fCluster,eff_pur) = b ;
374 (*fParameters)(cluster+18+fCluster,eff_pur) = angle ;
148b2bba 375 }
f0a4c9e9 376
148b2bba 377}
378//__________________________________________________________________________
379void AliPHOSPIDv1::SetEllipseXCenter(Float_t Cluster_En, TString Eff_Pur, Float_t x)
380{
381 // Set the ellipse parameter x_center depending on the custer energy and
382 // Purity-Efficiency point (possible options "HIGH EFFICIENCY"
383 // "MEDIUM EFFICIENCY" "LOW EFFICIENCY" and 3 more options changing
384 // EFFICIENCY by PURITY)
148b2bba 385
f0a4c9e9 386 Int_t cluster = GetClusterOption( Cluster_En, kFALSE);
387 Int_t eff_pur = GetEffPurOption(Eff_Pur);
148b2bba 388
f0a4c9e9 389 if((cluster!= -1)||(eff_pur != -1))
390 (*fParameters)(cluster+6+fCluster,eff_pur) = x ;
148b2bba 391
148b2bba 392}
393//_________________________________________________________________________
394void AliPHOSPIDv1::SetEllipseYCenter(Float_t Cluster_En, TString Eff_Pur, Float_t y)
395{
396
397 // Set the ellipse parameter y_center depending on the cluster energy and
398 // Purity-Efficiency point (possible options "HIGH EFFICIENCY"
399 // "MEDIUM EFFICIENCY" "LOW EFFICIENCY" and 3 more options changing
400 // EFFICIENCY by PURITY)
401
f0a4c9e9 402 Int_t cluster = GetClusterOption( Cluster_En, kFALSE);
403 Int_t eff_pur = GetEffPurOption(Eff_Pur);
148b2bba 404
f0a4c9e9 405 if((cluster!= -1)||(eff_pur != -1))
406 (*fParameters)(cluster+9+fCluster,eff_pur) = y ;
148b2bba 407
148b2bba 408}
409//_________________________________________________________________________
410void AliPHOSPIDv1::SetEllipseAParameter(Float_t Cluster_En, TString Eff_Pur, Float_t a)
411{
412 // Set the ellipse parameter a depending on the cluster energy and
413 // Purity-Efficiency point (possible options "HIGH EFFICIENCY"
414 // "MEDIUM EFFICIENCY" "LOW EFFICIENCY" and 3 more options changing
415 // EFFICIENCY by PURITY)
f0a4c9e9 416
417 Int_t cluster = GetClusterOption(Cluster_En,kFALSE);
418 Int_t eff_pur = GetEffPurOption(Eff_Pur);
148b2bba 419
f0a4c9e9 420 if((cluster!= -1)||(eff_pur != -1))
421 (*fParameters)(cluster+12+fCluster,eff_pur) = a ;
148b2bba 422
148b2bba 423}
424//________________________________________________________________________
425void AliPHOSPIDv1::SetEllipseBParameter(Float_t Cluster_En, TString Eff_Pur, Float_t b)
426{
427 // Set the ellipse parameter b depending on the cluster energy and
428 // Purity-Efficiency point (possible options "HIGH EFFICIENCY"
429 // "MEDIUM EFFICIENCY" "LOW EFFICIENCY" and 3 more options changing
430 // EFFICIENCY by PURITY)
148b2bba 431
f0a4c9e9 432 Int_t cluster = GetClusterOption(Cluster_En,kFALSE);
433 Int_t eff_pur = GetEffPurOption(Eff_Pur);
434
435 if((cluster!= -1)||(eff_pur != -1))
436 (*fParameters)(cluster+15+fCluster,eff_pur) = b ;
e0ed2e49 437
148b2bba 438}
439//________________________________________________________________________
440void AliPHOSPIDv1::SetEllipseAngle(Float_t Cluster_En, TString Eff_Pur, Float_t angle)
441{
442
443 // Set the ellipse parameter angle depending on the cluster energy and
444 // Purity-Efficiency point (possible options "HIGH EFFICIENCY"
445 // "MEDIUM EFFICIENCY" "LOW EFFICIENCY" and 3 more options changing
446 // EFFICIENCY by PURITY)
f0a4c9e9 447
448 Int_t cluster = GetClusterOption(Cluster_En,kFALSE) ;
449 Int_t eff_pur = GetEffPurOption(Eff_Pur);
450
451 if((cluster!= -1)||(eff_pur != -1))
452 (*fParameters)(cluster+18+fCluster,eff_pur) = angle ;
148b2bba 453
148b2bba 454}
455//_____________________________________________________________________________
456void AliPHOSPIDv1::SetCpvtoEmcDistanceCut(Float_t Cluster_En, TString Eff_Pur, Float_t cut)
457{
458
459 // Set the parameter Cpvto EmcDistanceCut depending on the cluster energy and
460 // Purity-Efficiency point (possible options "HIGH EFFICIENCY"
461 // "MEDIUM EFFICIENCY" "LOW EFFICIENCY" and 3 more options changing
462 // EFFICIENCY by PURITY)
463
f0a4c9e9 464 Int_t cluster = GetClusterOption(Cluster_En,kTRUE);
465 Int_t eff_pur = GetEffPurOption(Eff_Pur);
148b2bba 466
f0a4c9e9 467 if((cluster!= -1)||(eff_pur != -1))
148b2bba 468 (*fParameters)(cluster,eff_pur) = cut ;
f0a4c9e9 469
470}
471//_____________________________________________________________________________
472void AliPHOSPIDv1::SetTimeGate(Float_t Cluster_En, TString Eff_Pur, Float_t gate)
473{
a496c46c 474
f0a4c9e9 475 // Set the parameter TimeGate depending on the cluster energy and
476 // Purity-Efficiency point (possible options "HIGH EFFICIENCY"
477 // "MEDIUM EFFICIENCY" "LOW EFFICIENCY" and 3 more options changing
478 // EFFICIENCY by PURITY)
479
480 Int_t cluster = GetClusterOption(Cluster_En,kFALSE);
481 Int_t eff_pur = GetEffPurOption(Eff_Pur);
482
483 if((cluster!= -1)||(eff_pur != -1))
484 (*fParameters)(cluster+3+fCluster,eff_pur) = gate ;
485
486}
a496c46c 487//_____________________________________________________________________________
f0a4c9e9 488void AliPHOSPIDv1::SetParameters(TString OptFileName)
a496c46c 489{
490 // PCA : To do the Principal Components Analysis it is necessary
491 // the Principal file, which is opened here
492 fX = new double[7]; // Data for the PCA
f0a4c9e9 493 fP = new double[7]; // Eigenvalues of the PCA
e0ed2e49 494
f0a4c9e9 495 fOptFileName = OptFileName ;
496
e0ed2e49 497 SetPrincipalFileOptions(fOptFileName);
a496c46c 498 TFile f( fFileName.Data(), "read" ) ;
f0a4c9e9 499 //cout<<fFileName.Data()<<endl;
a496c46c 500 fPrincipal = dynamic_cast<TPrincipal*> (f.Get("principal")) ;
501 f.Close() ;
502
503 // Initialization of the Parameters matrix. In the File Parameters.dat
f0a4c9e9 504 // are all the parameters. These are introduced in a matrix of 21x3 or 24x3
505 // elements (depending on the principal file 21 rows for 0.5-5 GeV and 24
506 // rows for 0.5-100).
a496c46c 507 // All the parameters defined in this file are, in order of row (there are
f0a4c9e9 508 // 3 rows per parameter): CpvtoEmcDistanceCut(if the principal file is 0.5-100
509 // GeV than 6 rows), TimeGate (and the ellipse parameters), X_center, Y_center,
510 // a, b, angle. Each row of a given parameter depends on the cluster energy range
511 // (wich depends on the chosen principal file)
a496c46c 512 // Each column designes the parameters for a point in the Efficiency-Purity
f0a4c9e9 513 // of the photon identification P1(96%,63%), P2(87%,0.88%) and P3(68%,94%)
514 // for the principal file from 0.5-5 GeV and for the other one P1(95%,79%),
515 // P2(89%,90%) and P3(72%,96%)
516
517 Int_t rows = 21;
518 if(fCluster == 0)rows = 21 ;
519 if(fCluster == 3)rows = 24 ;
a496c46c 520
f0a4c9e9 521 fParameters = new TMatrixD(rows,3) ;
522 //cout<<fFileNamePar<<endl;
a496c46c 523 ifstream paramFile(fFileNamePar, ios::in) ;
524
525 Int_t i,j ;
526
f0a4c9e9 527 for(i = 0; i< rows; i++){
a496c46c 528 for(j = 0; j< 3; j++){
529 paramFile >> (*fParameters)(i,j) ;
530 }
531 }
f0a4c9e9 532 paramFile.close();
533 // fParameters->Print();
a496c46c 534}
148b2bba 535//_____________________________________________________________________________
f0a4c9e9 536Int_t AliPHOSPIDv1::GetClusterOption(const Float_t Cluster_En, const Bool_t rcpv) const
148b2bba 537{
538
f0a4c9e9 539 // Gives the cluster energy range.
540
541 Int_t cluster = -1 ;
542
543 if((fCluster == 0)){
544 if((Cluster_En > 0.3)&&(Cluster_En <= 1.0)) cluster = 0 ;
545 if((Cluster_En > 1.0)&&(Cluster_En <= 2.0)) cluster = 1 ;
546 if( Cluster_En > 2.0) cluster = 2 ;
547 }
548 else if(fCluster == 3 &&(rcpv == kFALSE)){
549 if((Cluster_En > 0.5 )&&(Cluster_En <= 20.0)) cluster = 0 ;
550 if((Cluster_En > 20.0)&&(Cluster_En <= 50.0)) cluster = 1 ;
551 if( Cluster_En > 50.0) cluster = 2 ;
552 }
553 else if(fCluster == 3 &&(rcpv == kTRUE)){
554 if((Cluster_En > 0.5 )&&(Cluster_En <= 2.0) ) cluster = 0 ;
555 if((Cluster_En > 2.0 )&&(Cluster_En <= 5.0) ) cluster = 1 ;
556 if((Cluster_En > 5.0 )&&(Cluster_En <= 10.0)) cluster = 2 ;
557 if((Cluster_En > 10.0)&&(Cluster_En <= 20.0)) cluster = 3 ;
558 if((Cluster_En > 20.0)&&(Cluster_En <= 30.0)) cluster = 4 ;
559 if( Cluster_En > 30.0) cluster = 5 ;
560 }
561 else {
562 cluster = -1 ;
563 cout<<"Invalid Energy option"<<endl;
564 }
565
566 return cluster;
567}
568//____________________________________________________________________________
569Int_t AliPHOSPIDv1::GetEffPurOption(const TString Eff_Pur) const
570{
571
572 // Looks for the Purity-Efficiency point (possible options "HIGH EFFICIENCY"
148b2bba 573 // "MEDIUM EFFICIENCY" "LOW EFFICIENCY" and 3 more options changing
574 // EFFICIENCY by PURITY)
575
148b2bba 576 Int_t eff_pur = -1 ;
577
f0a4c9e9 578 if(Eff_Pur.Contains("HIGH EFFICIENCY") ||Eff_Pur.Contains("LOW PURITY") )
579 eff_pur = 0 ;
580 else if(Eff_Pur.Contains("MEDIUM EFFICIENCY") ||Eff_Pur.Contains("MEDIUM PURITY") )
581 eff_pur = 1 ;
582 else if(Eff_Pur.Contains("LOW EFFICIENCY")||Eff_Pur.Contains("HIGH PURITY") )
583 eff_pur = 2 ;
148b2bba 584 else{
f0a4c9e9 585 eff_pur = -1;
586 cout<<"Invalid Efficiency-Purity option"<<endl;
587 cout<<"Possible options: HIGH EFFICIENCY = LOW PURITY"<<endl;
588 cout<<" MEDIUM EFFICIENCY = MEDIUM PURITY"<<endl;
589 cout<<" LOW EFFICIENCY = HIGH PURITY"<<endl;
148b2bba 590 }
f0a4c9e9 591
592 return eff_pur;
593}
148b2bba 594//____________________________________________________________________________
595
7acf6008 596void AliPHOSPIDv1::Exec(Option_t * option)
6ad0bfa0 597{
f035f6ce 598 //Steering method
9688c1dd 599
bf8f1fbd 600 if( strcmp(GetName(), "")== 0 )
7acf6008 601 Init() ;
bf8f1fbd 602
603 if(strstr(option,"tim"))
7acf6008 604 gBenchmark->Start("PHOSPID");
bf8f1fbd 605
606 if(strstr(option,"print")) {
7b7c1533 607 Print("") ;
608 return ;
bf8f1fbd 609 }
9688c1dd 610
148b2bba 611 //cout << gDirectory->GetName() << endl ;
612
bf8f1fbd 613 gAlice->GetEvent(0) ;
148b2bba 614
7b7c1533 615 //check, if the branch with name of this" already exits?
8d0f3f77 616 if (gAlice->TreeR()) {
617 TObjArray * lob = (TObjArray*)gAlice->TreeR()->GetListOfBranches() ;
618 TIter next(lob) ;
619 TBranch * branch = 0 ;
620 Bool_t phospidfound = kFALSE, pidfound = kFALSE ;
621
622 TString taskName(GetName()) ;
623 taskName.Remove(taskName.Index(Version())-1) ;
624
625 while ( (branch = (TBranch*)next()) && (!phospidfound || !pidfound) ) {
626 if ( (strcmp(branch->GetName(), "PHOSPID")==0) && (strcmp(branch->GetTitle(), taskName.Data())==0) )
627 phospidfound = kTRUE ;
628
629 else if ( (strcmp(branch->GetName(), "AliPHOSPID")==0) && (strcmp(branch->GetTitle(), taskName.Data())==0) )
630 pidfound = kTRUE ;
631 }
7b7c1533 632
8d0f3f77 633 if ( phospidfound || pidfound ) {
634 cerr << "WARNING: AliPHOSPIDv1::Exec -> RecParticles and/or PIDtMaker branch with name "
635 << taskName.Data() << " already exits" << endl ;
636 return ;
637 }
7b7c1533 638 }
9688c1dd 639
7b7c1533 640 Int_t nevents = (Int_t) gAlice->TreeE()->GetEntries() ;
641 Int_t ievent ;
148b2bba 642 AliPHOSGetter * gime = AliPHOSGetter::GetInstance() ;
7b7c1533 643 for(ievent = 0; ievent < nevents; ievent++){
a496c46c 644 gime->Event(ievent,"R") ;
148b2bba 645
7acf6008 646 MakeRecParticles() ;
9688c1dd 647
7b7c1533 648 WriteRecParticles(ievent);
9688c1dd 649
7acf6008 650 if(strstr(option,"deb"))
651 PrintRecParticles(option) ;
94de8339 652
653 //increment the total number of rec particles per run
a496c46c 654 fRecParticlesInRun += gime->RecParticles(BranchName())->GetEntriesFast() ;
94de8339 655
7acf6008 656 }
9688c1dd 657
7acf6008 658 if(strstr(option,"tim")){
659 gBenchmark->Stop("PHOSPID");
660 cout << "AliPHOSPID:" << endl ;
661 cout << " took " << gBenchmark->GetCpuTime("PHOSPID") << " seconds for PID "
7b7c1533 662 << gBenchmark->GetCpuTime("PHOSPID")/nevents << " seconds per event " << endl ;
7acf6008 663 cout << endl ;
664 }
9688c1dd 665
7b7c1533 666}
667
7acf6008 668//____________________________________________________________________________
669void AliPHOSPIDv1::MakeRecParticles(){
670
b2a60966 671 // Makes a RecParticle out of a TrackSegment
148b2bba 672
7b7c1533 673 AliPHOSGetter * gime = AliPHOSGetter::GetInstance() ;
148b2bba 674 TObjArray * emcRecPoints = gime->EmcRecPoints(fFrom) ;
675 TObjArray * cpvRecPoints = gime->CpvRecPoints(fFrom) ;
676 TClonesArray * trackSegments = gime->TrackSegments(fFrom) ;
677 if ( !emcRecPoints || !cpvRecPoints || !trackSegments ) {
678 cerr << "ERROR: AliPHOSPIDv1::MakeRecParticles -> RecPoints or TrackSegments with name "
679 << fFrom << " not found ! " << endl ;
680 abort() ;
681 }
a496c46c 682 TClonesArray * recParticles = gime->RecParticles(BranchName()) ;
01a599c9 683 recParticles->Clear();
148b2bba 684
685
7b7c1533 686 TIter next(trackSegments) ;
7acf6008 687 AliPHOSTrackSegment * ts ;
6ad0bfa0 688 Int_t index = 0 ;
09fc14a0 689 AliPHOSRecParticle * rp ;
7acf6008 690
7acf6008 691 while ( (ts = (AliPHOSTrackSegment *)next()) ) {
fad3e5b9 692
7b7c1533 693 new( (*recParticles)[index] ) AliPHOSRecParticle() ;
694 rp = (AliPHOSRecParticle *)recParticles->At(index) ;
f0a4c9e9 695 rp->SetTrackSegment(index) ;
9688c1dd 696 rp->SetIndexInList(index) ;
148b2bba 697
7acf6008 698 AliPHOSEmcRecPoint * emc = 0 ;
699 if(ts->GetEmcIndex()>=0)
7b7c1533 700 emc = (AliPHOSEmcRecPoint *) emcRecPoints->At(ts->GetEmcIndex()) ;
fad3e5b9 701
7acf6008 702 AliPHOSRecPoint * cpv = 0 ;
703 if(ts->GetCpvIndex()>=0)
7b7c1533 704 cpv = (AliPHOSRecPoint *) cpvRecPoints->At(ts->GetCpvIndex()) ;
fad3e5b9 705
7acf6008 706 //set momentum and energy first
707 Float_t e = emc->GetEnergy() ;
9688c1dd 708 TVector3 dir = GetMomentumDirection(emc,cpv) ;
7acf6008 709 dir.SetMag(e) ;
710
711 rp->SetMomentum(dir.X(),dir.Y(),dir.Z(),e) ;
712 rp->SetCalcMass(0);
fad3e5b9 713
148b2bba 714 // Now set type (reconstructed) of the particle
715
716 // Choose the cluster energy range
f0a4c9e9 717 // Ellipse and rcpv cut in function of the cluster energy
718 Int_t clusterrcpv = GetClusterOption(e,kTRUE) ;
719 Int_t cluster = GetClusterOption(e,kFALSE) ;
720 if((cluster== -1)||(clusterrcpv == -1)) continue ;
148b2bba 721
722 // Loop of Efficiency-Purity (the 3 points of purity or efficiency are taken
723 // into account to set the particle identification)
724 for(Int_t eff_pur = 0; eff_pur < 3 ; eff_pur++){
f0a4c9e9 725
726 // Looking at the CPV detector. If RCPV greater than CpvEmcDistance, 1st,
727 // 2nd or 3rd bit (depending on the efficiency-purity point )is set to 1 .
728 if(GetDistance(emc, cpv, "R") > (*fParameters)(clusterrcpv,eff_pur) )
148b2bba 729 rp->SetPIDBit(eff_pur) ;
f0a4c9e9 730
731 // Looking the TOF. If TOF smaller than gate, 4th, 5th or 6th
732 // bit (depending on the efficiency-purity point )is set to 1
733 if(emc->GetTime()< (*fParameters)(cluster+3+fCluster,eff_pur))
148b2bba 734 rp->SetPIDBit(eff_pur+3) ;
735
f0a4c9e9 736 // Looking PCA. Define and calculate the data (X), introduce in the function
737 // X2P that gives the components (P).
738 Float_t Spher = 0. ;
739 Float_t Emaxdtotal = 0. ;
740 Float_t lambda[2] ;
741
742 emc->GetElipsAxis(lambda) ;
743 if((lambda[0]+lambda[1])!=0) Spher=fabs(lambda[0]-lambda[1])/(lambda[0]+lambda[1]);
744
745 Emaxdtotal=emc->GetMaximalEnergy()/emc->GetEnergy();
746
747 fX[0] = lambda[0] ;
748 fX[1] = lambda[1] ;
749 fX[2] = emc->GetDispersion() ;
750 fX[3] = Spher ;
751 fX[4] = emc->GetMultiplicity() ;
752 fX[5] = Emaxdtotal ;
753 fX[6] = emc->GetCoreEnergy() ;
754
755 fPrincipal->X2P(fX,fP);
756
757 //If we are inside the ellipse, 7th, 8th or 9th
758 // bit (depending on the efficiency-purity point )is set to 1
759 if(GetPrincipalSign(fP,cluster+fCluster,eff_pur) == 1)
760 rp->SetPIDBit(eff_pur+6) ;
761
762 }
148b2bba 763
e0ed2e49 764 rp->Name(); //If photon sets the particle pdg name to gamma
e747b8da 765 rp->SetProductionVertex(0,0,0,0);
766 rp->SetFirstMother(-1);
767 rp->SetLastMother(-1);
768 rp->SetFirstDaughter(-1);
769 rp->SetLastDaughter(-1);
770 rp->SetPolarisation(0,0,0);
6ad0bfa0 771 index++ ;
772 }
7acf6008 773
6ad0bfa0 774}
775
09fc14a0 776//____________________________________________________________________________
a496c46c 777void AliPHOSPIDv1:: Print()
09fc14a0 778{
b2a60966 779 // Print the parameters used for the particle type identification
f035f6ce 780 cout << "=============== AliPHOSPID1 ================" << endl ;
781 cout << "Making PID "<< endl ;
782 cout << " Headers file: " << fHeaderFileName.Data() << endl ;
783 cout << " RecPoints branch title: " << fRecPointsTitle.Data() << endl ;
7b7c1533 784 cout << " TrackSegments Branch title: " << fTrackSegmentsTitle.Data() << endl ;
785 cout << " RecParticles Branch title " << fRecParticlesTitle.Data() << endl;
f0a4c9e9 786 cout << " Pricipal analysis file " << fFileName.Data() << endl;
e0ed2e49 787 cout << " Matrix of Parameters: "<<endl;
f0a4c9e9 788 cout << " Name of parameters file "<<fFileNamePar.Data() << endl ;
e0ed2e49 789 cout << " 3 Columns [High Eff-Low Pur,Medium Eff-Pur, Low Eff-High Pur]"<<endl;
f0a4c9e9 790 if(fCluster == 0)
791 cout << " 21 Rows, each 3 [ RCPV, TOF, X_Center, Y_Center, A, B, Angle ]"<<endl;
792 if(fCluster == 3)
793 cout << " 24 Rows, [ 6 RCPV, 3 TOF, 3 X_Center, 3 Y_Center, 3 A, 3 B, 3 Angle ]"<<endl;
794
795 //cout<<fOptFileName<<endl;
796 SetParameters(fOptFileName) ;
a496c46c 797 fParameters->Print() ;
f035f6ce 798 cout << "============================================" << endl ;
09fc14a0 799}
800
7acf6008 801//____________________________________________________________________________
7b7c1533 802void AliPHOSPIDv1::WriteRecParticles(Int_t event)
09fc14a0 803{
7b7c1533 804
805 AliPHOSGetter *gime = AliPHOSGetter::GetInstance() ;
a496c46c 806
807 TClonesArray * recParticles = gime->RecParticles(BranchName()) ;
bf8f1fbd 808 recParticles->Expand(recParticles->GetEntriesFast() ) ;
8d0f3f77 809 TTree * treeR = gAlice->TreeR() ;
9688c1dd 810
8d0f3f77 811 if (!treeR)
812 gAlice->MakeTree("R", fSplitFile);
813 treeR = gAlice->TreeR() ;
7acf6008 814
815 //First rp
816 Int_t bufferSize = 32000 ;
8d0f3f77 817 TBranch * rpBranch = treeR->Branch("PHOSRP",&recParticles,bufferSize);
bf8f1fbd 818 rpBranch->SetTitle(fRecParticlesTitle);
8d0f3f77 819
9688c1dd 820
7acf6008 821 //second, pid
822 Int_t splitlevel = 0 ;
823 AliPHOSPIDv1 * pid = this ;
8d0f3f77 824 TBranch * pidBranch = treeR->Branch("AliPHOSPID","AliPHOSPIDv1",&pid,bufferSize,splitlevel);
9688c1dd 825 pidBranch->SetTitle(fRecParticlesTitle.Data());
7acf6008 826
761e34c0 827 rpBranch->Fill() ;
a496c46c 828 pidBranch->Fill() ;
9688c1dd 829
8d0f3f77 830 gAlice->TreeR()->AutoSave() ;// Write(0,kOverwrite) ;
7b7c1533 831
7acf6008 832}
69183710 833
7acf6008 834//____________________________________________________________________________
9688c1dd 835TVector3 AliPHOSPIDv1::GetMomentumDirection(AliPHOSEmcRecPoint * emc, AliPHOSRecPoint * cpv)const
7acf6008 836{
837 // Calculates the momentum direction:
838 // 1. if only a EMC RecPoint, direction is given by IP and this RecPoint
9688c1dd 839 // 2. if a EMC RecPoint and CPV RecPoint, direction is given by the line through the 2 recpoints
840 // However because of the poor position resolution of PPSD the direction is always taken as if we were
7acf6008 841 // in case 1.
842
843 TVector3 dir(0,0,0) ;
844
845 TVector3 emcglobalpos ;
846 TMatrix dummy ;
847
848 emc->GetGlobalPosition(emcglobalpos, dummy) ;
849
148b2bba 850
7acf6008 851 dir = emcglobalpos ;
852 dir.SetZ( -dir.Z() ) ; // why ?
853 dir.SetMag(1.) ;
854
855 //account correction to the position of IP
856 Float_t xo,yo,zo ; //Coordinates of the origin
857 gAlice->Generator()->GetOrigin(xo,yo,zo) ;
858 TVector3 origin(xo,yo,zo);
859 dir = dir - origin ;
860
861 return dir ;
862}
863//____________________________________________________________________________
a4e98857 864void AliPHOSPIDv1::PrintRecParticles(Option_t * option)
865{
dd5c4038 866 // Print table of reconstructed particles
867
7b7c1533 868 AliPHOSGetter *gime = AliPHOSGetter::GetInstance() ;
bf8f1fbd 869
a496c46c 870 TClonesArray * recParticles = gime->RecParticles(BranchName()) ;
9688c1dd 871
01a599c9 872 cout << "AliPHOSPIDv1: event "<<gAlice->GetEvNumber() << endl ;
7b7c1533 873 cout << " found " << recParticles->GetEntriesFast() << " RecParticles " << endl ;
9688c1dd 874
7acf6008 875 if(strstr(option,"all")) { // printing found TS
876
e0ed2e49 877 cout << " PARTICLE "
7acf6008 878 << " Index " << endl ;
7acf6008 879
880 Int_t index ;
7b7c1533 881 for (index = 0 ; index < recParticles->GetEntries() ; index++) {
148b2bba 882 AliPHOSRecParticle * rp = (AliPHOSRecParticle * ) recParticles->At(index) ;
e0ed2e49 883
884 cout << setw(10) << rp->Name() << " "
885 << setw(5) << rp->GetIndexInList() << " " <<endl;
886 cout << "Type "<< rp->GetType() << endl;
7acf6008 887 }
888 cout << "-------------------------------------------" << endl ;
889 }
890
69183710 891}
892
7acf6008 893
894