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