]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PHOS/AliPHOSRecPoint.cxx
DrawRecon function repeared
[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 =  const_cast<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       cout << " AliPHOSRecPoint::ExecuteEvent -> Something wromg with the code" << endl ; 
113       abort() ; 
114       digit = 0 ; //dynamic_cast<AliPHOSDigit *>((fDigitsList)[iDigit]);
115       phosgeom->AbsToRelNumbering(digit->GetId(), relid) ;
116       phosgeom->RelPosInModule(relid, xi[iDigit], zi[iDigit]) ;
117     }
118     
119     if (!digitgraph) {
120       digitgraph = new TGraph(fMulDigit,xi,zi);
121       digitgraph-> SetMarkerStyle(5) ; 
122       digitgraph-> SetMarkerSize(1.) ;
123       digitgraph-> SetMarkerColor(1) ;
124       digitgraph-> Draw("P") ;
125     }
126     if (!clustertext) {
127       
128       TVector3 pos(0.,0.,0.) ;
129       GetLocalPosition(pos) ;
130       clustertext = new TPaveText(pos.X()-10,pos.Z()+10,pos.X()+50,pos.Z()+35,"") ;
131       Text_t  line1[40] ;
132       Text_t  line2[40] ;
133       sprintf(line1,"Energy=%1.2f GeV",GetEnergy()) ;
134       sprintf(line2,"%d Digits",GetDigitsMultiplicity()) ;
135       clustertext ->AddText(line1) ;
136       clustertext ->AddText(line2) ;
137       clustertext ->Draw("");
138     }
139     gPad->Update() ; 
140     Print() ;
141     delete[] xi ; 
142     delete[] zi ; 
143    }
144   
145 break;
146   
147   case kButton1Up:
148     if (digitgraph) {
149       delete digitgraph  ;
150       digitgraph = 0 ;
151     }
152     if (clustertext) {
153       delete clustertext ;
154       clustertext = 0 ;
155     }
156     
157     break;
158     
159   }
160 }
161 //____________________________________________________________________________
162 void AliPHOSRecPoint::EvalAll(Float_t logWeight,TClonesArray * digits) {
163   //evaluates (if necessary) all RecPoint data members 
164
165   EvalPrimaries(digits) ;
166 }
167 //____________________________________________________________________________
168 void AliPHOSRecPoint::EvalPHOSMod(AliPHOSDigit * digit) 
169 {
170   // Returns the PHOS module in which the RecPoint is found
171
172   if( fPHOSMod == 0){
173   Int_t relid[4] ; 
174   
175   AliPHOSGetter * gime = AliPHOSGetter::GetInstance() ; 
176   AliPHOSGeometry * phosgeom =  const_cast<AliPHOSGeometry*>(gime->PHOSGeometry());
177
178   phosgeom->AbsToRelNumbering(digit->GetId(), relid) ;
179   fPHOSMod = relid[0];
180   }
181 }
182
183 //______________________________________________________________________________
184 void  AliPHOSRecPoint::EvalPrimaries(TClonesArray * digits)
185 {
186   // Constructs the list of primary particles (tracks) which have contributed to this RecPoint
187   
188   AliPHOSDigit * digit ;
189   Int_t * tempo    = new Int_t[fMaxTrack] ;
190
191   Int_t index ;  
192   for ( index = 0 ; index < GetDigitsMultiplicity() ; index++ ) { // all digits
193     digit = dynamic_cast<AliPHOSDigit *>(digits->At( fDigitsList[index] )) ; 
194     Int_t nprimaries = digit->GetNprimary() ;
195     Int_t * newprimaryarray = new Int_t[nprimaries] ;
196     Int_t ii ; 
197     for ( ii = 0 ; ii < nprimaries ; ii++)
198       newprimaryarray[ii] = digit->GetPrimary(ii+1) ; 
199
200     Int_t jndex ;
201     for ( jndex = 0 ; jndex < nprimaries ; jndex++ ) { // all primaries in digit
202       if ( fMulTrack > fMaxTrack ) {
203         fMulTrack = - 1 ;
204         cout << "AliPHOSRecPoint::GetNprimaries ERROR > increase fMaxTrack " << endl ;
205         break ;
206       }
207       Int_t newprimary = newprimaryarray[jndex] ;
208       Int_t kndex ;
209       Bool_t already = kFALSE ;
210       for ( kndex = 0 ; kndex < fMulTrack ; kndex++ ) { //check if not already stored
211         if ( newprimary == tempo[kndex] ){
212           already = kTRUE ;
213           break ;
214         }
215       } // end of check
216       if ( !already) { // store it
217         tempo[fMulTrack] = newprimary ; 
218         fMulTrack++ ;
219       } // store it
220     } // all primaries in digit
221     delete newprimaryarray ; 
222   } // all digits
223
224   
225   fTracksList = new Int_t[fMulTrack] ;
226   for(index = 0; index < fMulTrack; index++)
227    fTracksList[index] = tempo[index] ;
228  
229   delete tempo ;
230
231 }
232 //____________________________________________________________________________
233 void AliPHOSRecPoint::GetGlobalPosition(TVector3 & gpos, TMatrix & gmat) const
234 {
235   // returns the position of the cluster in the global reference system of ALICE
236   // and the uncertainty on this position
237   
238   
239   AliPHOSGetter::GetInstance()->PHOSGeometry()->GetGlobal(this, gpos, gmat) ;
240  
241 }
242
243
244 //______________________________________________________________________________
245 void AliPHOSRecPoint::Paint(Option_t *)
246 {
247   // Paint this ALiRecPoint as a TMarker  with its current attributes
248   
249   TVector3 pos(0.,0.,0.)  ;
250   GetLocalPosition(pos)   ;
251   Coord_t x = pos.X()     ;
252   Coord_t y = pos.Z()     ;
253   Color_t markercolor = 1 ;
254   Size_t  markersize = 1. ;
255   Style_t markerstyle = 5 ;
256   
257   if (!gPad->IsBatch()) {
258     gVirtualX->SetMarkerColor(markercolor) ;
259     gVirtualX->SetMarkerSize (markersize)  ;
260     gVirtualX->SetMarkerStyle(markerstyle) ;
261   }
262   gPad->SetAttMarkerPS(markercolor,markerstyle,markersize) ;
263   gPad->PaintPolyMarker(1,&x,&y,"") ;
264 }