]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EMCAL/AliEMCALRecPoint.cxx
bug fix in parent finding
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALRecPoint.cxx
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 /* $Id$ */
16 //_________________________________________________________________________
17 //  Reconstructed Points for the EMCAL
18 //  A RecPoint is a cluster of digits
19 //*-- Author: Yves Schutz (SUBATECH)
20 //*-- Author: Dmitri Peressounko (RRC KI & SUBATECH)
21 //*-- Author: Heather Gray (LBL) merged AliEMCALRecPoint and AliEMCALTowerRecPoint 02/04
22
23 // --- ROOT system ---
24 #include "TPad.h"
25 #include "TGraph.h"
26 #include "TPaveText.h"
27 #include "TClonesArray.h"
28 #include "TMath.h" 
29
30 // --- Standard library ---
31
32 // --- AliRoot header files ---
33 #include "AliGenerator.h"
34 #include "AliEMCALGeometry.h"
35 #include "AliEMCALDigit.h"
36 #include "AliEMCALRecPoint.h"
37 #include "AliEMCALGetter.h"
38
39 ClassImp(AliEMCALRecPoint)
40
41
42 //____________________________________________________________________________
43 AliEMCALRecPoint::AliEMCALRecPoint()
44   : AliRecPoint()
45 {
46   // ctor
47   fMaxTrack = 0 ;
48   fMulDigit   = 0 ;  
49   fMaxParent = 0;
50   fMulParent = 0;
51   fAmp   = 0. ;   
52   fCoreEnergy = 0 ; 
53   fEnergyList = 0 ;
54   fParentsList = 0;
55   fTime = 0. ;
56   fLocPos.SetX(0.)  ;      //Local position should be evaluated
57   fCoreRadius = 10;        //HG Check this
58 }
59
60 //____________________________________________________________________________
61 AliEMCALRecPoint::AliEMCALRecPoint(const char * opt) : AliRecPoint(opt)
62 {
63   // ctor
64   fMaxTrack = 200 ;
65   fMaxParent = 200;
66   fMulDigit   = 0 ; 
67   fMulParent = 0; 
68   fAmp   = 0. ;   
69   fCoreEnergy = 0 ; 
70   fEnergyList = 0 ;
71   fParentsList = new Int_t[fMaxParent];
72   fTime = -1. ;
73   fLocPos.SetX(1000000.)  ;      //Local position should be evaluated
74   fCoreRadius = 10;        //HG Check this
75 }
76 //____________________________________________________________________________
77 AliEMCALRecPoint::~AliEMCALRecPoint()
78 {
79   // dtor
80   if ( fEnergyList )
81     delete[] fEnergyList ; 
82    if ( fParentsList)
83     delete[] fParentsList;
84 }
85
86 //____________________________________________________________________________
87 void AliEMCALRecPoint::AddDigit(AliEMCALDigit & digit, Float_t Energy)
88 {
89   // Adds a digit to the RecPoint
90   // and accumulates the total amplitude and the multiplicity 
91   
92   if(fEnergyList == 0)
93     fEnergyList =  new Float_t[fMaxDigit]; 
94
95   if ( fMulDigit >= fMaxDigit ) { // increase the size of the lists 
96     fMaxDigit*=2 ; 
97     Int_t * tempo = new Int_t[fMaxDigit]; 
98     Float_t * tempoE =  new Float_t[fMaxDigit];
99
100     Int_t index ;     
101     for ( index = 0 ; index < fMulDigit ; index++ ){
102       tempo[index]  = fDigitsList[index] ;
103       tempoE[index] = fEnergyList[index] ; 
104     }
105     
106     delete [] fDigitsList ; 
107     fDigitsList =  new Int_t[fMaxDigit];
108  
109     delete [] fEnergyList ;
110     fEnergyList =  new Float_t[fMaxDigit];
111
112     for ( index = 0 ; index < fMulDigit ; index++ ){
113       fDigitsList[index] = tempo[index] ;
114       fEnergyList[index] = tempoE[index] ; 
115     }
116  
117     delete [] tempo ;
118     delete [] tempoE ; 
119   } // if
120   
121   fDigitsList[fMulDigit]   = digit.GetIndexInList()  ; 
122   fEnergyList[fMulDigit]   = Energy ;
123   fMulDigit++ ; 
124   fAmp += Energy ; 
125
126 }
127 //____________________________________________________________________________
128 Bool_t AliEMCALRecPoint::AreNeighbours(AliEMCALDigit * digit1, AliEMCALDigit * digit2 ) const
129 {
130   // Tells if (true) or not (false) two digits are neighbours
131   // A neighbour is defined as being two digits which share a corner
132   
133   Bool_t areNeighbours = kFALSE ;
134   
135   AliEMCALGeometry * geom =  (AliEMCALGetter::Instance())->EMCALGeometry();
136
137   Int_t relid1[2] ; 
138   geom->AbsToRelNumbering(digit1->GetId(), relid1) ; 
139
140   Int_t relid2[2] ; 
141   geom->AbsToRelNumbering(digit2->GetId(), relid2) ; 
142   
143   Int_t rowdiff = TMath::Abs( relid1[0] - relid2[0] ) ;  
144   Int_t coldiff = TMath::Abs( relid1[1] - relid2[1] ) ;  
145
146   if (( coldiff <= 1 )  && ( rowdiff <= 1 ) && (coldiff + rowdiff > 0)) 
147     areNeighbours = kTRUE ;
148   
149   return areNeighbours;
150 }
151
152 //____________________________________________________________________________
153 Int_t AliEMCALRecPoint::Compare(const TObject * obj) const
154 {
155   // Compares two RecPoints according to their position in the EMCAL modules
156
157   Float_t delta = 1 ; //Width of "Sorting row". If you change this 
158                       //value (what is senseless) change as well delta in
159                       //AliEMCALTrackSegmentMakerv* and other RecPoints...
160   Int_t rv ; 
161
162   AliEMCALRecPoint * clu = (AliEMCALRecPoint *)obj ; 
163
164   TVector3 locpos1; 
165   GetLocalPosition(locpos1);
166   TVector3 locpos2;  
167   clu->GetLocalPosition(locpos2);  
168
169   Int_t rowdif = (Int_t)TMath::Ceil(locpos1.X()/delta)-(Int_t)TMath::Ceil(locpos2.X()/delta) ;
170   if (rowdif> 0) 
171     rv = 1 ;
172   else if(rowdif < 0) 
173     rv = -1 ;
174   else if(locpos1.Y()>locpos2.Y()) 
175     rv = -1 ;
176   else 
177     rv = 1 ; 
178
179   return rv ; 
180 }
181
182 //____________________________________________________________________________
183 Int_t AliEMCALRecPoint::DistancetoPrimitive(Int_t px, Int_t py)
184 {
185   // Compute distance from point px,py to  a AliEMCALRecPoint considered as a Tmarker
186   // Compute the closest distance of approach from point px,py to this marker.
187   // The distance is computed in pixels units.
188   // HG Still need to update -> Not sure what this should achieve
189
190   TVector3 pos(0.,0.,0.) ;
191   GetLocalPosition(pos) ;
192   Float_t x =  pos.X() ;
193   Float_t y =  pos.Y() ;
194   const Int_t kMaxDiff = 10;
195   Int_t pxm  = gPad->XtoAbsPixel(x);
196   Int_t pym  = gPad->YtoAbsPixel(y);
197   Int_t dist = (px-pxm)*(px-pxm) + (py-pym)*(py-pym);
198   
199   if (dist > kMaxDiff) return 9999;
200   return dist;
201 }
202
203 //___________________________________________________________________________
204  void AliEMCALRecPoint::Draw(Option_t *option)
205  {
206    // Draw this AliEMCALRecPoint with its current attributes
207    
208    AppendPad(option);
209  }
210
211 //______________________________________________________________________________
212 void AliEMCALRecPoint::ExecuteEvent(Int_t /*event*/, Int_t, Int_t)
213 {
214   // Execute action corresponding to one event
215   // This member function is called when a AliEMCALRecPoint is clicked with the locator
216   //
217   // If Left button is clicked on AliEMCALRecPoint, the digits are switched on    
218   // and switched off when the mouse button is released.
219
220   //  static Int_t pxold, pyold;
221
222   /* static TGraph *  digitgraph = 0 ;
223   static TPaveText* clustertext = 0 ;
224   
225   if (!gPad->IsEditable()) return;
226   
227   switch (event) {
228     
229     
230   case kButton1Down:{
231     AliEMCALDigit * digit ;
232     AliEMCALGeometry * emcalgeom =  (AliEMCALGetter::Instance())->EMCALGeometry() ;
233
234     Int_t iDigit;
235     Int_t relid[2] ;
236   
237     const Int_t kMulDigit=AliEMCALRecPoint::GetDigitsMultiplicity() ;
238     Float_t * xi = new Float_t [kMulDigit] ; 
239     Float_t * zi = new Float_t [kMulDigit] ;
240     
241     for(iDigit = 0; iDigit < kMulDigit; iDigit++) {
242       Fatal("AliEMCALRecPoint::ExecuteEvent", " -> Something wrong with the code"); 
243       digit = 0 ; //dynamic_cast<AliEMCALDigit *>((fDigitsList)[iDigit]);
244       emcalgeom->AbsToRelNumbering(digit->GetId(), relid) ;
245       emcalgeom->PosInAlice(relid, xi[iDigit], zi[iDigit]) ;
246     }
247     
248     if (!digitgraph) {
249       digitgraph = new TGraph(fMulDigit,xi,zi);
250       digitgraph-> SetMarkerStyle(5) ; 
251       digitgraph-> SetMarkerSize(1.) ;
252       digitgraph-> SetMarkerColor(1) ;
253       digitgraph-> Draw("P") ;
254     }
255     if (!clustertext) {
256       
257       TVector3 pos(0.,0.,0.) ;
258       GetLocalPosition(pos) ;
259       clustertext = new TPaveText(pos.X()-10,pos.Z()+10,pos.X()+50,pos.Z()+35,"") ;
260       Text_t  line1[40] ;
261       Text_t  line2[40] ;
262       sprintf(line1,"Energy=%1.2f GeV",GetEnergy()) ;
263       sprintf(line2,"%d Digits",GetDigitsMultiplicity()) ;
264       clustertext ->AddText(line1) ;
265       clustertext ->AddText(line2) ;
266       clustertext ->Draw("");
267     }
268     gPad->Update() ; 
269     Print("") ;
270     delete[] xi ; 
271     delete[] zi ; 
272    }
273   
274 break;
275   
276   case kButton1Up:
277     if (digitgraph) {
278       delete digitgraph  ;
279       digitgraph = 0 ;
280     }
281     if (clustertext) {
282       delete clustertext ;
283       clustertext = 0 ;
284     }
285     
286     break;
287     
288     }*/
289 }
290 //____________________________________________________________________________
291 void AliEMCALRecPoint::EvalAll(Float_t logWeight,TClonesArray * digits) 
292 {
293   // Evaluates all shower parameters
294
295   EvalLocalPosition(logWeight, digits) ;
296   EvalElipsAxis(logWeight, digits) ;
297   EvalDispersion(logWeight, digits) ;
298   EvalCoreEnergy(logWeight, digits);
299   EvalTime(digits) ;
300
301   EvalPrimaries(digits) ;
302   EvalParents(digits);
303 }
304
305 //____________________________________________________________________________
306 void  AliEMCALRecPoint::EvalDispersion(Float_t logWeight, TClonesArray * digits)
307 {
308   // Calculates the dispersion of the shower at the origin of the RecPoint
309
310   Float_t d    = 0. ;
311   Float_t wtot = 0. ;
312
313   AliEMCALDigit * digit ;
314  
315   AliEMCALGeometry * geom = (AliEMCALGetter::Instance())->EMCALGeometry();
316   
317   // Calculates the centre of gravity in the local EMCAL-module coordinates   
318   Int_t iDigit;
319
320   if (!fLocPos.X() || !fLocPos.Y()) 
321     EvalLocalPosition(logWeight, digits) ;
322   
323   const Float_t kDeg2Rad = TMath::DegToRad() ; 
324     
325   Float_t cluEta =  fLocPos.X() ; 
326   Float_t cluPhi =  fLocPos.Y() ; 
327   Float_t cluR =  fLocPos.Z() ; 
328   
329   if (gDebug == 2) 
330     printf("EvalDispersion: eta,phi,r = %f,%f,%f", cluEta, cluPhi, cluR) ;
331   
332   // Calculates the dispersion in coordinates 
333   wtot = 0.;
334   for(iDigit=0; iDigit < fMulDigit; iDigit++) {
335     digit = (AliEMCALDigit *) digits->At(fDigitsList[iDigit])  ;
336     Float_t etai = 0.;
337     Float_t phii = 0.;
338     geom->EtaPhiFromIndex(digit->GetId(), etai, phii);
339     phii = phii * kDeg2Rad;
340     if (gDebug == 2) 
341       printf("EvalDispersion: id = %d, etai,phii = %f,%f", digit->GetId(), etai, phii) ;
342
343     Float_t w = TMath::Max(0.,logWeight+TMath::Log(fEnergyList[iDigit]/fAmp ) ) ;
344     d += w * ( (etai-cluEta)*(etai-cluEta) + (phii-cluPhi)*(phii-cluPhi) ) ; 
345     wtot+=w ;
346   }
347   
348   if ( wtot > 0 ) 
349     d /= wtot ;
350   else 
351     d = 0. ; 
352
353   fDispersion = TMath::Sqrt(d) ;
354  
355 }
356
357 //____________________________________________________________________________
358 void AliEMCALRecPoint::EvalLocalPosition(Float_t logWeight, TClonesArray * digits)
359 {
360   // Calculates the center of gravity in the local EMCAL-module coordinates 
361   Float_t wtot = 0. ;
362  
363   //  Int_t relid[3] ;
364   
365   AliEMCALDigit * digit ;
366   AliEMCALGeometry * geom  =  (AliEMCALGetter::Instance())->EMCALGeometry();
367   Int_t iDigit;
368   Float_t cluEta = 0;
369   Float_t cluPhi = 0;
370   const Float_t kDeg2Rad = TMath::DegToRad();
371
372   for(iDigit=0; iDigit<fMulDigit; iDigit++) {
373     digit = dynamic_cast<AliEMCALDigit *>(digits->At(fDigitsList[iDigit])) ;
374
375     Float_t etai ;
376     Float_t phii ;
377     geom->EtaPhiFromIndex(digit->GetId(), etai, phii);
378     phii = phii * kDeg2Rad;
379     Float_t w = TMath::Max( 0., logWeight + TMath::Log( fEnergyList[iDigit] / fAmp ) ) ;
380     cluEta += (etai * w) ;
381     cluPhi += (phii * w );
382     wtot += w ;
383   }
384
385   if ( wtot > 0 ) { 
386     cluEta /= wtot ;
387     cluPhi /= wtot ;
388   } else {
389     cluEta = -1 ; 
390     cluPhi = -1.; 
391   }
392   
393   fLocPos.SetX(cluEta);
394   fLocPos.SetY(cluPhi);
395   fLocPos.SetZ(geom->GetIP2ECASection());
396     
397   if (gDebug==2)
398     printf("EvalLocalPosition: eta,phi,r = %f,%f,%f", fLocPos.X(), fLocPos.Y(), fLocPos.Z()) ; 
399   fLocPosM = 0 ;
400 }
401
402 //______________________________________________________________________________
403 void AliEMCALRecPoint::EvalCoreEnergy(Float_t logWeight, TClonesArray * digits)
404 {
405   // This function calculates energy in the core, 
406   // i.e. within a radius rad = 3cm around the center. Beyond this radius
407   // in accordance with shower profile the energy deposition 
408   // should be less than 2%
409
410   AliEMCALDigit * digit ;
411   const Float_t kDeg2Rad = TMath::DegToRad() ;
412   AliEMCALGeometry * geom = (AliEMCALGetter::Instance())->EMCALGeometry();    
413   Int_t iDigit;
414
415   if (!fLocPos.X() || !fLocPos.Y() ) {
416     EvalLocalPosition(logWeight, digits);
417   }
418   
419   for(iDigit=0; iDigit < fMulDigit; iDigit++) {
420     digit = (AliEMCALDigit *) ( digits->At(fDigitsList[iDigit]) ) ;
421     Float_t etai = 0. ;
422     Float_t phii = 0. ;
423     geom->PosInAlice(digit->GetId(), etai, phii);
424     phii = phii * kDeg2Rad;
425   
426     Float_t distance = TMath::Sqrt((etai-fLocPos.X())*(etai-fLocPos.X())+(phii-fLocPos.Y())*(phii-fLocPos.Y())) ;
427     if(distance < fCoreRadius)
428       fCoreEnergy += fEnergyList[iDigit] ;
429   }
430   
431 }
432 //____________________________________________________________________________
433 void  AliEMCALRecPoint::EvalElipsAxis(Float_t logWeight,TClonesArray * digits)
434 {
435   // Calculates the axis of the shower ellipsoid in eta and phi
436
437   Double_t wtot = 0. ;
438   Double_t x    = 0.;
439   Double_t z    = 0.;
440   Double_t dxx  = 0.;
441   Double_t dzz  = 0.;
442   Double_t dxz  = 0.;
443
444   AliEMCALDigit * digit ;
445
446   AliEMCALGeometry * geom = (AliEMCALGetter::Instance())->EMCALGeometry();
447
448   Int_t iDigit;
449   
450   for(iDigit=0; iDigit<fMulDigit; iDigit++) {
451     digit = (AliEMCALDigit *) digits->At(fDigitsList[iDigit])  ;
452     Float_t etai = 0. ;
453     Float_t phii = 0. ; 
454     geom->EtaPhiFromIndex(digit->GetId(), etai, phii);
455     Double_t w = TMath::Max(0.,logWeight+TMath::Log(fEnergyList[iDigit]/fAmp ) ) ;
456     dxx  += w * etai * etai ;
457     x    += w * etai ;
458     dzz  += w * phii * phii ;
459     z    += w * phii ; 
460     dxz  += w * etai * etai ; 
461     wtot += w ;
462   }
463   if ( wtot > 0 ) { 
464     dxx /= wtot ;
465     x   /= wtot ;
466     dxx -= x * x ;
467     dzz /= wtot ;
468     z   /= wtot ;
469     dzz -= z * z ;
470     dxz /= wtot ;
471     dxz -= x * z ;
472
473     fLambda[0] =  0.5 * (dxx + dzz) + TMath::Sqrt( 0.25 * (dxx - dzz) * (dxx - dzz) + dxz * dxz )  ;
474     if(fLambda[0] > 0)
475       fLambda[0] = TMath::Sqrt(fLambda[0]) ;
476     else
477       fLambda[0] = 0;
478     
479     fLambda[1] =  0.5 * (dxx + dzz) - TMath::Sqrt( 0.25 * (dxx - dzz) * (dxx - dzz) + dxz * dxz )  ;
480     if(fLambda[1] > 0) //To avoid exception if numerical errors lead to negative lambda.
481       fLambda[1] = TMath::Sqrt(fLambda[1]) ;
482     else
483       fLambda[1]= 0. ;
484   } else { 
485     fLambda[0]= 0. ;
486     fLambda[1]= 0. ;
487   }
488 }
489
490 //______________________________________________________________________________
491 void  AliEMCALRecPoint::EvalPrimaries(TClonesArray * digits)
492 {
493   // Constructs the list of primary particles (tracks) which have contributed to this RecPoint
494   
495   AliEMCALDigit * digit ;
496   Int_t * tempo    = new Int_t[fMaxTrack] ;
497
498   Int_t index ;  
499   for ( index = 0 ; index < GetDigitsMultiplicity() ; index++ ) { // all digits
500     digit = dynamic_cast<AliEMCALDigit *>(digits->At( fDigitsList[index] )) ; 
501     Int_t nprimaries = digit->GetNprimary() ;
502     Int_t * newprimaryarray = new Int_t[nprimaries] ;
503     Int_t ii ; 
504     for ( ii = 0 ; ii < nprimaries ; ii++)
505       newprimaryarray[ii] = digit->GetPrimary(ii+1) ; 
506
507     Int_t jndex ;
508     for ( jndex = 0 ; jndex < nprimaries ; jndex++ ) { // all primaries in digit
509       if ( fMulTrack > fMaxTrack ) {
510         fMulTrack = fMaxTrack ;
511         Error("GetNprimaries", "increase fMaxTrack ")  ;
512         break ;
513       }
514       Int_t newprimary = newprimaryarray[jndex] ;
515       Int_t kndex ;
516       Bool_t already = kFALSE ;
517       for ( kndex = 0 ; kndex < fMulTrack ; kndex++ ) { //check if not already stored
518         if ( newprimary == tempo[kndex] ){
519           already = kTRUE ;
520           break ;
521         }
522       } // end of check
523       if ( !already) { // store it
524         tempo[fMulTrack] = newprimary ; 
525         fMulTrack++ ;
526       } // store it
527     } // all primaries in digit
528     delete [] newprimaryarray ; 
529   } // all digits
530
531   
532   fTracksList = new Int_t[fMulTrack] ;
533   for(index = 0; index < fMulTrack; index++)
534    fTracksList[index] = tempo[index] ;
535  
536   delete [] tempo ;
537
538 }
539
540 //______________________________________________________________________________
541 void  AliEMCALRecPoint::EvalParents(TClonesArray * digits)
542 {
543   // Constructs the list of parent particles (tracks) which have contributed to this RecPoint
544  
545   AliEMCALDigit * digit ;
546   Int_t * tempo    = new Int_t[fMaxParent] ;
547
548   Int_t index ;  
549   for ( index = 0 ; index < GetDigitsMultiplicity() ; index++ ) { // all digits
550     digit = dynamic_cast<AliEMCALDigit *>(digits->At( fDigitsList[index] )) ; 
551     Int_t nparents = digit->GetNiparent() ;
552     Int_t * newparentarray = new Int_t[nparents] ;
553     Int_t ii ; 
554     for ( ii = 0 ; ii < nparents ; ii++)
555       newparentarray[ii] = digit->GetIparent(ii+1) ; 
556
557     Int_t jndex ;
558     for ( jndex = 0 ; jndex < nparents ; jndex++ ) { // all primaries in digit
559       if ( fMulParent > fMaxParent ) {
560         fMulTrack = - 1 ;
561         Error("GetNiparent", "increase fMaxParent")  ;
562         break ;
563       }
564       Int_t newparent = newparentarray[jndex] ;
565       Int_t kndex ;
566       Bool_t already = kFALSE ;
567       for ( kndex = 0 ; kndex < fMulParent ; kndex++ ) { //check if not already stored
568         if ( newparent == tempo[kndex] ){
569           already = kTRUE ;
570           break ;
571         }
572       } // end of check
573       if ( !already) { // store it
574         tempo[fMulParent] = newparent ; 
575         fMulParent++ ;
576       } // store it
577     } // all parents in digit
578     delete newparentarray ; 
579   } // all digits
580
581   
582   fParentsList = new Int_t[fMulParent] ;
583   for(index = 0; index < fMulParent; index++)
584    fParentsList[index] = tempo[index] ;
585  
586   delete tempo ;
587
588 }
589
590 //____________________________________________________________________________
591 void AliEMCALRecPoint::GetLocalPosition(TVector3 & lpos) const
592 {
593   // returns the position of the cluster in the local reference system of ALICE
594   // X = eta, Y = phi, Z = r (a constant for the EMCAL)
595   
596   lpos.SetX(fLocPos.X()) ;
597   lpos.SetY(fLocPos.Y()) ;
598   lpos.SetZ(fLocPos.Z()) ;
599 }
600
601 //____________________________________________________________________________
602 void AliEMCALRecPoint::GetGlobalPosition(TVector3 & gpos) const
603 {
604   // returns the position of the cluster in the global reference system of ALICE
605   // These are now the Cartesian X, Y and Z
606
607   AliEMCALGeometry * geom = (AliEMCALGetter::Instance())->EMCALGeometry();
608   Int_t absid = geom->TowerIndexFromEtaPhi(fLocPos.X(), TMath::RadToDeg()*fLocPos.Y());
609   geom->XYZFromIndex(absid, gpos);
610 }
611
612 //____________________________________________________________________________
613 Float_t AliEMCALRecPoint::GetMaximalEnergy(void) const
614 {
615   // Finds the maximum energy in the cluster
616   
617   Float_t menergy = 0. ;
618
619   Int_t iDigit;
620
621   for(iDigit=0; iDigit<fMulDigit; iDigit++) {
622  
623     if(fEnergyList[iDigit] > menergy) 
624       menergy = fEnergyList[iDigit] ;
625   }
626   return menergy ;
627 }
628
629 //____________________________________________________________________________
630 Int_t AliEMCALRecPoint::GetMultiplicityAtLevel(Float_t H) const
631 {
632   // Calculates the multiplicity of digits with energy larger than H*energy 
633   
634   Int_t multipl   = 0 ;
635   Int_t iDigit ;
636   for(iDigit=0; iDigit<fMulDigit; iDigit++) {
637
638     if(fEnergyList[iDigit] > H * fAmp) 
639       multipl++ ;
640   }
641   return multipl ;
642 }
643
644 //____________________________________________________________________________
645 Int_t  AliEMCALRecPoint::GetNumberOfLocalMax(AliEMCALDigit **  maxAt, Float_t * maxAtEnergy,
646                                                Float_t locMaxCut,TClonesArray * digits) const
647
648   // Calculates the number of local maxima in the cluster using fLocalMaxCut as the minimum
649   // energy difference between two local maxima
650
651   AliEMCALDigit * digit ;
652   AliEMCALDigit * digitN ;
653   
654   Int_t iDigitN ;
655   Int_t iDigit ;
656
657   for(iDigit = 0; iDigit < fMulDigit; iDigit++)
658     maxAt[iDigit] = (AliEMCALDigit*) digits->At(fDigitsList[iDigit])  ;
659   
660   for(iDigit = 0 ; iDigit < fMulDigit; iDigit++) {   
661     if(maxAt[iDigit]) {
662       digit = maxAt[iDigit] ;
663           
664       for(iDigitN = 0; iDigitN < fMulDigit; iDigitN++) {        
665         digitN = (AliEMCALDigit *) digits->At(fDigitsList[iDigitN]) ; 
666         
667         if ( AreNeighbours(digit, digitN) ) {
668           if (fEnergyList[iDigit] > fEnergyList[iDigitN] ) {    
669             maxAt[iDigitN] = 0 ;
670             // but may be digit too is not local max ?
671             if(fEnergyList[iDigit] < fEnergyList[iDigitN] + locMaxCut) 
672               maxAt[iDigit] = 0 ;
673           }
674           else {
675             maxAt[iDigit] = 0 ;
676             // but may be digitN too is not local max ?
677             if(fEnergyList[iDigit] > fEnergyList[iDigitN] - locMaxCut) 
678               maxAt[iDigitN] = 0 ; 
679           } 
680         } // if Areneighbours
681       } // while digitN
682     } // slot not empty
683   } // while digit
684   
685   iDigitN = 0 ;
686   for(iDigit = 0; iDigit < fMulDigit; iDigit++) { 
687     if(maxAt[iDigit] ){
688       maxAt[iDigitN] = maxAt[iDigit] ;
689       maxAtEnergy[iDigitN] = fEnergyList[iDigit] ;
690       iDigitN++ ; 
691     }
692   }
693   return iDigitN ;
694 }
695 //____________________________________________________________________________
696 void AliEMCALRecPoint::EvalTime(TClonesArray * digits){
697   // time is set to the time of the digit with the maximum energy
698
699   Float_t maxE = 0;
700   Int_t maxAt = 0;
701   for(Int_t idig=0; idig < fMulDigit; idig++){
702     if(fEnergyList[idig] > maxE){
703       maxE = fEnergyList[idig] ;
704       maxAt = idig;
705     }
706   }
707   fTime = ((AliEMCALDigit*) digits->At(fDigitsList[maxAt]))->GetTime() ;
708   
709 }
710
711 //______________________________________________________________________________
712 void AliEMCALRecPoint::Paint(Option_t *)
713 {
714   // Paint this ALiRecPoint as a TMarker  with its current attributes
715   
716   TVector3 pos(0.,0.,0.)  ;
717   GetLocalPosition(pos)   ;
718   Coord_t x = pos.X()     ;
719   Coord_t y = pos.Z()     ;
720   Color_t markercolor = 1 ;
721   Size_t  markersize = 1. ;
722   Style_t markerstyle = 5 ;
723   
724   if (!gPad->IsBatch()) {
725     gVirtualX->SetMarkerColor(markercolor) ;
726     gVirtualX->SetMarkerSize (markersize)  ;
727     gVirtualX->SetMarkerStyle(markerstyle) ;
728   }
729   gPad->SetAttMarkerPS(markercolor,markerstyle,markersize) ;
730   gPad->PaintPolyMarker(1,&x,&y,"") ;
731 }
732
733 //______________________________________________________________________________
734 Float_t AliEMCALRecPoint::EtaToTheta(Float_t arg) const
735 {
736   //Converts Theta (Radians) to Eta(Radians)
737   return (2.*TMath::ATan(TMath::Exp(-arg)));
738 }
739
740 //______________________________________________________________________________
741 Float_t AliEMCALRecPoint::ThetaToEta(Float_t arg) const
742 {
743   //Converts Eta (Radians) to Theta(Radians)
744   return (-1 * TMath::Log(TMath::Tan(0.5 * arg)));
745 }
746
747 //____________________________________________________________________________
748 void AliEMCALRecPoint::Print(Option_t *) const
749 {
750   // Print the list of digits belonging to the cluster
751   
752   TString message ; 
753   message  = "AliPHOSEmcRecPoint:\n" ;
754   message +=  " digits # = " ; 
755   Info("Print", message.Data()) ; 
756
757   Int_t iDigit;
758   for(iDigit=0; iDigit<fMulDigit; iDigit++)
759     printf(" %d ", fDigitsList[iDigit] ) ;  
760   
761   Info("Print", " Energies = ") ;
762   for(iDigit=0; iDigit<fMulDigit; iDigit++) 
763     printf(" %f ", fEnergyList[iDigit] ) ;
764   printf("\n") ; 
765    Info("Print", " Primaries  ") ;
766   for(iDigit = 0;iDigit < fMulTrack; iDigit++)
767     printf(" %d ", fTracksList[iDigit]) ;
768   printf("\n") ;        
769   message  = "       Multiplicity    = %d" ;
770   message += "       Cluster Energy  = %f" ; 
771   message += "       Core energy     = %f" ; 
772   message += "       Core radius     = %f" ; 
773   message += "       Number of primaries %d" ; 
774   message += "       Stored at position %d" ; 
775  
776   Info("Print", message.Data(), fMulDigit, fAmp, fCoreEnergy, fCoreRadius, fMulTrack, GetIndexInList() ) ;  
777 }