]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PHOS/AliPHOSRecPoint.cxx
This is a MAJOR modification:
[u/mrichter/AliRoot.git] / PHOS / AliPHOSRecPoint.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
16 /* $Id$ */
17
18 //_________________________________________________________________________
19 //  Base Class for PHOS Reconstructed Points  
20 //                  
21 //*-- Author: Gines Martinez (SUBATECH)
22
23 // --- ROOT system ---
24 #include "TPad.h"
25
26 // --- Standard library ---
27 #include <iostream.h>
28 #include <stdio.h>
29
30 // --- AliRoot header files ---
31
32 #include "AliPHOSGeometry.h"
33 #include "AliPHOSDigit.h"
34 #include "AliPHOSRecPoint.h"
35 #include "AliPHOSIndexToObject.h"
36
37 ClassImp(AliPHOSRecPoint)
38
39
40 //____________________________________________________________________________
41 AliPHOSRecPoint::AliPHOSRecPoint()
42   : AliRecPoint()
43 {
44   // ctor
45
46   fGeom =   AliPHOSGeometry::GetInstance() ;
47   fPHOSMod = 0;
48 }
49
50 //____________________________________________________________________________
51 Int_t AliPHOSRecPoint::DistancetoPrimitive(Int_t px, Int_t py)
52 {
53   // Compute distance from point px,py to  a AliPHOSRecPoint considered as a Tmarker
54   // Compute the closest distance of approach from point px,py to this marker.
55   // The distance is computed in pixels units.
56
57   TVector3 pos(0.,0.,0.) ;
58   GetLocalPosition( pos) ;
59   Float_t x =  pos.X() ;
60   Float_t y =  pos.Z() ;
61   const Int_t kMaxDiff = 10;
62   Int_t pxm  = gPad->XtoAbsPixel(x);
63   Int_t pym  = gPad->YtoAbsPixel(y);
64   Int_t dist = (px-pxm)*(px-pxm) + (py-pym)*(py-pym);
65   
66   if (dist > kMaxDiff) return 9999;
67   return dist;
68 }
69
70 //___________________________________________________________________________
71  void AliPHOSRecPoint::Draw(Option_t *option)
72  {
73    // Draw this AliPHOSRecPoint with its current attributes
74    
75    AppendPad(option);
76  }
77
78 //______________________________________________________________________________
79 void AliPHOSRecPoint::ExecuteEvent(Int_t event, Int_t px, Int_t py)
80 {
81   // Execute action corresponding to one event
82   // This member function is called when a AliPHOSRecPoint is clicked with the locator
83   //
84   // If Left button is clicked on AliPHOSRecPoint, the digits are switched on    
85   // and switched off when the mouse button is released.
86
87   //  static Int_t pxold, pyold;
88
89   static TGraph *  digitgraph = 0 ;
90   static TPaveText* clustertext = 0 ;
91   
92   if (!gPad->IsEditable()) return;
93   
94   switch (event) {
95     
96     
97   case kButton1Down:{
98     AliPHOSDigit * digit ;
99     AliPHOSGeometry * phosgeom =  (AliPHOSGeometry *) fGeom ;
100     Int_t iDigit;
101     Int_t relid[4] ;
102   
103     const Int_t fMulDigit=AliPHOSRecPoint::GetDigitsMultiplicity() ;
104     Float_t * xi = new Float_t [fMulDigit] ; 
105     Float_t * zi = new Float_t [fMulDigit] ;
106     
107     for(iDigit=0; iDigit<fMulDigit; iDigit++) {
108       digit = (AliPHOSDigit *) fDigitsList[iDigit];
109       phosgeom->AbsToRelNumbering(digit->GetId(), relid) ;
110       phosgeom->RelPosInModule(relid, xi[iDigit], zi[iDigit]) ;
111     }
112     
113     if (!digitgraph) {
114       digitgraph = new TGraph(fMulDigit,xi,zi);
115       digitgraph-> SetMarkerStyle(5) ; 
116       digitgraph-> SetMarkerSize(1.) ;
117       digitgraph-> SetMarkerColor(1) ;
118       digitgraph-> Draw("P") ;
119     }
120     if (!clustertext) {
121       
122       TVector3 pos(0.,0.,0.) ;
123       GetLocalPosition(pos) ;
124       clustertext = new TPaveText(pos.X()-10,pos.Z()+10,pos.X()+50,pos.Z()+35,"") ;
125       Text_t  line1[40] ;
126       Text_t  line2[40] ;
127       sprintf(line1,"Energy=%1.2f GeV",GetEnergy()) ;
128       sprintf(line2,"%d Digits",GetDigitsMultiplicity()) ;
129       clustertext ->AddText(line1) ;
130       clustertext ->AddText(line2) ;
131       clustertext ->Draw("");
132     }
133     gPad->Update() ; 
134     Print() ;
135     delete[] xi ; 
136     delete[] zi ; 
137    }
138   
139 break;
140   
141   case kButton1Up:
142     if (digitgraph) {
143       delete digitgraph  ;
144       digitgraph = 0 ;
145     }
146     if (clustertext) {
147       delete clustertext ;
148       clustertext = 0 ;
149     }
150     
151     break;
152     
153   }
154 }
155
156 //____________________________________________________________________________
157 Int_t AliPHOSRecPoint::GetPHOSMod()
158 {
159   // Returns the PHOS module in which the RecPoint is found
160  
161   if(fPHOSMod > 0) 
162     return fPHOSMod ;
163
164   AliPHOSIndexToObject * please =  AliPHOSIndexToObject::GetInstance() ; 
165
166   Int_t relid[4] ;
167   
168   
169   AliPHOSDigit * digit   ;
170   digit = (AliPHOSDigit *) ( please->GimeDigit(fDigitsList[0]) ) ;
171   AliPHOSGeometry * phosgeom =  (AliPHOSGeometry *) fGeom ;
172
173   phosgeom->AbsToRelNumbering(digit->GetId(), relid) ;
174   fPHOSMod = relid[0];
175   return fPHOSMod ;
176 }
177
178 //______________________________________________________________________________
179 Int_t * AliPHOSRecPoint::GetPrimaries(Int_t & number)
180 {
181   // Constructs the list of primary particles which have contributed to this RecPoint
182   
183   AliPHOSDigit * digit ;
184   Int_t index ;
185   Int_t maxcounter = 10 ;
186   Int_t counter    = 0 ;
187   Int_t * tempo    = new Int_t[maxcounter] ;
188   
189   for ( index = 0 ; index < GetDigitsMultiplicity() ; index++ ) { // all digits
190     digit = (AliPHOSDigit *) fDigitsList[index] ; 
191     Int_t nprimaries = digit->GetNprimary() ;
192     Int_t * newprimaryarray = new Int_t[nprimaries] ;
193     Int_t ii ; 
194     for ( ii = 0 ; ii < nprimaries ; ii++)
195       newprimaryarray[ii] = digit->GetPrimary(ii+1) ; 
196     Int_t jndex ;
197     for ( jndex = 0 ; jndex < nprimaries ; jndex++ ) { // all primaries in digit
198       if ( counter > maxcounter ) {
199         number = - 1 ;
200         cout << "AliPHOSRecPoint::GetNprimaries ERROR > increase maxcounter " << endl ;
201         break ;
202       }
203       Int_t newprimary = newprimaryarray[jndex] ;
204       Int_t kndex ;
205       Bool_t already = kFALSE ;
206       for ( kndex = 0 ; kndex < counter ; kndex++ ) { //check if not already stored
207         if ( newprimary == tempo[kndex] ){
208           already = kTRUE ;
209           break ;
210         }
211       } // end of check
212       if ( !already) { // store it
213         tempo[counter] = newprimary ; 
214         counter++ ;
215       } // store it
216     } // all primaries in digit
217     delete newprimaryarray ; 
218   } // all digits
219
220   number = counter ; 
221   return tempo ; 
222 }
223
224 //______________________________________________________________________________
225 void AliPHOSRecPoint::Paint(Option_t *)
226 {
227   // Paint this ALiRecPoint as a TMarker  with its current attributes
228   
229   TVector3 pos(0.,0.,0.)  ;
230   GetLocalPosition(pos)   ;
231   Coord_t x = pos.X()     ;
232   Coord_t y = pos.Z()     ;
233   Color_t markercolor = 1 ;
234   Size_t  markersize = 1. ;
235   Style_t markerstyle = 5 ;
236   
237   if (!gPad->IsBatch()) {
238     gVirtualX->SetMarkerColor(markercolor) ;
239     gVirtualX->SetMarkerSize (markersize)  ;
240     gVirtualX->SetMarkerStyle(markerstyle) ;
241   }
242   gPad->SetAttMarkerPS(markercolor,markerstyle,markersize) ;
243   gPad->PaintPolyMarker(1,&x,&y,"") ;
244 }