]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PHOS/AliPHOSCpvRecPoint.cxx
Moving AliMUONTriggerEfficiencyCells from sim to base
[u/mrichter/AliRoot.git] / PHOS / AliPHOSCpvRecPoint.cxx
CommitLineData
458282ff 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
702ab87e 18/* History of cvs commits:
19 *
20 * $Log$
f33a3764 21 * Revision 1.22 2005/05/28 14:19:04 schutz
22 * Compilation warnings fixed by T.P.
23 *
702ab87e 24 */
25
458282ff 26//_________________________________________________________________________
27// RecPoint implementation for PHOS-CPV
28// An CpvRecPoint is a cluster of digits
a3dfe79c 29//*-- Author: Yuri Kharlov
30// (after Dmitri Peressounko (RRC KI & SUBATECH))
31// 30 October 2000
458282ff 32
33// --- ROOT system ---
e957fea8 34
458282ff 35#include "TMath.h"
b5241d61 36#include "TClonesArray.h"
458282ff 37
38// --- Standard library ---
39
458282ff 40// --- AliRoot header files ---
351dd634 41#include "AliLog.h"
e957fea8 42#include "AliPHOSGeometry.h"
43#include "AliPHOSDigit.h"
458282ff 44#include "AliPHOSCpvRecPoint.h"
88cb7938 45#include "AliPHOSLoader.h"
e957fea8 46
458282ff 47ClassImp(AliPHOSCpvRecPoint)
48
49//____________________________________________________________________________
b5241d61 50AliPHOSCpvRecPoint::AliPHOSCpvRecPoint() : AliPHOSEmcRecPoint()
458282ff 51{
52 // ctor
53
458282ff 54 fLengX = -1;
55 fLengZ = -1;
56}
57
73a68ccb 58//____________________________________________________________________________
59AliPHOSCpvRecPoint::AliPHOSCpvRecPoint(const char * opt) : AliPHOSEmcRecPoint(opt)
60{
61 // ctor
62
63 fLengX = -1;
64 fLengZ = -1;
65 }
66
458282ff 67//____________________________________________________________________________
68AliPHOSCpvRecPoint::~AliPHOSCpvRecPoint()
69{
70 // dtor
458282ff 71}
72
458282ff 73//____________________________________________________________________________
ad8cfaf4 74Bool_t AliPHOSCpvRecPoint::AreNeighbours(AliPHOSDigit * digit1, AliPHOSDigit * digit2 ) const
458282ff 75{
76 // Tells if (true) or not (false) two digits are neighbors)
77
78 Bool_t aren = kFALSE ;
79
88cb7938 80 AliPHOSGeometry * phosgeom = AliPHOSLoader::GetPHOSGeometry();
ed652fe0 81
458282ff 82 Int_t relid1[4] ;
83 phosgeom->AbsToRelNumbering(digit1->GetId(), relid1) ;
84
85 Int_t relid2[4] ;
86 phosgeom->AbsToRelNumbering(digit2->GetId(), relid2) ;
87
88 Int_t rowdiff = TMath::Abs( relid1[2] - relid2[2] ) ;
89 Int_t coldiff = TMath::Abs( relid1[3] - relid2[3] ) ;
90
91 if (( coldiff <= 1 ) && ( rowdiff <= 1 ) && (coldiff + rowdiff > 0))
92 aren = kTRUE ;
93
94 return aren ;
95}
96
97//____________________________________________________________________________
2a941f4e 98Int_t AliPHOSCpvRecPoint::Compare(const TObject * obj) const
458282ff 99{
100 // Compares two RecPoints according to their position in the PHOS modules
101
b5241d61 102 Float_t delta = 1 ; //Width of "Sorting row". If you changibg this
103 //value (what is senseless) change as vell delta in
104 //AliPHOSTrackSegmentMakerv* and other RecPoints...
105
458282ff 106 Int_t rv ;
107
9688c1dd 108 AliPHOSCpvRecPoint * clu = (AliPHOSCpvRecPoint *) obj ;
109
110 Int_t phosmod1 = GetPHOSMod() ;
111 Int_t phosmod2 = clu->GetPHOSMod() ;
112
113 TVector3 locpos1;
114 GetLocalPosition(locpos1) ;
115 TVector3 locpos2;
116 clu->GetLocalPosition(locpos2) ;
117
118 if(phosmod1 == phosmod2 ) {
119 Int_t rowdif = (Int_t)TMath::Ceil(locpos1.X()/delta)-(Int_t)TMath::Ceil(locpos2.X()/delta) ;
120 if (rowdif> 0)
121 rv = 1 ;
122 else if(rowdif < 0)
123 rv = -1 ;
124 else if(locpos1.Z()>locpos2.Z())
125 rv = -1 ;
126 else
127 rv = 1 ;
128 }
129
130 else {
131 if(phosmod1 < phosmod2 )
132 rv = -1 ;
133 else
134 rv = 1 ;
135 }
136
137 return rv ;
138
458282ff 139}
140
141//______________________________________________________________________________
702ab87e 142void AliPHOSCpvRecPoint::ExecuteEvent(Int_t, Int_t, Int_t ) /*const*/
458282ff 143{
b5241d61 144// // Execute action corresponding to one event
145// // This member function is called when a AliPHOSRecPoint is clicked with the locator
146// //
147// // If Left button is clicked on AliPHOSRecPoint, the digits are switched on
148// // and switched off when the mouse button is released.
149// //
458282ff 150
b5241d61 151// // static Int_t pxold, pyold;
458282ff 152
88cb7938 153// AliPHOSLoader * gime = AliPHOSLoader::GetInstance() ;
458282ff 154
b5241d61 155// static TGraph * digitgraph = 0 ;
458282ff 156
b5241d61 157// if (!gPad->IsEditable()) return;
458282ff 158
b5241d61 159// TH2F * histo = 0 ;
160// TCanvas * histocanvas ;
458282ff 161
b5241d61 162// switch (event) {
458282ff 163
b5241d61 164// case kButton1Down: {
165// AliPHOSDigit * digit ;
166// AliPHOSGeometry * phosgeom = (AliPHOSGeometry *) fGeom ;
167// Int_t iDigit;
168// Int_t relid[4] ;
458282ff 169
b5241d61 170// const Int_t kMulDigit = AliPHOSCpvRecPoint::GetDigitsMultiplicity() ;
171// Float_t * xi = new Float_t[kMulDigit] ;
172// Float_t * zi = new Float_t[kMulDigit] ;
458282ff 173
b5241d61 174// // create the histogram for the single cluster
175// // 1. gets histogram boundaries
176// Float_t ximax = -999. ;
177// Float_t zimax = -999. ;
178// Float_t ximin = 999. ;
179// Float_t zimin = 999. ;
458282ff 180
b5241d61 181// for(iDigit=0; iDigit<kMulDigit; iDigit++) {
7b7c1533 182// digit = (AliPHOSDigit *) ( gime->Digit(fDigitsList[iDigit]) ) ;
b5241d61 183// phosgeom->AbsToRelNumbering(digit->GetId(), relid) ;
184// phosgeom->RelPosInModule(relid, xi[iDigit], zi[iDigit]);
185// if ( xi[iDigit] > ximax )
186// ximax = xi[iDigit] ;
187// if ( xi[iDigit] < ximin )
188// ximin = xi[iDigit] ;
189// if ( zi[iDigit] > zimax )
190// zimax = zi[iDigit] ;
191// if ( zi[iDigit] < zimin )
192// zimin = zi[iDigit] ;
193// }
194// ximax += phosgeom->GetCrystalSize(0) / 2. ;
195// zimax += phosgeom->GetCrystalSize(2) / 2. ;
196// ximin -= phosgeom->GetCrystalSize(0) / 2. ;
197// zimin -= phosgeom->GetCrystalSize(2) / 2. ;
198// Int_t xdim = (int)( (ximax - ximin ) / phosgeom->GetCrystalSize(0) + 0.5 ) ;
199// Int_t zdim = (int)( (zimax - zimin ) / phosgeom->GetCrystalSize(2) + 0.5 ) ;
458282ff 200
b5241d61 201// // 2. gets the histogram title
458282ff 202
b5241d61 203// Text_t title[100] ;
204// sprintf(title,"Energy=%1.2f GeV ; Digits ; %d ", GetEnergy(), GetDigitsMultiplicity()) ;
458282ff 205
b5241d61 206// if (!histo) {
207// delete histo ;
208// histo = 0 ;
209// }
210// histo = new TH2F("cluster3D", title, xdim, ximin, ximax, zdim, zimin, zimax) ;
458282ff 211
b5241d61 212// Float_t x, z ;
213// for(iDigit=0; iDigit<kMulDigit; iDigit++) {
7b7c1533 214// digit = (AliPHOSDigit *) ( gime->Digit(fDigitsList[iDigit]) ) ;
b5241d61 215// phosgeom->AbsToRelNumbering(digit->GetId(), relid) ;
216// phosgeom->RelPosInModule(relid, x, z);
217// histo->Fill(x, z, fEnergyList[iDigit] ) ;
218// }
458282ff 219
b5241d61 220// if (!digitgraph) {
221// digitgraph = new TGraph(kMulDigit,xi,zi);
222// digitgraph-> SetMarkerStyle(5) ;
223// digitgraph-> SetMarkerSize(1.) ;
224// digitgraph-> SetMarkerColor(1) ;
225// digitgraph-> Paint("P") ;
226// }
458282ff 227
b5241d61 228// Print() ;
229// histocanvas = new TCanvas("cluser", "a single cluster", 600, 500) ;
230// histocanvas->Draw() ;
231// histo->Draw("lego1") ;
458282ff 232
b5241d61 233// delete[] xi ;
234// delete[] zi ;
458282ff 235
b5241d61 236// break;
237// }
458282ff 238
b5241d61 239// case kButton1Up:
240// if (digitgraph) {
241// delete digitgraph ;
242// digitgraph = 0 ;
243// }
244// break;
458282ff 245
b5241d61 246// }
458282ff 247}
248
249//____________________________________________________________________________
a4e98857 250void AliPHOSCpvRecPoint::EvalAll(Float_t logWeight,TClonesArray * digits)
251{
252 // wraps other methods
b5241d61 253 AliPHOSEmcRecPoint::EvalAll(logWeight,digits) ;
254 EvalClusterLengths(digits) ;
ad8cfaf4 255}
256//____________________________________________________________________________
b5241d61 257void AliPHOSCpvRecPoint::EvalLocalPosition(Float_t logWeight,TClonesArray * digits)
ad8cfaf4 258{
259 // Calculates the center of gravity in the local PHOS-module coordinates
260
ad8cfaf4 261 Float_t wtot = 0. ;
262
263 Int_t relid[4] ;
264
265 Float_t x = 0. ;
266 Float_t z = 0. ;
267
268 AliPHOSDigit * digit ;
269
88cb7938 270 AliPHOSGeometry * phosgeom = AliPHOSLoader::GetPHOSGeometry();
271
ad8cfaf4 272 Int_t iDigit;
273
274 for(iDigit=0; iDigit<fMulDigit; iDigit++) {
b5241d61 275 digit = (AliPHOSDigit *) digits->At(fDigitsList[iDigit]);
ad8cfaf4 276
277 Float_t xi ;
278 Float_t zi ;
279 phosgeom->AbsToRelNumbering(digit->GetId(), relid) ;
280 phosgeom->RelPosInModule(relid, xi, zi);
f33a3764 281 if (fAmp>0 && fEnergyList[iDigit]>0) {
282 Float_t w = TMath::Max( 0., logWeight + TMath::Log( fEnergyList[iDigit] / fAmp ) ) ;
283 x += xi * w ;
284 z += zi * w ;
285 wtot += w ;
286 }
287 else
288 AliError(Form("Wrong energy %f and/or amplitude %f\n", fEnergyList[iDigit], fAmp));
ad8cfaf4 289 }
290
291 if (wtot != 0) {
292 x /= wtot ;
293 z /= wtot ;
294 } else {
295 x = -1e6 ;
296 z = -1e6 ;
21cd0c07 297 if (fMulDigit != 0)
351dd634 298 AliWarning(Form("Too low log weight factor to evaluate cluster's center" )) ;
ad8cfaf4 299 }
300 fLocPos.SetX(x) ;
301 fLocPos.SetY(0.) ;
302 fLocPos.SetZ(z) ;
0d6c7a69 303 fLocPosM = 0 ;
ad8cfaf4 304
305}
306
307//____________________________________________________________________________
b5241d61 308void AliPHOSCpvRecPoint::EvalClusterLengths(TClonesArray * digits)
458282ff 309{
b5241d61 310 //Modified 15.03.2001 by Dmitri Peressounko
458282ff 311
458282ff 312 // Calculates the cluster lengths along X and Z axes
313 // These characteristics are needed for CPV to tune
314 // digitization+reconstruction to experimental data
315 // Yuri Kharlov. 24 October 2000
316
458282ff 317 Int_t relid[4] ;
318
319 AliPHOSDigit * digit ;
320
88cb7938 321 AliPHOSGeometry * phosgeom = AliPHOSLoader::GetPHOSGeometry();
458282ff 322
a3dfe79c 323 const Int_t kMaxLeng=20;
324 Int_t idX[kMaxLeng], idZ[kMaxLeng];
b5241d61 325 fLengX = 0;
326 fLengZ = 0;
458282ff 327 Bool_t dejavu;
328
329 for(Int_t iDigit=0; iDigit<fMulDigit; iDigit++) {
b5241d61 330 digit = (AliPHOSDigit *) digits->At(fDigitsList[iDigit]) ;
458282ff 331 Int_t absId = digit->GetId();
332 phosgeom->AbsToRelNumbering(absId, relid) ;
333
cd461ab8 334 Int_t i;
458282ff 335 dejavu=kFALSE;
b5241d61 336 for (i=0; i<fLengX; i++) if (relid[2]==idX[i]) { dejavu=kTRUE; break; }
458282ff 337 if (!dejavu) {
b5241d61 338 idX[fLengX]=relid[2];
339 fLengX++;
340 fLengX = TMath::Min(fLengX,kMaxLeng);
458282ff 341 }
342
343 dejavu=kFALSE;
b5241d61 344 for (i=0; i<fLengZ; i++) if (relid[3]==idZ[i]) { dejavu=kTRUE; break; }
458282ff 345 if (!dejavu) {
b5241d61 346 idZ[fLengZ]=relid[3];
347 fLengZ++;
348 fLengZ = TMath::Min(fLengZ,kMaxLeng);
458282ff 349 }
350 }
458282ff 351}
352
458282ff 353
354
355//____________________________________________________________________________
702ab87e 356void AliPHOSCpvRecPoint::Print(const Option_t *) const
458282ff 357{
358 // Print the list of digits belonging to the cluster
359
21cd0c07 360 TString message ;
361 message = "AliPHOSCpvRecPoint: " ;
362 message += "Digits # " ;
351dd634 363 AliInfo(Form(message.Data())) ;
21cd0c07 364
458282ff 365 Int_t iDigit;
458282ff 366
b5241d61 367 for(iDigit=0; iDigit<fMulDigit; iDigit++)
351dd634 368 printf(" %d \n", fDigitsList[iDigit]) ;
458282ff 369
351dd634 370 printf("Energies: \n") ;
b5241d61 371 for(iDigit=0; iDigit<fMulDigit; iDigit++)
351dd634 372 printf(" %f ", fEnergyList[iDigit]) ;
b5241d61 373
21cd0c07 374 message = " Multiplicity = %d\n" ;
375 message += " Cluster Energy = %f\n" ;
376 message += " Stored at position %d\n" ;
458282ff 377
351dd634 378 printf(message.Data(), fMulDigit, fAmp, GetIndexInList() ) ;
21cd0c07 379
458282ff 380}