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