]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EMCAL/AliEMCALPIDv1.cxx
default geant cuts for EMCAL's material: cutele=cutgam=100KeV
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALPIDv1.cxx
CommitLineData
c9b2f104 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
16/* $Id$ */
17
18//_________________________________________________________________________
19// Implementation version v1 of the EMCAL particle identifier
20
21//*-- Author: Yves Schutz (SUBATECH)
22//
23// --- ROOT system ---
d64c959b 24//#include "TROOT.h"
c9b2f104 25#include "TTree.h"
c9b2f104 26#include "TBenchmark.h"
c9b2f104 27#include "TSystem.h"
88cb7938 28
29 // --- Standard library ---
30
31 // --- AliRoot header files ---
af9bd3cf 32#include "AliGenerator.h"
c9b2f104 33#include "AliEMCALPIDv1.h"
c9b2f104 34#include "AliEMCALRecParticle.h"
c9b2f104 35#include "AliEMCALGetter.h"
88cb7938 36
37 ClassImp( AliEMCALPIDv1)
c9b2f104 38
39//____________________________________________________________________________
40AliEMCALPIDv1::AliEMCALPIDv1():AliEMCALPID()
41{
42 // default ctor
88cb7938 43
c9b2f104 44 InitParameters() ;
45 fDefaultInit = kTRUE ;
88cb7938 46
47}
c9b2f104 48
88cb7938 49//____________________________________________________________________________
50AliEMCALPIDv1::AliEMCALPIDv1(const AliEMCALPIDv1 & pid ):AliEMCALPID(pid)
51{
52 // ctor
53 InitParameters() ;
54 Init() ;
55
c9b2f104 56}
57
58//____________________________________________________________________________
88cb7938 59AliEMCALPIDv1::AliEMCALPIDv1(const TString alirunFileName, const TString eventFolderName):AliEMCALPID(alirunFileName, eventFolderName)
c9b2f104 60{
61 //ctor with the indication on where to look for the track segments
62
63 InitParameters() ;
c9b2f104 64 Init() ;
65 fDefaultInit = kFALSE ;
66
67}
68
69//____________________________________________________________________________
70AliEMCALPIDv1::~AliEMCALPIDv1()
71{
72 // dtor
c9b2f104 73}
74
75//____________________________________________________________________________
76const TString AliEMCALPIDv1::BranchName() const
77{
88cb7938 78
79 return GetName() ;
c9b2f104 80}
81
af9bd3cf 82//____________________________________________________________________________
83Float_t AliEMCALPIDv1::GetCalibratedEnergy(Float_t e) const
84{
85// It calibrates Energy depending on the recpoint energy.
86// The energy of the reconstructed cluster is corrected with
87// the formula A + B* E + C* E^2, whose parameters where obtained
88// through the study of the reconstructed energy distribution of
89// monoenergetic photons.
90
91 //Float_t p[]={0.,0.,0.};
92 //for (Int_t i=0; i<3; i++) p[i] = GetParameterCalibration(i);
93 Float_t enerec = e ; // p[0] + p[1]*e + p[2]*e*e;
94 return enerec ;
95
96}
97//____________________________________________________________________________
70a93198 98TVector3 AliEMCALPIDv1::GetMomentumDirection(AliEMCALRecPoint * emc)const
af9bd3cf 99{
100 // Calculates the momentum direction:
101 // direction is given by IP and this RecPoint
102
103
104 TVector3 dir(0,0,0) ;
105 TVector3 emcglobalpos ;
70a93198 106 // TMatrix dummy ;
af9bd3cf 107
70a93198 108 emc->GetGlobalPosition(emcglobalpos) ;
af9bd3cf 109
110
111 dir = emcglobalpos ;
af9bd3cf 112 // dir.SetMag(1.) ; Removed to avoid warings !!!!!!!!!!!!!! TO BE REVISED
113
114 //account correction to the position of IP
115 Float_t xo,yo,zo ; //Coordinates of the origin
116 gAlice->Generator()->GetOrigin(xo,yo,zo) ;
117 TVector3 origin(xo,yo,zo);
118 dir = dir - origin ;
119
120 return dir ;
121}
122
c9b2f104 123//____________________________________________________________________________
124void AliEMCALPIDv1::Init()
125{
126 // Make all memory allocations that are not possible in default constructor
127 // Add the PID task to the list of EMCAL tasks
128
c9b2f104 129
88cb7938 130 AliEMCALGetter * gime = AliEMCALGetter::Instance(GetTitle(), fEventFolderName.Data()) ;
c9b2f104 131
88cb7938 132 if ( !gime->PID() )
133 gime->PostPID(this) ;
c9b2f104 134}
135
136//____________________________________________________________________________
137void AliEMCALPIDv1::InitParameters()
138{
d64c959b 139 // Initialize the parameters
c9b2f104 140 fRecParticlesInRun = 0 ;
141 fNEvent = 0 ;
142 fRecParticlesInRun = 0 ;
c9b2f104 143}
144
145//____________________________________________________________________________
146
147void AliEMCALPIDv1::Exec(Option_t * option)
148{
149 //Steering method
88cb7938 150
c9b2f104 151 if(strstr(option,"tim"))
152 gBenchmark->Start("EMCALPID");
153
154 if(strstr(option,"print")) {
155 Print("") ;
156 return ;
157 }
de3f2d76 158 AliEMCALGetter * gime = AliEMCALGetter::Instance() ;
159
7b8d3392 160 if (fLastEvent == -1)
161 fLastEvent = gime->MaxEvent() - 1 ;
162 else
163 fLastEvent = TMath::Min(fLastEvent,gime->MaxEvent());
164 Int_t nEvents = fLastEvent - fFirstEvent + 1;
165
c9b2f104 166 Int_t ievent ;
167
7b8d3392 168 for (ievent = fFirstEvent; ievent <= fLastEvent; ievent++) {
af9bd3cf 169 gime->Event(ievent,"R") ;
170 MakeRecParticles() ;
171 WriteRecParticles();
172 if(strstr(option,"deb"))
173 PrintRecParticles(option) ;
174 //increment the total number of rec particles per run
de3f2d76 175 fRecParticlesInRun += gime->RecParticles()->GetEntriesFast() ;
c9b2f104 176 }
c9b2f104 177 if(strstr(option,"tim")){
178 gBenchmark->Stop("EMCALPID");
fdebddeb 179 printf("Exec: took %f seconds for PID %f seconds per event",
c9b2f104 180 gBenchmark->GetCpuTime("EMCALPID"),
7b8d3392 181 gBenchmark->GetCpuTime("EMCALPID")/nEvents) ;
c9b2f104 182 }
88cb7938 183
184 Unload();
c9b2f104 185}
186
187//____________________________________________________________________________
188void AliEMCALPIDv1::MakeRecParticles(){
189
190 // Makes a RecParticle out of a TrackSegment
191
88cb7938 192 AliEMCALGetter * gime = AliEMCALGetter::Instance() ;
193 TObjArray * aECARecPoints = gime->ECARecPoints() ;
af9bd3cf 194 if ( !aECARecPoints ) {
c9b2f104 195 Fatal("MakeRecParticles", "RecPoints or TrackSegments not found !") ;
196 }
197 TClonesArray * recParticles = gime->RecParticles() ;
198 recParticles->Clear();
199
af9bd3cf 200 TIter next(aECARecPoints) ;
70a93198 201 AliEMCALRecPoint * eca ;
c9b2f104 202 Int_t index = 0 ;
203 AliEMCALRecParticle * rp ;
70a93198 204 while ( (eca = (AliEMCALRecPoint *)next()) ) {
c9b2f104 205
206 new( (*recParticles)[index] ) AliEMCALRecParticle() ;
207 rp = (AliEMCALRecParticle *)recParticles->At(index) ;
af9bd3cf 208 rp->SetRecPoint(index) ;
c9b2f104 209 rp->SetIndexInList(index) ;
210
c9b2f104 211 // Now set type (reconstructed) of the particle
212
213 // Choose the cluster energy range
214
c9b2f104 215 Float_t lambda[2] ;
88cb7938 216 eca->GetElipsAxis(lambda) ;
c9b2f104 217
218 if((lambda[0]>0.01) && (lambda[1]>0.01)){
219 // Looking PCA. Define and calculate the data (X),
220 // introduce in the function X2P that gives the components (P).
221
d64c959b 222 Float_t spher = 0. ;
223 Float_t emaxdtotal = 0. ;
c9b2f104 224
225 if((lambda[0]+lambda[1])!=0)
d64c959b 226 spher=fabs(lambda[0]-lambda[1])/(lambda[0]+lambda[1]);
c9b2f104 227
d64c959b 228 emaxdtotal=eca->GetMaximalEnergy()/eca->GetEnergy();
c9b2f104 229 }
230
af9bd3cf 231 // Float_t time = eca->GetTime() ;
c9b2f104 232
233 //Set momentum, energy and other parameters
af9bd3cf 234 Float_t encal = GetCalibratedEnergy(eca->GetEnergy());
235 TVector3 dir = GetMomentumDirection(eca) ;
236 // dir.SetMag(encal) ;Removed to avoid warings !!!!!!!!!!!!!! TO BE REVISED
237 rp->SetMomentum(dir.X(),dir.Y(),dir.Z(),encal) ;
c9b2f104 238 rp->SetCalcMass(0);
239 rp->Name(); //If photon sets the particle pdg name to gamma
240 rp->SetProductionVertex(0,0,0,0);
241 rp->SetFirstMother(-1);
242 rp->SetLastMother(-1);
243 rp->SetFirstDaughter(-1);
244 rp->SetLastDaughter(-1);
245 rp->SetPolarisation(0,0,0);
d956e9b7 246 //Set the position in global coordinate system from the RecPoint
247 //AliEMCALGeometry * geom = gime->EMCALGeometry() ;
248 //AliEMCALTowerRecPoint * erp = gime->ECARecPoint(rp->GetEMCALRPIndex()) ;
249 TVector3 pos ;
250 //geom->GetGlobal(erp, pos) ; !!!!!!!!!! to check
251 rp->SetPos(pos);
252
253
c9b2f104 254 index++ ;
255 }
256
257}
258
259//____________________________________________________________________________
9e5d2067 260void AliEMCALPIDv1:: Print(Option_t * /*option*/) const
c9b2f104 261{
262 // Print the parameters used for the particle type identification
263
fdebddeb 264 printf("Print: =============== AliEMCALPID1 ================") ;
88cb7938 265 printf("Making PID\n");
266 printf(" Pricipal analysis file from 0.5 to 100 %s\n", fFileName.Data() ) ;
267 printf(" Name of parameters file %s\n", fFileNamePar.Data() ) ;
c9b2f104 268}
269
7b8d3392 270//____________________________________________________________________________
271void AliEMCALPIDv1::Print() const
272{
273 // Print the parameters used for the particle type identification
274
275 Info("Print", "=============== AliEMCALPIDv1 ================") ;
276}
277
c9b2f104 278//____________________________________________________________________________
279void AliEMCALPIDv1::PrintRecParticles(Option_t * option)
280{
281 // Print table of reconstructed particles
282
88cb7938 283 AliEMCALGetter *gime = AliEMCALGetter::Instance() ;
c9b2f104 284
88cb7938 285 TClonesArray * recParticles = gime->RecParticles() ;
c9b2f104 286
fdebddeb 287 printf("\nevent %i", gAlice->GetEvNumber());
288 printf(" found %i", recParticles->GetEntriesFast());
289 printf(" RecParticles\n");
c9b2f104 290
291 if(strstr(option,"all")) { // printing found TS
fdebddeb 292 printf("\n PARTICLE Index \n");
c9b2f104 293
294 Int_t index ;
295 for (index = 0 ; index < recParticles->GetEntries() ; index++) {
296 AliEMCALRecParticle * rp = (AliEMCALRecParticle * ) recParticles->At(index) ;
fdebddeb 297 printf("\n");
298 printf(rp->Name().Data());
299 printf(" %i", rp->GetIndexInList());
300 printf(" %i", rp->GetType());
c9b2f104 301 }
302 }
c9b2f104 303}
304
88cb7938 305//____________________________________________________________________________
306void AliEMCALPIDv1::Unload()
307{
d64c959b 308 // Unloads RecPoints, TrackSegments and RecParticles from the folder
88cb7938 309 AliEMCALGetter * gime = AliEMCALGetter::Instance() ;
310 gime->EmcalLoader()->UnloadRecPoints() ;
311 gime->EmcalLoader()->UnloadTracks() ;
312 gime->EmcalLoader()->UnloadRecParticles() ;
313}
314
315//____________________________________________________________________________
9e5d2067 316void AliEMCALPIDv1::WriteRecParticles()
88cb7938 317{
d64c959b 318 // Write RecParticles array to file
88cb7938 319 AliEMCALGetter *gime = AliEMCALGetter::Instance() ;
320
321 TClonesArray * recParticles = gime->RecParticles() ;
322 recParticles->Expand(recParticles->GetEntriesFast() ) ;
323 TTree * treeP = gime->TreeP() ;
c9b2f104 324
88cb7938 325
326
327 //First rp
328 Int_t bufferSize = 32000 ;
329 TBranch * rpBranch = treeP->Branch("EMCALRP",&recParticles,bufferSize);
330 rpBranch->SetTitle(BranchName());
331
332 rpBranch->Fill() ;
333
334 gime->WriteRecParticles("OVERWRITE");
335 gime->WritePID("OVERWRITE");
336
337}
c9b2f104 338