]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PHOS/AliPHOSTrackSegmentMakerv1.cxx
New class AliPHOSCPVDigit
[u/mrichter/AliRoot.git] / PHOS / AliPHOSTrackSegmentMakerv1.cxx
CommitLineData
d15a28e7 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
b2a60966 16/* $Id$ */
17
d15a28e7 18//_________________________________________________________________________
b2a60966 19// Implementation version 1 of algorithm class to construct PHOS track segments
20// Associates EMC and PPSD clusters
21// Unfolds the EMC cluster
22//
23//*-- Author: Dmitri Peressounko (RRC Ki & SUBATECH)
24//
d15a28e7 25
26// --- ROOT system ---
27
28#include "TObjArray.h"
29#include "TClonesArray.h"
9f616d61 30#include "TObjectTable.h"
d15a28e7 31
32// --- Standard library ---
33
de9ec31b 34#include <iostream.h>
d15a28e7 35
36// --- AliRoot header files ---
37
38#include "AliPHOSTrackSegmentMakerv1.h"
98cbd830 39#include "AliPHOSIndexToObject.h"
d15a28e7 40#include "AliPHOSTrackSegment.h"
41#include "AliPHOSLink.h"
42#include "AliPHOSv0.h"
43#include "AliRun.h"
44
92862013 45extern void UnfoldingChiSquare(Int_t &nPar, Double_t *Grad, Double_t & fret, Double_t *x, Int_t iflag) ;
9f616d61 46
d15a28e7 47ClassImp( AliPHOSTrackSegmentMakerv1)
48
49
50//____________________________________________________________________________
b2a60966 51 AliPHOSTrackSegmentMakerv1::AliPHOSTrackSegmentMakerv1() : AliPHOSTrackSegmentMaker()
d15a28e7 52{
9f616d61 53 // ctor
b2a60966 54
28c3a259 55 fR0 = 10. ;
d15a28e7 56 //clusters are sorted in "rows" and "columns" of width geom->GetCrystalSize(0),
98cbd830 57 fDelta = fR0 + fGeom->GetCrystalSize(0) ;
69183710 58 if(!gMinuit) gMinuit = new TMinuit(100) ;
6727be7e 59 fUnfoldFlag = kTRUE ;
d15a28e7 60}
61
9f616d61 62//____________________________________________________________________________
63 AliPHOSTrackSegmentMakerv1::~AliPHOSTrackSegmentMakerv1()
64{
65 // dtor
69183710 66
7956ec10 67 delete gMinuit ;
68 gMinuit = 0 ;
9f616d61 69}
b2a60966 70
d15a28e7 71//____________________________________________________________________________
72Bool_t AliPHOSTrackSegmentMakerv1::FindFit(AliPHOSEmcRecPoint * emcRP, int * maxAt, Float_t * maxAtEnergy,
92862013 73 Int_t nPar, Float_t * fitparameters)
9f616d61 74{
b2a60966 75 // Calls TMinuit to fit the energy distribution of a cluster with several maxima
6ad0bfa0 76
9f616d61 77 gMinuit->SetPrintLevel(-1) ; // No Printout
78 gMinuit->SetFCN(UnfoldingChiSquare) ; // To set the address of the minimization function
79 gMinuit->SetObjectFit(emcRP) ; // To tranfer pointer to UnfoldingChiSquare
80
81 // filling initial values for fit parameters
d15a28e7 82 AliPHOSDigit * digit ;
9f616d61 83
84 Int_t ierflg = 0;
85 Int_t index = 0 ;
92862013 86 Int_t nDigits = (Int_t) nPar / 3 ;
9f616d61 87
d15a28e7 88 Int_t iDigit ;
9f616d61 89
90
92862013 91 for(iDigit = 0; iDigit < nDigits; iDigit++){
d15a28e7 92 digit = (AliPHOSDigit *) maxAt[iDigit];
93
92862013 94 Int_t relid[4] ;
d15a28e7 95 Float_t x ;
96 Float_t z ;
98cbd830 97 fGeom->AbsToRelNumbering(digit->GetId(), relid) ;
98 fGeom->RelPosInModule(relid, x, z) ;
d15a28e7 99
92862013 100 Float_t energy = maxAtEnergy[iDigit] ;
d15a28e7 101
9f616d61 102 gMinuit->mnparm(index, "x", x, 0.1, 0, 0, ierflg) ;
103 index++ ;
d15a28e7 104 if(ierflg != 0){
105 cout << "PHOS Unfolding> Unable to set initial value for fit procedure : x = " << x << endl ;
106 return kFALSE;
107 }
9f616d61 108 gMinuit->mnparm(index, "z", z, 0.1, 0, 0, ierflg) ;
109 index++ ;
d15a28e7 110 if(ierflg != 0){
111 cout << "PHOS Unfolding> Unable to set initial value for fit procedure : z = " << z << endl ;
112 return kFALSE;
113 }
92862013 114 gMinuit->mnparm(index, "Energy", energy , 0.05*energy, 0., 4.*energy, ierflg) ;
9f616d61 115 index++ ;
d15a28e7 116 if(ierflg != 0){
92862013 117 cout << "PHOS Unfolding> Unable to set initial value for fit procedure : energy = " << energy << endl ;
d15a28e7 118 return kFALSE;
6ad0bfa0 119 }
d15a28e7 120 }
121
9f616d61 122 Double_t p0 = 0.1 ; // "Tolerance" Evaluation stops when EDM = 0.0001*p0 ; The number of function call slightly
123 // depends on it.
124 Double_t p1 = 1.0 ;
125 Double_t p2 = 0.0 ;
126
69183710 127 gMinuit->mnexcm("SET STR", &p2, 0, ierflg) ; // force TMinuit to reduce function calls
9f616d61 128 gMinuit->mnexcm("SET GRA", &p1, 1, ierflg) ; // force TMinuit to use my gradient
d15a28e7 129 gMinuit->SetMaxIterations(5);
9f616d61 130 gMinuit->mnexcm("SET NOW", &p2 , 0, ierflg) ; // No Warnings
98cbd830 131
9f616d61 132 gMinuit->mnexcm("MIGRAD", &p0, 0, ierflg) ; // minimize
98cbd830 133
9f616d61 134 if(ierflg == 4){ // Minimum not found
135 cout << "PHOS Unfolding> Fit not converged, cluster abandoned "<< endl ;
d15a28e7 136 return kFALSE ;
137 }
92862013 138 for(index = 0; index < nPar; index++){
d15a28e7 139 Double_t err ;
140 Double_t val ;
9f616d61 141 gMinuit->GetParameter(index, val, err) ; // Returns value and error of parameter index
92862013 142 fitparameters[index] = val ;
d15a28e7 143 }
98cbd830 144
d15a28e7 145 return kTRUE;
9f616d61 146
d15a28e7 147}
9f616d61 148
d15a28e7 149//____________________________________________________________________________
98cbd830 150void AliPHOSTrackSegmentMakerv1::FillOneModule(AliPHOSRecPoint::RecPointsList * emcIn,
28c3a259 151 TArrayI * emcOut,
88714635 152 AliPHOSRecPoint::RecPointsList * ppsdIn,
28c3a259 153 TArrayI * ppsdOutUp,
154 TArrayI * ppsdOutLow,
88714635 155 Int_t & phosmod,
156 Int_t & emcStopedAt,
157 Int_t & ppsdStopedAt)
9f616d61 158{
69183710 159 // Fill xxxOut arrays with clusters from one PHOS module
9f616d61 160
161 AliPHOSEmcRecPoint * emcRecPoint ;
d15a28e7 162 AliPHOSPpsdRecPoint * ppsdRecPoint ;
163 Int_t index ;
6ad0bfa0 164
92862013 165 Int_t nEmcUnfolded = emcIn->GetEntries() ;
28c3a259 166 emcOut->Set(nEmcUnfolded);
167 Int_t inEmcOut = 0 ;
92862013 168 for(index = emcStopedAt; index < nEmcUnfolded; index++){
6ad0bfa0 169
98cbd830 170 emcRecPoint = (AliPHOSEmcRecPoint *) emcIn->At(index) ;
9f616d61 171
98cbd830 172 if(emcRecPoint->GetPHOSMod() != phosmod )
173 break ;
31aa6d6c 174
28c3a259 175 emcOut->AddAt(emcRecPoint->GetIndexInList(),inEmcOut) ;
176 inEmcOut++ ;
d15a28e7 177 }
28c3a259 178 emcOut->Set(inEmcOut) ;
179
d15a28e7 180 emcStopedAt = index ;
181
28c3a259 182 ppsdOutLow->Set(ppsdIn->GetEntries()) ;
183 ppsdOutUp->Set(ppsdIn->GetEntries()) ;
184 Int_t inPpsdLow = 0;
185 Int_t inPpsdUp = 0;
d15a28e7 186 for(index = ppsdStopedAt; index < ppsdIn->GetEntries(); index++){
83974468 187 ppsdRecPoint = (AliPHOSPpsdRecPoint *) ppsdIn->At(index) ;
92862013 188 if(ppsdRecPoint->GetPHOSMod() != phosmod )
9f616d61 189 break ;
d15a28e7 190 if(ppsdRecPoint->GetUp() )
28c3a259 191 ppsdOutUp->AddAt(index,inPpsdUp++) ;
d15a28e7 192 else
28c3a259 193 ppsdOutLow->AddAt(index,inPpsdLow++) ;
d15a28e7 194 }
28c3a259 195 ppsdOutLow->Set(inPpsdLow);
196 ppsdOutUp->Set(inPpsdUp);
d15a28e7 197 ppsdStopedAt = index ;
6ad0bfa0 198
d15a28e7 199}
200//____________________________________________________________________________
92862013 201Float_t AliPHOSTrackSegmentMakerv1::GetDistanceInPHOSPlane(AliPHOSEmcRecPoint * emcclu,AliPHOSPpsdRecPoint * PpsdClu, Bool_t &toofar)
d15a28e7 202{
b2a60966 203 // Calculates the distance between the EMC RecPoint and the PPSD RecPoint
204
92862013 205 Float_t r = fR0 ;
d15a28e7 206
207 TVector3 vecEmc ;
208 TVector3 vecPpsd ;
209
92862013 210 emcclu->GetLocalPosition(vecEmc) ;
d15a28e7 211 PpsdClu->GetLocalPosition(vecPpsd) ;
92862013 212 if(emcclu->GetPHOSMod() == PpsdClu->GetPHOSMod()){
7956ec10 213 // if(vecPpsd.X() >= vecEmc.X() - fDelta ){
214 // if(vecPpsd.Z() >= vecEmc.Z() - fDelta ){
6ad0bfa0 215 // Correct to difference in CPV and EMC position due to different distance to center.
216 // we assume, that particle moves from center
98cbd830 217 Float_t dCPV = fGeom->GetIPtoOuterCoverDistance();
218 Float_t dEMC = fGeom->GetIPtoCrystalSurface() ;
92862013 219 dEMC = dEMC / dCPV ;
220 vecPpsd = dEMC * vecPpsd - vecEmc ;
221 r = vecPpsd.Mag() ;
7956ec10 222 // } // if zPpsd >= zEmc - fDelta
92862013 223 toofar = kFALSE ;
7956ec10 224 //} // if xPpsd >= xEmc - fDelta
225 // else
226 //toofar = kTRUE ;
d15a28e7 227 }
228 else
92862013 229 toofar = kTRUE ;
7956ec10 230
231 //toofar = kFALSE ;
232
d15a28e7 233
92862013 234 return r ;
d15a28e7 235}
236
237//____________________________________________________________________________
28c3a259 238void AliPHOSTrackSegmentMakerv1::MakeLinks(TArrayI * emcRecPoints, TArrayI * ppsdRecPointsUp,
239 TArrayI * ppsdRecPointsLow, TClonesArray * linklowArray,
92862013 240 TClonesArray *linkupArray)
d15a28e7 241{
b2a60966 242 // Finds distances (links) between all EMC and PPSD clusters, which are not further apart from each other than fR0
243
d15a28e7 244
92862013 245 AliPHOSPpsdRecPoint * ppsdlow ;
246 AliPHOSPpsdRecPoint * ppsdup ;
247 AliPHOSEmcRecPoint * emcclu ;
28c3a259 248
d15a28e7 249 Int_t iLinkLow = 0 ;
250 Int_t iLinkUp = 0 ;
251
28c3a259 252 Int_t iEmcRP;
253
254 for(iEmcRP = 0; iEmcRP < emcRecPoints->GetSize(); iEmcRP++ ) {
255 emcclu = (AliPHOSEmcRecPoint *) fPlease->GimeRecPoint(emcRecPoints->At(iEmcRP),"emc") ;
92862013 256 Bool_t toofar ;
d15a28e7 257
28c3a259 258 Int_t iPpsdLow ;
259
260 for(iPpsdLow = 0; iPpsdLow < ppsdRecPointsLow->GetSize();iPpsdLow++ ) {
261
262 ppsdlow = (AliPHOSPpsdRecPoint *) fPlease->GimeRecPoint(ppsdRecPointsLow->At(iPpsdLow),"ppsd") ;
92862013 263 Float_t r = GetDistanceInPHOSPlane(emcclu, ppsdlow, toofar) ;
d15a28e7 264
92862013 265 if(toofar)
d15a28e7 266 break ;
83974468 267 if(r < fR0){
28c3a259 268 new( (*linklowArray)[iLinkLow++]) AliPHOSLink(r, iEmcRP, iPpsdLow) ;
269 }
d15a28e7 270 }
271
28c3a259 272 Int_t iPpsdUp = 0 ;
273 for(iPpsdUp = 0; iPpsdUp < ppsdRecPointsUp->GetSize();iPpsdUp++ ) {
274
275 ppsdup = (AliPHOSPpsdRecPoint *)fPlease->GimeRecPoint(ppsdRecPointsUp->At(iPpsdUp),"ppsd") ;
92862013 276 Float_t r = GetDistanceInPHOSPlane(emcclu, ppsdup, toofar) ;
d15a28e7 277
92862013 278 if(toofar)
d15a28e7 279 break ;
83974468 280 if(r < fR0) {
28c3a259 281 new( (*linkupArray)[iLinkUp++]) AliPHOSLink(r, iEmcRP, iPpsdUp) ;
282 }
d15a28e7 283 }
28c3a259 284 }
d15a28e7 285
92862013 286 linklowArray->Sort() ; //first links with smallest distances
287 linkupArray->Sort() ;
d15a28e7 288}
28c3a259 289
d15a28e7 290//____________________________________________________________________________
28c3a259 291void AliPHOSTrackSegmentMakerv1::MakePairs(TArrayI * emcRecPoints,
292 TArrayI * ppsdRecPointsUp,
293 TArrayI * ppsdRecPointsLow,
88714635 294 TClonesArray * linklowArray,
295 TClonesArray * linkupArray,
296 AliPHOSTrackSegment::TrackSegmentsList * trsl)
6ad0bfa0 297{
298
299 // Finds the smallest links and makes pairs of PPSD and EMC clusters with smallest distance
300
92862013 301 TIter nextLow(linklowArray) ;
302 TIter nextUp(linkupArray) ;
d15a28e7 303
304 AliPHOSLink * linkLow ;
305 AliPHOSLink * linkUp ;
306
28c3a259 307 Int_t emc ;
308 Int_t ppsdLow ;
309 Int_t ppsdUp ;
d15a28e7 310
28c3a259 311 AliPHOSPpsdRecPoint * nullpointer = 0 ;
312 ppsdUp = 0 ;
9f616d61 313
d15a28e7 314 while ( (linkLow = (AliPHOSLink *)nextLow() ) ){
28c3a259 315
316 emc = emcRecPoints->At(linkLow->GetEmc()) ;
317 ppsdLow = ppsdRecPointsLow->At(linkLow->GetPpsd()) ;
28c3a259 318
7956ec10 319 if( (emc >= 0) && (ppsdLow >= 0) ){ // RecPoints not removed yet
320
28c3a259 321 new( (*trsl)[fNTrackSegments] ) AliPHOSTrackSegment((AliPHOSEmcRecPoint *)fPlease->GimeRecPoint(emc,"emc"),
322 nullpointer,
323 (AliPHOSPpsdRecPoint *)fPlease->GimeRecPoint(ppsdLow,"ppsd") ) ;
324 ((AliPHOSTrackSegment* )trsl->At(fNTrackSegments))->SetIndexInList(fNTrackSegments);
325 //replace index of emc to negative and shifted index of TS
326 emcRecPoints->AddAt(-2 - fNTrackSegments,linkLow->GetEmc()) ;
7956ec10 327 //replace index of PPSD Low to negative and shifted index of TS
28c3a259 328 ppsdRecPointsLow->AddAt(-2 - fNTrackSegments,linkLow->GetPpsd()) ;
329 fNTrackSegments++ ;
330
6ad0bfa0 331 }
d15a28e7 332 }
28c3a259 333
334 while ( (linkUp = (AliPHOSLink *)nextUp() ) ){
335 emc = emcRecPoints->At(linkUp->GetEmc()) ;
336 if(emc != -1){ //without ppsd Up yet
d15a28e7 337
28c3a259 338 ppsdUp = ppsdRecPointsUp->At(linkUp->GetPpsd()) ;
7956ec10 339 if(ppsdUp >= 0){ //ppsdUp still exist
340
341 if(emc >= 0){ //without ppsd Low => create new TS
342
343 fNTrackSegments = trsl->GetEntries() ;
344 new( (*trsl)[fNTrackSegments] ) AliPHOSTrackSegment((AliPHOSEmcRecPoint *) fPlease->GimeRecPoint(emc,"emc"),
345 (AliPHOSPpsdRecPoint *)fPlease->GimeRecPoint(ppsdUp,"ppsd"),
346 nullpointer) ;
347 ((AliPHOSTrackSegment *) trsl->At(fNTrackSegments))->SetIndexInList(fNTrackSegments);
348 fNTrackSegments++ ;
349 }
350 else{ // append ppsd Up to existing TS
351 ((AliPHOSTrackSegment *)trsl->At(-2-emc))->SetPpsdUpRecPoint((AliPHOSPpsdRecPoint *)fPlease->GimeRecPoint(ppsdUp,"ppsd"));
352 }
353
354 emcRecPoints->AddAt(-1,linkUp->GetEmc()) ; //Mark that PPSD Up found
355 //replace index of PPSD Up to negative and shifted index of TS
356 ppsdRecPointsUp->AddAt(-2 - fNTrackSegments,linkUp->GetPpsd()) ;
357 } //if ppsdUp still exist
28c3a259 358 }
359 }
360
361 Int_t iEmcRP ;
362 for(iEmcRP = 0; iEmcRP <emcRecPoints->GetSize() ; iEmcRP++ ){
363 emc = emcRecPoints->At(iEmcRP) ;
364 if(emc >=0 ){
365 ppsdUp = 0;
366 ppsdLow = 0;
367 new( (*trsl)[fNTrackSegments] ) AliPHOSTrackSegment((AliPHOSEmcRecPoint *) fPlease->GimeRecPoint(emc,"emc"),
368 nullpointer, nullpointer ) ;
369 ((AliPHOSTrackSegment *) trsl->At(fNTrackSegments))->SetIndexInList(fNTrackSegments);
370 fNTrackSegments++;
d15a28e7 371 }
b2a60966 372
d15a28e7 373 }
28c3a259 374
d15a28e7 375}
376
377//____________________________________________________________________________
88714635 378void AliPHOSTrackSegmentMakerv1::MakeTrackSegments(DigitsList * dl,
379 AliPHOSRecPoint::RecPointsList * emcl,
380 AliPHOSRecPoint::RecPointsList * ppsdl,
381 AliPHOSTrackSegment::TrackSegmentsList * trsl)
d15a28e7 382{
b2a60966 383 // Makes the track segments out of the list of EMC and PPSD Recpoints and stores them in a list
98cbd830 384
92862013 385 Int_t phosmod = 1 ;
9f616d61 386 Int_t emcStopedAt = 0 ;
d15a28e7 387 Int_t ppsdStopedAt = 0 ;
28c3a259 388
389 fNTrackSegments = 0 ;
390
d15a28e7 391
28c3a259 392 TArrayI * emcRecPoints = new TArrayI(1000) ; // these arrays keep indexes
393 TArrayI * ppsdRecPointsUp = new TArrayI(1000) ; // of RecPoints, which are
394 TArrayI * ppsdRecPointsLow = new TArrayI(1000) ; // kept in TClonesArray's emcl and ppsdl
d15a28e7 395
396
7956ec10 397 TClonesArray * linklowArray = new TClonesArray("AliPHOSLink", 1000);
398 TClonesArray * linkupArray = new TClonesArray("AliPHOSLink", 1000);
6ad0bfa0 399
28c3a259 400
98cbd830 401 if(fUnfoldFlag){
69183710 402 UnfoldAll(dl, emcl) ; // Unfolds all EMC clusters
98cbd830 403 }
d15a28e7 404
28c3a259 405
98cbd830 406 while(phosmod <= fGeom->GetNModules() ){
407
408 FillOneModule(emcl, emcRecPoints, ppsdl, ppsdRecPointsUp, ppsdRecPointsLow, phosmod, emcStopedAt, ppsdStopedAt) ;
409
410 MakeLinks(emcRecPoints, ppsdRecPointsUp, ppsdRecPointsLow, linklowArray, linkupArray) ;
411
92862013 412 MakePairs(emcRecPoints, ppsdRecPointsUp, ppsdRecPointsLow, linklowArray, linkupArray, trsl) ;
98cbd830 413
28c3a259 414 emcRecPoints->Reset() ;
98cbd830 415
28c3a259 416 ppsdRecPointsUp->Reset() ;
98cbd830 417
28c3a259 418 ppsdRecPointsLow->Reset() ;
98cbd830 419
92862013 420 linkupArray->Clear() ;
98cbd830 421
92862013 422 linklowArray->Clear() ;
98cbd830 423
92862013 424 phosmod++ ;
d15a28e7 425 }
28c3a259 426
92862013 427 delete emcRecPoints ;
428 emcRecPoints = 0 ;
98cbd830 429
92862013 430 delete ppsdRecPointsUp ;
431 ppsdRecPointsUp = 0 ;
9f616d61 432
92862013 433 delete ppsdRecPointsLow ;
434 ppsdRecPointsLow = 0 ;
9f616d61 435
92862013 436 delete linkupArray ;
437 linkupArray = 0 ;
9f616d61 438
92862013 439 delete linklowArray ;
440 linklowArray = 0 ;
d15a28e7 441}
442
0336aa72 443//____________________________________________________________________________
444void AliPHOSTrackSegmentMakerv1::MakeTrackSegmentsCPV(DigitsList * dl,
69183710 445 AliPHOSRecPoint::RecPointsList * emcl,
446 AliPHOSRecPoint::RecPointsList * cpvl)
0336aa72 447{
448 // Unfold clusters in EMC and CPV and refill reconstructed point lists emcl and ppsdl
449 // Yuri Kharlov. 19 October 2000
450
451 fNTrackSegments = 0 ;
452
453 TArrayI * emcRecPoints = new TArrayI(1000) ; // these arrays keep indexes
454 TArrayI * cpvRecPoints = new TArrayI(1000) ; // of RecPoints, which are kept in emcl and ppsdl
455
456 if(fUnfoldFlag){
457 UnfoldAll(dl, emcl) ; // Unfolds all EMC clusters
458 UnfoldAll(dl, cpvl) ; // Unfolds all CPV clusters
459 }
460
461// Int_t phosmod = 1 ;
462// Int_t emcStopedAt = 0 ;
463// Int_t cpvStopedAt = 0 ;
464// while(phosmod <= fGeom->GetNModules() ){
465// FillOneModule(emcl, emcRecPoints, ppsdl, cpvRecPoints, phosmod, emcStopedAt, cpvStopedAt) ;
466// emcRecPoints->Reset() ;
467// cpvRecPoints->Reset() ;
468// phosmod++ ;
469// }
470
471 delete emcRecPoints ; emcRecPoints = 0 ;
472 delete cpvRecPoints ; cpvRecPoints = 0 ;
473}
474
d15a28e7 475//____________________________________________________________________________
9f616d61 476Double_t AliPHOSTrackSegmentMakerv1::ShowerShape(Double_t r)
477{
b2a60966 478 // Shape of the shower (see PHOS TDR)
479 // If you change this function, change also the gradien evaluation in ChiSquare()
480
6ad0bfa0 481 Double_t r4 = r*r*r*r ;
482 Double_t r295 = TMath::Power(r, 2.95) ;
d15a28e7 483 Double_t shape = TMath::Exp( -r4 * (1. / (2.32 + 0.26 * r4) + 0.0316 / (1 + 0.0652 * r295) ) ) ;
484 return shape ;
485}
486
98cbd830 487//____________________________________________________________________________
488void AliPHOSTrackSegmentMakerv1::UnfoldAll(DigitsList * dl, AliPHOSRecPoint::RecPointsList * emcIn)
489{
490 // Performs unfolding of all EMC clusters, sorts them and resets indexes in RecPoints
491
492 AliPHOSEmcRecPoint * emcRecPoint ;
493 Int_t index ;
494 Int_t nEmcUnfolded = emcIn->GetEntries() ;
495
496 for(index = 0 ; index < nEmcUnfolded; index++){
497
69183710 498 emcRecPoint = (AliPHOSEmcRecPoint *) emcIn->At(index) ;
98cbd830 499
69183710 500 Int_t nMultipl = emcRecPoint->GetMultiplicity() ;
501 Int_t * maxAt = new Int_t[nMultipl] ;
98cbd830 502 Float_t * maxAtEnergy = new Float_t[nMultipl] ;
503 Int_t nMax = emcRecPoint->GetNumberOfLocalMax(maxAt, maxAtEnergy) ;
504
69183710 505 if( nMax > 1 ) { // if cluster is very flat (no pronounced maximum) then nMax = 0
98cbd830 506 UnfoldClusters(dl, emcIn, emcRecPoint, nMax, maxAt, maxAtEnergy) ;
507 emcIn->Remove(emcRecPoint);
508 emcIn->Compress() ;
509 index-- ;
510 nEmcUnfolded-- ;
511 }
512
513 delete[] maxAt ;
514 delete[] maxAtEnergy ;
515 } //Unfolding finished
516
517 emcIn->Sort() ;
518
519 // to set index to new and correct index of old RecPoints
28c3a259 520 for( index = 0 ; index < emcIn->GetEntries() ; index++){
69183710 521
98cbd830 522 ((AliPHOSEmcRecPoint *) emcIn->At(index))->SetIndexInList(index) ;
69183710 523
98cbd830 524 }
525
28c3a259 526 emcIn->Sort() ;
527
98cbd830 528}
d15a28e7 529//____________________________________________________________________________
88714635 530void AliPHOSTrackSegmentMakerv1::UnfoldClusters(DigitsList * dl,
531 AliPHOSRecPoint::RecPointsList * emcIn,
532 AliPHOSEmcRecPoint * iniEmc,
533 Int_t nMax,
534 int * maxAt,
98cbd830 535 Float_t * maxAtEnergy)
d15a28e7 536{
b2a60966 537 // Performs the unfolding of a cluster with nMax overlapping showers
538 // This is time consuming (use the (Un)SetUnfolFlag() )
539
92862013 540 Int_t nPar = 3 * nMax ;
31aa6d6c 541 Float_t * fitparameters = new Float_t[nPar] ;
98cbd830 542
9f616d61 543
92862013 544 Bool_t rv = FindFit(iniEmc, maxAt, maxAtEnergy, nPar, fitparameters) ;
31aa6d6c 545 if( !rv ) {
546 // Fit failed, return and remove cluster
547 delete[] fitparameters ;
d15a28e7 548 return ;
31aa6d6c 549 }
98cbd830 550
d15a28e7 551 Float_t xDigit ;
552 Float_t zDigit ;
92862013 553 Int_t relid[4] ;
d15a28e7 554
92862013 555 Int_t nDigits = iniEmc->GetMultiplicity() ;
d15a28e7 556 Float_t xpar ;
557 Float_t zpar ;
92862013 558 Float_t epar ;
559 Float_t distance ;
560 Float_t ratio ;
31aa6d6c 561 Float_t * efit = new Float_t[nDigits] ;
d15a28e7 562 Int_t iparam ;
563 Int_t iDigit ;
564
565 AliPHOSDigit * digit ;
566 AliPHOSEmcRecPoint * emcRP ;
6ad0bfa0 567 Int_t * emcDigits = iniEmc->GetDigitsList() ;
d15a28e7 568 Float_t * emcEnergies = iniEmc->GetEnergiesList() ;
569
570 Int_t iRecPoint = emcIn->GetEntries() ;
571
92862013 572 for(iDigit = 0 ; iDigit < nDigits ; iDigit ++){
98cbd830 573 digit = fPlease->GimeDigit( emcDigits[iDigit] ) ;
574 fGeom->AbsToRelNumbering(digit->GetId(), relid) ;
575 fGeom->RelPosInModule(relid, xDigit, zDigit) ;
92862013 576 efit[iDigit] = 0;
d15a28e7 577 iparam = 0 ;
578
92862013 579 while(iparam < nPar ){
580 xpar = fitparameters[iparam] ;
581 zpar = fitparameters[iparam+1] ;
582 epar = fitparameters[iparam+2] ;
d15a28e7 583 iparam += 3 ;
92862013 584 distance = (xDigit - xpar) * (xDigit - xpar) + (zDigit - zpar) * (zDigit - zpar) ;
585 distance = TMath::Sqrt(distance) ;
b2a60966 586 efit[iDigit] += epar * AliPHOSTrackSegmentMakerv1::ShowerShape(distance) ;
d15a28e7 587 }
d15a28e7 588 }
589
590 iparam = 0 ;
591 Float_t eDigit ;
592
98cbd830 593
92862013 594 while(iparam < nPar ){
595 xpar = fitparameters[iparam] ;
596 zpar = fitparameters[iparam+1] ;
597 epar = fitparameters[iparam+2] ;
d15a28e7 598 iparam += 3 ;
98cbd830 599
28c3a259 600 if(iRecPoint >= emcIn->GetSize())
601 emcIn->Expand(2*iRecPoint) ;
602 (*emcIn)[iRecPoint] = new AliPHOSEmcRecPoint( iniEmc->GetLogWeightCut(), iniEmc->GetLocMaxCut() ) ;
603
98cbd830 604 emcRP = (AliPHOSEmcRecPoint *) emcIn->At(iRecPoint);
605 iRecPoint++ ;
d15a28e7 606
92862013 607 for(iDigit = 0 ; iDigit < nDigits ; iDigit ++){
98cbd830 608 digit = fPlease->GimeDigit( emcDigits[iDigit] ) ;
609 fGeom->AbsToRelNumbering(digit->GetId(), relid) ;
610 fGeom->RelPosInModule(relid, xDigit, zDigit) ;
92862013 611 distance = (xDigit - xpar) * (xDigit - xpar) + (zDigit - zpar) * (zDigit - zpar) ;
612 distance = TMath::Sqrt(distance) ;
b2a60966 613 ratio = epar * AliPHOSTrackSegmentMakerv1::ShowerShape(distance) / efit[iDigit] ;
92862013 614 eDigit = emcEnergies[iDigit] * ratio ;
9f616d61 615 emcRP->AddDigit( *digit, eDigit ) ;
d15a28e7 616 }
617
d15a28e7 618 }
31aa6d6c 619
620 delete[] fitparameters ;
621 delete[] efit ;
622
d15a28e7 623}
6ad0bfa0 624
d15a28e7 625//______________________________________________________________________________
92862013 626void UnfoldingChiSquare(Int_t & nPar, Double_t * Grad, Double_t & fret, Double_t * x, Int_t iflag)
d15a28e7 627{
b2a60966 628 // Calculates th Chi square for the cluster unfolding minimization
629 // Number of parameters, Gradient, Chi squared, parameters, what to do
98cbd830 630
9f616d61 631 AliPHOSEmcRecPoint * emcRP = (AliPHOSEmcRecPoint *) gMinuit->GetObjectFit() ; // EmcRecPoint to fit
98cbd830 632
6ad0bfa0 633 Int_t * emcDigits = emcRP->GetDigitsList() ;
98cbd830 634
635 Int_t nOfDigits = emcRP->GetDigitsMultiplicity() ;
636
d15a28e7 637 Float_t * emcEnergies = emcRP->GetEnergiesList() ;
98cbd830 638
639 AliPHOSGeometry * geom = AliPHOSGeometry::GetInstance() ;
640
641 AliPHOSIndexToObject * please = AliPHOSIndexToObject::GetInstance() ;
642
d15a28e7 643 fret = 0. ;
644 Int_t iparam ;
645
9f616d61 646 if(iflag == 2)
92862013 647 for(iparam = 0 ; iparam < nPar ; iparam++)
9f616d61 648 Grad[iparam] = 0 ; // Will evaluate gradient
649
98cbd830 650 Double_t efit ;
651
d15a28e7 652 AliPHOSDigit * digit ;
98cbd830 653 Int_t iDigit ;
654
655 for( iDigit = 0 ; iDigit < nOfDigits ; iDigit++) {
656
657 digit = please->GimeDigit( emcDigits[iDigit] ) ;
9f616d61 658
92862013 659 Int_t relid[4] ;
d15a28e7 660 Float_t xDigit ;
661 Float_t zDigit ;
98cbd830 662
92862013 663 geom->AbsToRelNumbering(digit->GetId(), relid) ;
98cbd830 664
92862013 665 geom->RelPosInModule(relid, xDigit, zDigit) ;
98cbd830 666
9f616d61 667 if(iflag == 2){ // calculate gradient
668 Int_t iParam = 0 ;
92862013 669 efit = 0 ;
670 while(iParam < nPar ){
671 Double_t distance = (xDigit - x[iParam]) * (xDigit - x[iParam]) ;
9f616d61 672 iParam++ ;
92862013 673 distance += (zDigit - x[iParam]) * (zDigit - x[iParam]) ;
674 distance = TMath::Sqrt( distance ) ;
9f616d61 675 iParam++ ;
92862013 676 efit += x[iParam] * AliPHOSTrackSegmentMakerv1::ShowerShape(distance) ;
9f616d61 677 iParam++ ;
678 }
92862013 679 Double_t sum = 2. * (efit - emcEnergies[iDigit]) / emcEnergies[iDigit] ; // Here we assume, that sigma = sqrt(E)
9f616d61 680 iParam = 0 ;
92862013 681 while(iParam < nPar ){
9f616d61 682 Double_t xpar = x[iParam] ;
683 Double_t zpar = x[iParam+1] ;
92862013 684 Double_t epar = x[iParam+2] ;
9f616d61 685 Double_t dr = TMath::Sqrt( (xDigit - xpar) * (xDigit - xpar) + (zDigit - zpar) * (zDigit - zpar) );
686 Double_t shape = sum * AliPHOSTrackSegmentMakerv1::ShowerShape(dr) ;
687 Double_t r4 = dr*dr*dr*dr ;
688 Double_t r295 = TMath::Power(dr,2.95) ;
689 Double_t deriv =-4. * dr*dr * ( 2.32 / ( (2.32 + 0.26 * r4) * (2.32 + 0.26 * r4) ) +
690 0.0316 * (1. + 0.0171 * r295) / ( ( 1. + 0.0652 * r295) * (1. + 0.0652 * r295) ) ) ;
691
92862013 692 Grad[iParam] += epar * shape * deriv * (xpar - xDigit) ; // Derivative over x
9f616d61 693 iParam++ ;
92862013 694 Grad[iParam] += epar * shape * deriv * (zpar - zDigit) ; // Derivative over z
9f616d61 695 iParam++ ;
696 Grad[iParam] += shape ; // Derivative over energy
697 iParam++ ;
698 }
699 }
92862013 700 efit = 0;
9f616d61 701 iparam = 0 ;
98cbd830 702
92862013 703 while(iparam < nPar ){
9f616d61 704 Double_t xpar = x[iparam] ;
705 Double_t zpar = x[iparam+1] ;
92862013 706 Double_t epar = x[iparam+2] ;
9f616d61 707 iparam += 3 ;
92862013 708 Double_t distance = (xDigit - xpar) * (xDigit - xpar) + (zDigit - zpar) * (zDigit - zpar) ;
709 distance = TMath::Sqrt(distance) ;
710 efit += epar * AliPHOSTrackSegmentMakerv1::ShowerShape(distance) ;
9f616d61 711 }
98cbd830 712
92862013 713 fret += (efit-emcEnergies[iDigit])*(efit-emcEnergies[iDigit])/emcEnergies[iDigit] ;
9f616d61 714 // Here we assume, that sigma = sqrt(E)
d15a28e7 715 }
98cbd830 716
d15a28e7 717}