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