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