]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONClusterSplitterMLEM.cxx
Fixed coverty 'defects'
[u/mrichter/AliRoot.git] / MUON / AliMUONClusterSplitterMLEM.cxx
CommitLineData
c0a16418 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
a9c259b2 16/* $Id$ */
c0a16418 17
3d1463c8 18//-----------------------------------------------------------------------------
c0a16418 19/// \class AliMUONClusterSplitterMLEM
20///
a9c259b2 21/// Splitter class for the MLEM algorithm. Performs fitting procedure
22/// with up to 3 hit candidates and tries to split clusters if the number
23/// of candidates exceeds 3.
c0a16418 24///
25/// \author Laurent Aphecetche (for the "new" C++ structure) and
26/// Alexander Zinchenko, JINR Dubna, for the hardcore of it ;-)
3d1463c8 27//-----------------------------------------------------------------------------
c0a16418 28
29#include "AliMUONClusterSplitterMLEM.h"
a9c259b2 30#include "AliMUONClusterFinderMLEM.h" // for status flag constants
c0a16418 31
c0a16418 32#include "AliMUONCluster.h"
33#include "AliMUONPad.h"
34#include "AliMUONPad.h"
c0a16418 35#include "AliMUONConstants.h"
36#include "AliMpDEManager.h"
37#include "AliMUONMathieson.h"
38
168e9c4d 39#include "AliMpEncodePair.h"
40
866c3232 41#include "AliLog.h"
42
43#include <TClonesArray.h>
44#include <TH2.h>
45#include <TMath.h>
46#include <TMatrixD.h>
47#include <TObjArray.h>
866c3232 48#include <TRandom.h>
9bbd7f60 49#include <Riostream.h>
866c3232 50
78649106 51/// \cond CLASSIMP
c0a16418 52ClassImp(AliMUONClusterSplitterMLEM)
78649106 53/// \endcond
c0a16418 54
a9c259b2 55//const Double_t AliMUONClusterSplitterMLEM::fgkCouplMin = 1.e-3; // threshold on coupling
56const Double_t AliMUONClusterSplitterMLEM::fgkCouplMin = 1.e-2; // threshold on coupling
c0a16418 57
58//_____________________________________________________________________________
59AliMUONClusterSplitterMLEM::AliMUONClusterSplitterMLEM(Int_t detElemId,
110edb51 60 TObjArray* pixArray,
61 Double_t lowestPixelCharge,
62 Double_t lowestPadCharge,
63 Double_t lowestClusterCharge)
c0a16418 64: TObject(),
bf0d3528 65fPixArray(pixArray),
c0a16418 66fMathieson(0x0),
67fDetElemId(detElemId),
68fNpar(0),
69fQtot(0),
9bbd7f60 70fnCoupled(0),
110edb51 71fDebug(0),
72fLowestPixelCharge(lowestPixelCharge),
73fLowestPadCharge(lowestPadCharge),
74fLowestClusterCharge(lowestClusterCharge)
c0a16418 75{
76 /// Constructor
77
4e51cfd2 78 AliMq::Station12Type stationType = AliMpDEManager::GetStation12Type(fDetElemId);
c0a16418 79
80 Float_t kx3 = AliMUONConstants::SqrtKx3();
81 Float_t ky3 = AliMUONConstants::SqrtKy3();
82 Float_t pitch = AliMUONConstants::Pitch();
83
4e51cfd2 84 if ( stationType == AliMq::kStation1 )
c0a16418 85 {
86 kx3 = AliMUONConstants::SqrtKx3St1();
87 ky3 = AliMUONConstants::SqrtKy3St1();
88 pitch = AliMUONConstants::PitchSt1();
89 }
90
91 fMathieson = new AliMUONMathieson;
92
93 fMathieson->SetPitch(pitch);
94 fMathieson->SetSqrtKx3AndDeriveKx2Kx4(kx3);
95 fMathieson->SetSqrtKy3AndDeriveKy2Ky4(ky3);
96
97}
98
99//_____________________________________________________________________________
100AliMUONClusterSplitterMLEM::~AliMUONClusterSplitterMLEM()
101{
71a2d3aa 102 /// Destructor
103
c0a16418 104 delete fMathieson;
105}
106
107//_____________________________________________________________________________
108void
109AliMUONClusterSplitterMLEM::AddBin(TH2 *mlem,
110 Int_t ic, Int_t jc, Int_t mode,
111 Bool_t *used, TObjArray *pix)
112{
113 /// Add a bin to the cluster
114
115 Int_t nx = mlem->GetNbinsX();
116 Int_t ny = mlem->GetNbinsY();
117 Double_t cont1, cont = mlem->GetCellContent(jc,ic);
118 AliMUONPad *pixPtr = 0;
119
2abdae6e 120 Int_t ie = TMath::Min(ic+1,ny), je = TMath::Min(jc+1,nx);
121 for (Int_t i = TMath::Max(ic-1,1); i <= ie; ++i) {
122 for (Int_t j = TMath::Max(jc-1,1); j <= je; ++j) {
c0a16418 123 if (i != ic && j != jc) continue;
124 if (used[(i-1)*nx+j-1]) continue;
125 cont1 = mlem->GetCellContent(j,i);
126 if (mode && cont1 > cont) continue;
127 used[(i-1)*nx+j-1] = kTRUE;
110edb51 128 if (cont1 < fLowestPixelCharge) continue;
c0a16418 129 if (pix) pix->Add(BinToPix(mlem,j,i));
130 else {
131 pixPtr = new AliMUONPad (mlem->GetXaxis()->GetBinCenter(j),
a9c259b2 132 mlem->GetYaxis()->GetBinCenter(i), 0, 0, cont1);
2abdae6e 133 fPixArray->Add(pixPtr);
c0a16418 134 }
135 AddBin(mlem, i, j, mode, used, pix); // recursive call
136 }
137 }
138}
139
140//_____________________________________________________________________________
141void
142AliMUONClusterSplitterMLEM::AddCluster(Int_t ic, Int_t nclust,
143 TMatrixD& aijcluclu,
144 Bool_t *used, Int_t *clustNumb, Int_t &nCoupled)
145{
146 /// Add a cluster to the group of coupled clusters
147
2abdae6e 148 for (Int_t i = 0; i < nclust; ++i) {
c0a16418 149 if (used[i]) continue;
150 if (aijcluclu(i,ic) < fgkCouplMin) continue;
151 used[i] = kTRUE;
152 clustNumb[nCoupled++] = i;
153 AddCluster(i, nclust, aijcluclu, used, clustNumb, nCoupled);
154 }
155}
156
157//_____________________________________________________________________________
158TObject*
159AliMUONClusterSplitterMLEM::BinToPix(TH2 *mlem,
160 Int_t jc, Int_t ic)
161{
162 /// Translate histogram bin to pixel
163
164 Double_t yc = mlem->GetYaxis()->GetBinCenter(ic);
165 Double_t xc = mlem->GetXaxis()->GetBinCenter(jc);
166
167 Int_t nPix = fPixArray->GetEntriesFast();
168 AliMUONPad *pixPtr = NULL;
169
170 // Compare pixel and bin positions
2abdae6e 171 for (Int_t i = 0; i < nPix; ++i) {
c0a16418 172 pixPtr = (AliMUONPad*) fPixArray->UncheckedAt(i);
110edb51 173 if (pixPtr->Charge() < fLowestPixelCharge) continue;
c0a16418 174 if (TMath::Abs(pixPtr->Coord(0)-xc)<1.e-4 && TMath::Abs(pixPtr->Coord(1)-yc)<1.e-4)
175 {
2abdae6e 176 //return (TObject*) pixPtr;
177 return pixPtr;
c0a16418 178 }
179 }
180 AliError(Form(" Something wrong ??? %f %f ", xc, yc));
181 return NULL;
182}
183
184//_____________________________________________________________________________
185Float_t
186AliMUONClusterSplitterMLEM::ChargeIntegration(Double_t x, Double_t y,
187 const AliMUONPad& pad)
188{
189 /// Compute the Mathieson integral on pad area, assuming the center
190 /// of the Mathieson is at (x,y)
191
192 TVector2 lowerLeft(TVector2(x,y)-pad.Position()-pad.Dimensions());
193 TVector2 upperRight(lowerLeft + pad.Dimensions()*2.0);
194
195 return fMathieson->IntXY(lowerLeft.X(),lowerLeft.Y(),
196 upperRight.X(),upperRight.Y());
197}
198
199//_____________________________________________________________________________
200void
201AliMUONClusterSplitterMLEM::Fcn1(const AliMUONCluster& cluster,
202 Int_t & /*fNpar*/, Double_t * /*gin*/,
a9c259b2 203 Double_t &f, Double_t *par, Int_t iflag)
c0a16418 204{
a9c259b2 205 /// Computes the functional to be minimized
c0a16418 206
207 Int_t indx, npads=0;
208 Double_t charge, delta, coef=0, chi2=0, qTot = 0;
a9c259b2 209 static Double_t qAver = 0;
c0a16418 210
a9c259b2 211 Int_t mult = cluster.Multiplicity(), iend = fNpar / 3;
2abdae6e 212 for (Int_t j = 0; j < mult; ++j)
c0a16418 213 {
214 AliMUONPad* pad = cluster.Pad(j);
a9c259b2 215 //if ( pad->Status() !=1 || pad->IsSaturated() ) continue;
50205ffb 216 if ( pad->Status() != AliMUONClusterFinderMLEM::GetUseForFitFlag() ||
217 pad->Charge() == 0 ) continue;
a9c259b2 218 if (iflag == 0) {
219 if ( pad->IsReal() ) npads++; // exclude virtual pads
220 qTot += pad->Charge();
221 }
c0a16418 222 charge = 0;
a9c259b2 223 for (Int_t i = 0; i <= iend; ++i)
224 {
225 // sum over hits
226 indx = 3 * i;
227 coef = Param2Coef(i, coef, par);
9bbd7f60 228 charge += ChargeIntegration(par[indx],par[indx+1],*pad) * coef;
c0a16418 229 }
230 charge *= fQtot;
a9c259b2 231 delta = charge - pad->Charge();
c0a16418 232 delta *= delta;
a9c259b2 233 delta /= pad->Charge();
c0a16418 234 chi2 += delta;
235 } // for (Int_t j=0;
a9c259b2 236 if (iflag == 0) qAver = qTot / npads;
237 f = chi2 / qAver;
238}
239
240//_____________________________________________________________________________
9ee1d6ff 241Double_t AliMUONClusterSplitterMLEM::Param2Coef(Int_t icand, Double_t coef, Double_t *par) const
a9c259b2 242{
243 /// Extract hit contribution scale factor from fit parameters
244
245 if (fNpar == 2) return 1.;
246 if (fNpar == 5) return icand==0 ? par[2] : TMath::Max(1.-par[2],0.);
247 if (icand == 0) return par[2];
248 if (icand == 1) return TMath::Max((1.-par[2])*par[5], 0.);
249 return TMath::Max(1.-par[2]-coef,0.);
c0a16418 250}
251
252//_____________________________________________________________________________
253Int_t
254AliMUONClusterSplitterMLEM::Fit(const AliMUONCluster& cluster,
255 Int_t iSimple, Int_t nfit,
57e2ad1a 256 const Int_t *clustFit, TObjArray **clusters,
c0a16418 257 Double_t *parOk,
b161da28 258 TObjArray& clusterList, TH2 *mlem)
c0a16418 259{
a9c259b2 260 /// Steering function and fitting procedure for the fit of pad charge distribution
c0a16418 261
262 // AliDebug(2,Form("iSimple=%d nfit=%d",iSimple,nfit));
263
c0a16418 264 Double_t xmin = mlem->GetXaxis()->GetXmin() - mlem->GetXaxis()->GetBinWidth(1);
265 Double_t xmax = mlem->GetXaxis()->GetXmax() + mlem->GetXaxis()->GetBinWidth(1);
266 Double_t ymin = mlem->GetYaxis()->GetXmin() - mlem->GetYaxis()->GetBinWidth(1);
267 Double_t ymax = mlem->GetYaxis()->GetXmax() + mlem->GetYaxis()->GetBinWidth(1);
a9c259b2 268 Double_t xPad = 0, yPad = 99999;
c0a16418 269
270 // Number of pads to use and number of virtual pads
271 Int_t npads = 0, nVirtual = 0, nfit0 = nfit;
9bbd7f60 272 //cluster.Print("full");
2abdae6e 273 Int_t mult = cluster.Multiplicity();
274 for (Int_t i = 0; i < mult; ++i )
c0a16418 275 {
276 AliMUONPad* pad = cluster.Pad(i);
9bbd7f60 277 if ( !pad->IsReal() ) ++nVirtual;
a9c259b2 278 //if ( pad->Status() !=1 || pad->IsSaturated() ) continue;
05542040 279 if ( pad->Status() != AliMUONClusterFinderMLEM::GetUseForFitFlag() ) continue;
9bbd7f60 280 if ( pad->IsReal() )
c0a16418 281 {
282 ++npads;
283 if (yPad > 9999)
284 {
a9c259b2 285 xPad = pad->X();
286 yPad = pad->Y();
c0a16418 287 }
288 else
289 {
a9c259b2 290 if (pad->DY() < pad->DX() )
c0a16418 291 {
a9c259b2 292 yPad = pad->Y();
c0a16418 293 }
294 else
295 {
a9c259b2 296 xPad = pad->X();
c0a16418 297 }
298 }
299 }
300 }
301
302 fNpar = 0;
303 fQtot = 0;
304
305 if (npads < 2) return 0;
306
307 // FIXME : AliWarning("Reconnect the following code for hit/track passing ?");
308
309 // Int_t tracks[3] = {-1, -1, -1};
310
311 /*
312 Int_t digit = 0;
313 AliMUONDigit *mdig = 0;
314 for (Int_t cath=0; cath<2; cath++) {
315 for (Int_t i=0; i<fnPads[0]+fnPads[1]; i++) {
316 if (fPadIJ[0][i] != cath) continue;
317 if (fPadIJ[1][i] != 1) continue;
318 if (fXyq[3][i] < 0) continue; // exclude virtual pads
319 digit = TMath::Nint (fXyq[5][i]);
320 if (digit >= 0) mdig = fInput->Digit(cath,digit);
321 else mdig = fInput->Digit(TMath::Even(cath),-digit-1);
322 //if (!mdig) mdig = fInput->Digit(TMath::Even(cath),digit);
323 if (!mdig) continue; // protection for cluster display
324 if (mdig->Hit() >= 0) {
325 if (tracks[0] < 0) {
326 tracks[0] = mdig->Hit();
327 tracks[1] = mdig->Track(0);
328 } else if (mdig->Track(0) < tracks[1]) {
329 tracks[0] = mdig->Hit();
330 tracks[1] = mdig->Track(0);
331 }
332 }
333 if (mdig->Track(1) >= 0 && mdig->Track(1) != tracks[1]) {
334 if (tracks[2] < 0) tracks[2] = mdig->Track(1);
335 else tracks[2] = TMath::Min (tracks[2], mdig->Track(1));
336 }
337 } // for (Int_t i=0;
338 } // for (Int_t cath=0;
339 */
340
341 // Get number of pads in X and Y
a9c259b2 342 //const Int_t kStatusToTest(1);
05542040 343 const Int_t kStatusToTest(AliMUONClusterFinderMLEM::GetUseForFitFlag());
c0a16418 344
168e9c4d 345 Long_t nofPads = cluster.NofPads(kStatusToTest);
346 Int_t nInX = AliMp::PairFirst(nofPads);
347 Int_t nInY = AliMp::PairSecond(nofPads);
9bbd7f60 348
349 if (fDebug) {
350 Int_t npadOK = 0;
351 for (Int_t j = 0; j < cluster.Multiplicity(); ++j) {
352 AliMUONPad *pad = cluster.Pad(j);
a9c259b2 353 //if (pad->Status() == 1 && !pad->IsSaturated()) npadOK++;
05542040 354 if (pad->Status() == AliMUONClusterFinderMLEM::GetUseForFitFlag() && !pad->IsSaturated()) npadOK++;
9bbd7f60 355 }
356 cout << " Number of pads to fit: " << npadOK << endl;
357 cout << " nInX and Y: " << nInX << " " << nInY << endl;
358 }
c0a16418 359
360 Int_t nfitMax = 3;
361 nfitMax = TMath::Min (nfitMax, (npads + 1) / 3);
362 if (nfitMax > 1) {
94bf739c 363 if (((nInX < 3) && (nInY < 3)) || ((nInX == 3) && (nInY < 3)) || ((nInX < 3) && (nInY == 3))) nfitMax = 1; // not enough pads in each direction
c0a16418 364 }
365 if (nfit > nfitMax) nfit = nfitMax;
366
367 // Take cluster maxima as fitting seeds
368 TObjArray *pix;
369 AliMUONPad *pixPtr;
370 Int_t npxclu;
371 Double_t cont, cmax = 0, xseed = 0, yseed = 0, errOk[8], qq = 0;
372 Double_t xyseed[3][2], qseed[3], xyCand[3][2] = {{0},{0}}, sigCand[3][2] = {{0},{0}};
373
2abdae6e 374 for (Int_t ifit = 1; ifit <= nfit0; ++ifit)
c0a16418 375 {
376 cmax = 0;
377 pix = clusters[clustFit[ifit-1]];
378 npxclu = pix->GetEntriesFast();
379 //qq = 0;
2abdae6e 380 for (Int_t clu = 0; clu < npxclu; ++clu)
c0a16418 381 {
382 pixPtr = (AliMUONPad*) pix->UncheckedAt(clu);
383 cont = pixPtr->Charge();
384 fQtot += cont;
385 if (cont > cmax)
386 {
387 cmax = cont;
388 xseed = pixPtr->Coord(0);
389 yseed = pixPtr->Coord(1);
390 }
391 qq += cont;
392 xyCand[0][0] += pixPtr->Coord(0) * cont;
393 xyCand[0][1] += pixPtr->Coord(1) * cont;
394 sigCand[0][0] += pixPtr->Coord(0) * pixPtr->Coord(0) * cont;
395 sigCand[0][1] += pixPtr->Coord(1) * pixPtr->Coord(1) * cont;
396 }
397 xyseed[ifit-1][0] = xseed;
398 xyseed[ifit-1][1] = yseed;
399 qseed[ifit-1] = cmax;
400 } // for (Int_t ifit=1;
401
402 xyCand[0][0] /= qq; // <x>
403 xyCand[0][1] /= qq; // <y>
404 sigCand[0][0] = sigCand[0][0]/qq - xyCand[0][0]*xyCand[0][0]; // <x^2> - <x>^2
405 sigCand[0][0] = sigCand[0][0] > 0 ? TMath::Sqrt (sigCand[0][0]) : 0;
406 sigCand[0][1] = sigCand[0][1]/qq - xyCand[0][1]*xyCand[0][1]; // <y^2> - <y>^2
407 sigCand[0][1] = sigCand[0][1] > 0 ? TMath::Sqrt (sigCand[0][1]) : 0;
9bbd7f60 408 if (fDebug) cout << xyCand[0][0] << " " << xyCand[0][1] << " " << sigCand[0][0] << " " << sigCand[0][1] << endl;
c0a16418 409
410 Int_t nDof, maxSeed[3];//, nMax = 0;
1e875d50 411
412 if ( nfit0 < 0 || nfit0 > 3 ) {
413 AliErrorStream() << "Wrong nfit0 value: " << nfit0 << endl;
414 return nfit;
415 }
a9c259b2 416 TMath::Sort(nfit0, qseed, maxSeed, kTRUE); // in decreasing order
c0a16418 417
a9c259b2 418 Double_t step[3]={0.01,0.002,0.02}, fmin, chi2o = 9999, chi2n;
419 Double_t *gin = 0, func0, func1, param[8], step0[8];
420 Double_t param0[2][8]={{0},{0}}, deriv[2][8]={{0},{0}};
421 Double_t shift[8], stepMax, derMax, parmin[8], parmax[8], func2[2], shift0;
422 Double_t delta[8], scMax, dder[8], estim, shiftSave = 0;
423 Int_t min, max, nCall = 0, nLoop, idMax = 0, iestMax = 0, nFail;
424 Double_t rad, dist[3] = {0};
c0a16418 425
a9c259b2 426 // Try to fit with one-track hypothesis, then 2-track. If chi2/dof is
427 // lower, try 3-track (if number of pads is sufficient).
428 Int_t iflag = 0; // for the first call of fcn1
429 for (Int_t iseed = 0; iseed < nfit; ++iseed)
430 {
c0a16418 431
a9c259b2 432 Int_t memory[8] = {0};
433 if (iseed)
434 {
435 for (Int_t j = 0; j < fNpar; ++j)
c0a16418 436 {
a9c259b2 437 param[j] = parOk[j];
c0a16418 438 }
a9c259b2 439 param[fNpar] = 0.6;
440 parmin[fNpar] = 0;
441 parmax[fNpar++] = 1;
442 }
c0a16418 443
a9c259b2 444 if (nfit == 1)
445 {
446 param[fNpar] = xyCand[0][0]; // take COG
447 }
448 else
449 {
450 param[fNpar] = xyseed[maxSeed[iseed]][0];
451 //param[fNpar] = fNpar==0 ? -16.1651 : -15.2761;
452 }
453 parmin[fNpar] = xmin;
454 parmax[fNpar++] = xmax;
455 if (nfit == 1)
456 {
457 param[fNpar] = xyCand[0][1]; // take COG
458 }
459 else
460 {
461 param[fNpar] = xyseed[maxSeed[iseed]][1];
462 //param[fNpar] = fNpar==1 ? -15.1737 : -15.8487;
463 }
464 parmin[fNpar] = ymin;
465 parmax[fNpar++] = ymax;
466
467 for (Int_t j = 0; j < fNpar; ++j)
468 {
469 step0[j] = shift[j] = step[j%3];
470 }
471
472 if (iseed)
473 {
474 for (Int_t j = 0; j < fNpar; ++j)
c0a16418 475 {
a9c259b2 476 param0[1][j] = 0;
2abdae6e 477 }
a9c259b2 478 }
479 if (fDebug) {
480 for (Int_t j = 0; j < fNpar; ++j) cout << param[j] << " ";
481 cout << endl;
482 }
c0a16418 483
a9c259b2 484 // Try new algorithm
485 min = nLoop = 1; stepMax = func2[1] = derMax = 999999; nFail = 0;
486
487 while (1)
488 {
489 max = !min;
490 Fcn1(cluster,fNpar, gin, func0, param, iflag); nCall++;
491 iflag = 1;
492 //cout << " Func: " << func0 << endl;
c0a16418 493
a9c259b2 494 func2[max] = func0;
495 for (Int_t j = 0; j < fNpar; ++j)
c0a16418 496 {
a9c259b2 497 param0[max][j] = param[j];
498 delta[j] = step0[j];
499 param[j] += delta[j] / 10;
500 if (j > 0) param[j-1] -= delta[j-1] / 10;
501 Fcn1(cluster,fNpar, gin, func1, param, iflag); nCall++;
502 deriv[max][j] = (func1 - func0) / delta[j] * 10; // first derivative
503 //cout << j << " " << deriv[max][j] << endl;
504 dder[j] = param0[0][j] != param0[1][j] ? (deriv[0][j] - deriv[1][j]) /
505 (param0[0][j] - param0[1][j]) : 0; // second derivative
506 }
507 param[fNpar-1] -= delta[fNpar-1] / 10;
508 if (nCall > 2000) break;
c0a16418 509
a9c259b2 510 min = func2[0] < func2[1] ? 0 : 1;
511 nFail = min == max ? 0 : nFail + 1;
c0a16418 512
a9c259b2 513 stepMax = derMax = estim = 0;
514 for (Int_t j = 0; j < fNpar; ++j)
515 {
516 // Estimated distance to minimum
517 shift0 = shift[j];
518 if (nLoop == 1)
519 {
520 shift[j] = TMath::Sign (step0[j], -deriv[max][j]); // first step
521 }
522 else if (TMath::Abs(deriv[0][j]) < 1.e-3 && TMath::Abs(deriv[1][j]) < 1.e-3)
523 {
524 shift[j] = 0;
525 }
94bf739c 526 else if (((deriv[min][j]*deriv[!min][j] > 0) && (TMath::Abs(deriv[min][j]) > TMath::Abs(deriv[!min][j])))
527 || (TMath::Abs(deriv[0][j]-deriv[1][j]) < 1.e-3) || (TMath::Abs(dder[j]) < 1.e-6))
a9c259b2 528 {
529 shift[j] = -TMath::Sign (shift[j], (func2[0]-func2[1]) * (param0[0][j]-param0[1][j]));
530 if (min == max)
531 {
532 if (memory[j] > 1)
9bbd7f60 533 {
a9c259b2 534 shift[j] *= 2;
535 }
536 memory[j]++;
9bbd7f60 537 }
a9c259b2 538 }
539 else
540 {
541 shift[j] = dder[j] != 0 ? -deriv[min][j] / dder[j] : 0;
542 memory[j] = 0;
543 }
c0a16418 544
a9c259b2 545 Double_t es = TMath::Abs(shift[j]) / step0[j];
546 if (es > estim)
547 {
548 estim = es;
549 iestMax = j;
550 }
c0a16418 551
a9c259b2 552 // Too big step
553 if (TMath::Abs(shift[j])/step0[j] > 10) shift[j] = TMath::Sign(10.,shift[j]) * step0[j]; //
554
555 // Failed to improve minimum
556 if (min != max)
557 {
558 memory[j] = 0;
559 param[j] = param0[min][j];
560 if (TMath::Abs(shift[j]+shift0) > 0.1*step0[j])
c0a16418 561 {
a9c259b2 562 shift[j] = (shift[j] + shift0) / 2;
563 }
564 else
c0a16418 565 {
a9c259b2 566 shift[j] /= -2;
567 }
568 }
c0a16418 569
a9c259b2 570 // Too big step
571 if (TMath::Abs(shift[j]*deriv[min][j]) > func2[min])
572 {
573 shift[j] = TMath::Sign (func2[min]/deriv[min][j], shift[j]);
574 }
575
576 // Introduce step relaxation factor
577 if (memory[j] < 3)
578 {
579 scMax = 1 + 4 / TMath::Max(nLoop/2.,1.);
580 if (TMath::Abs(shift0) > 0 && TMath::Abs(shift[j]/shift0) > scMax)
c0a16418 581 {
a9c259b2 582 shift[j] = TMath::Sign (shift0*scMax, shift[j]);
583 }
584 }
585 param[j] += shift[j];
586 // Check parameter limits
587 if (param[j] < parmin[j])
588 {
589 shift[j] = parmin[j] - param[j];
590 param[j] = parmin[j];
591 }
592 else if (param[j] > parmax[j])
593 {
594 shift[j] = parmax[j] - param[j];
595 param[j] = parmax[j];
596 }
597 //cout << " xxx " << j << " " << shift[j] << " " << param[j] << endl;
598 stepMax = TMath::Max (stepMax, TMath::Abs(shift[j]/step0[j]));
599 if (TMath::Abs(deriv[min][j]) > derMax)
600 {
601 idMax = j;
602 derMax = TMath::Abs (deriv[min][j]);
603 }
604 } // for (Int_t j=0; j<fNpar;
c0a16418 605
94bf739c 606 if (((estim < 1) && (derMax < 2)) || nLoop > 150) break; // minimum was found
c0a16418 607
a9c259b2 608 nLoop++;
c0a16418 609
a9c259b2 610 // Check for small step
611 if (shift[idMax] == 0)
612 {
613 shift[idMax] = step0[idMax]/10;
614 param[idMax] += shift[idMax];
615 continue;
616 }
c0a16418 617
a9c259b2 618 if (!memory[idMax] && derMax > 0.5 && nLoop > 10)
619 {
620 if (dder[idMax] != 0 && TMath::Abs(deriv[min][idMax]/dder[idMax]/shift[idMax]) > 10)
c0a16418 621 {
a9c259b2 622 if (min == max) dder[idMax] = -dder[idMax];
623 shift[idMax] = -deriv[min][idMax] / dder[idMax] / 10;
624 param[idMax] += shift[idMax];
625 stepMax = TMath::Max (stepMax, TMath::Abs(shift[idMax])/step0[idMax]);
626 if (min == max) shiftSave = shift[idMax];
627 }
628 if (nFail > 10)
629 {
630 param[idMax] -= shift[idMax];
631 shift[idMax] = 4 * shiftSave * (gRandom->Rndm(0) - 0.5);
632 param[idMax] += shift[idMax];
633 }
634 }
635 } // while (1)
c0a16418 636
a9c259b2 637 fmin = func2[min];
638
639 nDof = npads - fNpar + nVirtual;
640 if (!nDof) nDof++;
641 chi2n = fmin / nDof;
642 if (fDebug) cout << " Chi2 " << chi2n << " " << fNpar << endl;
c0a16418 643
a9c259b2 644 //if (fNpar > 2) cout << param0[min][fNpar-3] << " " << chi2n * (1+TMath::Min(1-param0[min][fNpar-3],0.25)) << endl;
645 //if (chi2n*1.2+1.e-6 > chi2o )
94bf739c 646 if (fNpar > 2 && (chi2n > chi2o || ((iseed == nfit-1)
647 && (chi2n * (1+TMath::Min(1-param0[min][fNpar-3],0.25)) > chi2o))))
a9c259b2 648 { fNpar -= 3; break; }
c0a16418 649
a9c259b2 650 // Save parameters and errors
c0a16418 651
a9c259b2 652 if (nInX == 1) {
653 // One pad per direction
654 //for (Int_t i=0; i<fNpar; ++i) if (i == 0 || i == 2 || i == 5) param0[min][i] = xPad;
655 for (Int_t i=0; i<fNpar; ++i) if (i == 0 || i == 2 || i == 5)
656 param0[min][i] = xyCand[0][0];
657 }
658 if (nInY == 1) {
659 // One pad per direction
660 //for (Int_t i=0; i<fNpar; ++i) if (i == 1 || i == 3 || i == 6) param0[min][i] = yPad;
661 for (Int_t i=0; i<fNpar; ++i) if (i == 1 || i == 3 || i == 6)
662 param0[min][i] = xyCand[0][1];
663 }
c0a16418 664
a9c259b2 665 /*
666 if (iseed > 0) {
667 // Find distance to the nearest neighbour
668 dist[0] = dist[1] = TMath::Sqrt ((param0[min][0]-param0[min][2])*
669 (param0[min][0]-param0[min][2])
670 +(param0[min][1]-param0[min][3])*
671 (param0[min][1]-param0[min][3]));
672 if (iseed > 1) {
673 dist[2] = TMath::Sqrt ((param0[min][0]-param0[min][5])*
674 (param0[min][0]-param0[min][5])
675 +(param0[min][1]-param0[min][6])*
676 (param0[min][1]-param0[min][6]));
677 rad = TMath::Sqrt ((param0[min][2]-param0[min][5])*
678 (param0[min][2]-param0[min][5])
679 +(param0[min][3]-param0[min][6])*
680 (param0[min][3]-param0[min][6]));
681 if (dist[2] < dist[0]) dist[0] = dist[2];
682 if (rad < dist[1]) dist[1] = rad;
683 if (rad < dist[2]) dist[2] = rad;
c0a16418 684 }
a9c259b2 685 cout << dist[0] << " " << dist[1] << " " << dist[2] << endl;
686 if (dist[TMath::LocMin(iseed+1,dist)] < 1.) { fNpar -= 3; break; }
c0a16418 687 }
a9c259b2 688 */
c0a16418 689
a9c259b2 690 for (Int_t i = 0; i < fNpar; ++i) {
691 parOk[i] = param0[min][i];
692 //errOk[i] = fmin;
693 errOk[i] = chi2n;
694 // Bounded params
695 parOk[i] = TMath::Max (parOk[i], parmin[i]);
696 parOk[i] = TMath::Min (parOk[i], parmax[i]);
697 }
c0a16418 698
a9c259b2 699 chi2o = chi2n;
700 if (fmin < 0.1) break; // !!!???
701 } // for (Int_t iseed=0;
9bbd7f60 702
a9c259b2 703 if (fDebug) {
704 for (Int_t i=0; i<fNpar; ++i) {
705 if (i == 4 || i == 7) {
94bf739c 706 if ((i == 7) || ((i == 4) && (fNpar < 7))) cout << parOk[i] << endl;
a9c259b2 707 else cout << parOk[i] * (1-parOk[7]) << endl;
708 continue;
9bbd7f60 709 }
a9c259b2 710 cout << parOk[i] << " " << errOk[i] << endl;
9bbd7f60 711 }
a9c259b2 712 }
713 nfit = (fNpar + 1) / 3;
714 dist[0] = dist[1] = dist[2] = 0;
715
716 if (nfit > 1) {
717 // Find distance to the nearest neighbour
718 dist[0] = dist[1] = TMath::Sqrt ((parOk[0]-parOk[2])*
719 (parOk[0]-parOk[2])
720 +(parOk[1]-parOk[3])*
721 (parOk[1]-parOk[3]));
722 if (nfit > 2) {
723 dist[2] = TMath::Sqrt ((parOk[0]-parOk[5])*
724 (parOk[0]-parOk[5])
725 +(parOk[1]-parOk[6])*
726 (parOk[1]-parOk[6]));
727 rad = TMath::Sqrt ((parOk[2]-parOk[5])*
728 (parOk[2]-parOk[5])
729 +(parOk[3]-parOk[6])*
730 (parOk[3]-parOk[6]));
731 if (dist[2] < dist[0]) dist[0] = dist[2];
732 if (rad < dist[1]) dist[1] = rad;
733 if (rad < dist[2]) dist[2] = rad;
c0a16418 734 }
a9c259b2 735 }
c0a16418 736
a9c259b2 737 Int_t indx;
738
739 Double_t coef = 0;
740 if (iSimple) fnCoupled = 0;
741 for (Int_t j = 0; j < nfit; ++j) {
742 indx = 3 * j;
743 coef = Param2Coef(j, coef, parOk);
744
745 //void AliMUONClusterFinderMLEM::AddRawCluster(Double_t x, Double_t y,
746 // Double_t qTot, Double_t fmin,
747 // Int_t nfit, Int_t *tracks,
748 // Double_t /*sigx*/,
749 // Double_t /*sigy*/,
750 // Double_t /*dist*/)
c0a16418 751
110edb51 752 if ( coef*fQtot >= fLowestClusterCharge )
a9c259b2 753 {
754 //AZ AliMUONCluster* cluster1 = new AliMUONCluster();
755 AliMUONCluster* cluster1 = new AliMUONCluster(cluster);
c0a16418 756
a9c259b2 757 cluster1->SetCharge(coef*fQtot,coef*fQtot);
758 cluster1->SetPosition(TVector2(parOk[indx],parOk[indx+1]),TVector2(sigCand[0][0],sigCand[0][1]));
759 cluster1->SetChi2(dist[TMath::LocMin(nfit,dist)]);
c0a16418 760
a9c259b2 761 // FIXME: we miss some information in this cluster, as compared to
762 // the original AddRawCluster code.
763
764 AliDebug(2,Form("Adding RawCluster detElemId %4d mult %2d charge %5d (xl,yl)=(%9.6g,%9.6g)",
765 fDetElemId,cluster1->Multiplicity(),(Int_t)cluster1->Charge(),
766 cluster1->Position().X(),cluster1->Position().Y()));
c0a16418 767
a9c259b2 768 clusterList.Add(cluster1);
c0a16418 769 }
a9c259b2 770 // AddRawCluster (parOk[indx], // double x
771 // parOk[indx+1], // double y
772 // coef*qTot, // double charge
773 // errOk[indx], // double fmin
774 // nfit0+10*nfit+100*nMax+10000*fnCoupled, // int nfit
775 // tracks, // int* tracks
776 // sigCand[0][0], // double sigx
777 // sigCand[0][1], // double sigy
778 // dist[TMath::LocMin(nfit,dist)] // double dist
779 // );
780 }
781 return nfit;
782}
c0a16418 783
784
785//_____________________________________________________________________________
786void
787AliMUONClusterSplitterMLEM::Split(const AliMUONCluster& cluster,
a9c259b2 788 TH2 *mlem, Double_t *coef,
c0a16418 789 TObjArray& clusterList)
790{
791 /// The main steering function to work with clusters of pixels in anode
792 /// plane (find clusters, decouple them from each other, merge them (if
793 /// necessary), pick up coupled pads, call the fitting function)
794
795 Int_t nx = mlem->GetNbinsX();
796 Int_t ny = mlem->GetNbinsY();
797 Int_t nPix = fPixArray->GetEntriesFast();
798
c0a16418 799 Double_t cont;
a9c259b2 800 Int_t nclust = 0, indx, indx1, nxy = ny * nx;
801 Bool_t *used = new Bool_t[nxy];
c0a16418 802
a9c259b2 803 for (Int_t j = 0; j < nxy; ++j) used[j] = kFALSE;
c0a16418 804
805 TObjArray *clusters[200]={0};
806 TObjArray *pix;
807
808 // Find clusters of histogram bins (easier to work in 2-D space)
2abdae6e 809 for (Int_t i = 1; i <= ny; ++i)
c0a16418 810 {
2abdae6e 811 for (Int_t j = 1; j <= nx; ++j)
c0a16418 812 {
813 indx = (i-1)*nx + j - 1;
814 if (used[indx]) continue;
815 cont = mlem->GetCellContent(j,i);
110edb51 816 if (cont < fLowestPixelCharge) continue;
c0a16418 817 pix = new TObjArray(20);
818 used[indx] = 1;
819 pix->Add(BinToPix(mlem,j,i));
820 AddBin(mlem, i, j, 0, used, pix); // recursive call
821 if (nclust >= 200) AliFatal(" Too many clusters !!!");
822 clusters[nclust++] = pix;
823 } // for (Int_t j=1; j<=nx; j++) {
a9c259b2 824 } // for (Int_t i=1; i<=ny;
825 if (fDebug) cout << nclust << endl;
2abdae6e 826 delete [] used;
c0a16418 827
828 // Compute couplings between clusters and clusters to pads
829 Int_t npad = cluster.Multiplicity();
830
831 // Exclude pads with overflows
a9c259b2 832 /*
2abdae6e 833 for (Int_t j = 0; j < npad; ++j)
c0a16418 834 {
835 AliMUONPad* pad = cluster.Pad(j);
836 if ( pad->IsSaturated() )
837 {
838 pad->SetStatus(-5);
839 }
840 else
841 {
842 pad->SetStatus(0);
843 }
844 }
a9c259b2 845 */
c0a16418 846
a9c259b2 847 // Compute couplings of clusters to pads (including overflows)
c0a16418 848 TMatrixD aijclupad(nclust,npad);
849 aijclupad = 0;
850 Int_t npxclu;
2abdae6e 851 for (Int_t iclust = 0; iclust < nclust; ++iclust)
c0a16418 852 {
853 pix = clusters[iclust];
854 npxclu = pix->GetEntriesFast();
2abdae6e 855 for (Int_t i = 0; i < npxclu; ++i)
c0a16418 856 {
857 indx = fPixArray->IndexOf(pix->UncheckedAt(i));
2abdae6e 858 for (Int_t j = 0; j < npad; ++j)
c0a16418 859 {
a9c259b2 860 //AliMUONPad* pad = cluster.Pad(j);
861 //if ( pad->Status() < 0 && pad->Status() != -5) continue;
c0a16418 862 if (coef[j*nPix+indx] < fgkCouplMin) continue;
863 aijclupad(iclust,j) += coef[j*nPix+indx];
864 }
865 }
866 }
867
a9c259b2 868 // Compute couplings between clusters (exclude overflows)
c0a16418 869 TMatrixD aijcluclu(nclust,nclust);
870 aijcluclu = 0;
2abdae6e 871 for (Int_t iclust = 0; iclust < nclust; ++iclust)
c0a16418 872 {
2abdae6e 873 for (Int_t j = 0; j < npad; ++j)
c0a16418 874 {
875 // Exclude overflows
a9c259b2 876 //if ( cluster.Pad(j)->Status() < 0) continue;
877 if ( cluster.Pad(j)->IsSaturated()) continue;
c0a16418 878 if (aijclupad(iclust,j) < fgkCouplMin) continue;
879 for (Int_t iclust1=iclust+1; iclust1<nclust; iclust1++)
880 {
881 if (aijclupad(iclust1,j) < fgkCouplMin) continue;
882 aijcluclu(iclust,iclust1) +=
883 TMath::Sqrt (aijclupad(iclust,j)*aijclupad(iclust1,j));
884 }
885 }
886 }
2abdae6e 887 for (Int_t iclust = 0; iclust < nclust; ++iclust)
c0a16418 888 {
2abdae6e 889 for (Int_t iclust1 = iclust+1; iclust1 < nclust; ++iclust1)
c0a16418 890 {
891 aijcluclu(iclust1,iclust) = aijcluclu(iclust,iclust1);
892 }
893 }
894
2abdae6e 895 if (fDebug && nclust > 1) aijcluclu.Print();
896
c0a16418 897 // Find groups of coupled clusters
898 used = new Bool_t[nclust];
a9c259b2 899 for (Int_t j = 0; j < nclust; ++j) used[j] = kFALSE;
2abdae6e 900
c0a16418 901 Int_t *clustNumb = new Int_t[nclust];
902 Int_t nCoupled, nForFit, minGroup[3], clustFit[3], nfit = 0;
2abdae6e 903 //Double_t parOk[8];
904 Double_t parOk[8] = {0}; //AZ
c0a16418 905
2abdae6e 906 for (Int_t igroup = 0; igroup < nclust; ++igroup)
c0a16418 907 {
908 if (used[igroup]) continue;
909 used[igroup] = kTRUE;
910 clustNumb[0] = igroup;
911 nCoupled = 1;
912 // Find group of coupled clusters
913 AddCluster(igroup, nclust, aijcluclu, used, clustNumb, nCoupled); // recursive
914
2abdae6e 915 if (fDebug) {
916 cout << " nCoupled: " << nCoupled << endl;
917 for (Int_t i=0; i<nCoupled; ++i) cout << clustNumb[i] << " "; cout << endl;
918 }
c0a16418 919
920 fnCoupled = nCoupled;
921
922 while (nCoupled > 0)
923 {
924 if (nCoupled < 4)
925 {
926 nForFit = nCoupled;
2abdae6e 927 for (Int_t i = 0; i < nCoupled; ++i) clustFit[i] = clustNumb[i];
c0a16418 928 }
929 else
930 {
931 // Too many coupled clusters to fit - try to decouple them
932 // Find the lowest coupling of 1, 2, min(3,nLinks/2) pixels with
933 // all the others in the group
2abdae6e 934 for (Int_t j = 0; j < 3; ++j) minGroup[j] = -1;
935 Double_t coupl = MinGroupCoupl(nCoupled, clustNumb, aijcluclu, minGroup);
c0a16418 936
937 // Flag clusters for fit
938 nForFit = 0;
939 while (minGroup[nForFit] >= 0 && nForFit < 3)
940 {
2abdae6e 941 if (fDebug) cout << clustNumb[minGroup[nForFit]] << " ";
c0a16418 942 clustFit[nForFit] = clustNumb[minGroup[nForFit]];
943 clustNumb[minGroup[nForFit]] -= 999;
944 nForFit++;
945 }
2abdae6e 946 if (fDebug) cout << " nForFit " << nForFit << " " << coupl << endl;
c0a16418 947 } // else
948
949 // Select pads for fit.
950 if (SelectPad(cluster,nCoupled, nForFit, clustNumb, clustFit, aijclupad) < 3 && nCoupled > 1)
951 {
952 // Deselect pads
2abdae6e 953 for (Int_t j = 0; j < npad; ++j)
c0a16418 954 {
955 AliMUONPad* pad = cluster.Pad(j);
a9c259b2 956 //if ( pad->Status()==1 ) pad->SetStatus(0);
957 //if ( pad->Status()==-9) pad->SetStatus(-5);
05542040 958 if ( pad->Status() == AliMUONClusterFinderMLEM::GetUseForFitFlag() ||
959 pad->Status() == AliMUONClusterFinderMLEM::GetCoupledFlag())
960 pad->SetStatus(AliMUONClusterFinderMLEM::GetZeroFlag());
c0a16418 961 }
962 // Merge the failed cluster candidates (with too few pads to fit) with
963 // the one with the strongest coupling
964 Merge(cluster,nForFit, nCoupled, clustNumb, clustFit, clusters, aijcluclu, aijclupad);
965 }
966 else
967 {
968 // Do the fit
b161da28 969 nfit = Fit(cluster,0, nForFit, clustFit, clusters, parOk, clusterList, mlem);
2abdae6e 970 if (nfit == 0) {
a9c259b2 971 //cout << " (nfit == 0) " << fNpar << " " << cluster.Multiplicity() << endl;
972 fNpar = 0; // should be 0 by itself but just in case ...
2abdae6e 973 }
c0a16418 974 }
975
976 // Subtract the fitted charges from pads with strong coupling and/or
977 // return pads for further use
978 UpdatePads(cluster,nfit, parOk);
979
980 // Mark used pads
2abdae6e 981 for (Int_t j = 0; j < npad; ++j)
c0a16418 982 {
983 AliMUONPad* pad = cluster.Pad(j);
a9c259b2 984 //if ( pad->Status()==1 ) pad->SetStatus(-2);
985 //if ( pad->Status()==-9) pad->SetStatus(-5);
05542040 986 if ( pad->Status() == AliMUONClusterFinderMLEM::GetUseForFitFlag() )
987 pad->SetStatus(AliMUONClusterFinderMLEM::GetModifiedFlag());
c0a16418 988 }
989
990 // Sort the clusters (move to the right the used ones)
991 Int_t beg = 0, end = nCoupled - 1;
992 while (beg < end)
993 {
994 if (clustNumb[beg] >= 0) { ++beg; continue; }
2abdae6e 995 for (Int_t j = end; j > beg; --j)
c0a16418 996 {
997 if (clustNumb[j] < 0) continue;
998 end = j - 1;
999 indx = clustNumb[beg];
1000 clustNumb[beg] = clustNumb[j];
1001 clustNumb[j] = indx;
1002 break;
1003 }
1004 ++beg;
1005 }
1006
1007 nCoupled -= nForFit;
1008 if (nCoupled > 3)
1009 {
1010 // Remove couplings of used clusters
2abdae6e 1011 for (Int_t iclust = nCoupled; iclust < nCoupled+nForFit; ++iclust)
c0a16418 1012 {
1013 indx = clustNumb[iclust] + 999;
2abdae6e 1014 for (Int_t iclust1 = 0; iclust1 < nCoupled; ++iclust1)
c0a16418 1015 {
1016 indx1 = clustNumb[iclust1];
1017 aijcluclu(indx,indx1) = aijcluclu(indx1,indx) = 0;
1018 }
1019 }
1020
a9c259b2 1021 // Update the remaining clusters couplings (subtract couplings from
1022 // the used pads) - overflows excluded
2abdae6e 1023 for (Int_t j = 0; j < npad; ++j)
c0a16418 1024 {
1025 AliMUONPad* pad = cluster.Pad(j);
a9c259b2 1026 //if ( pad->Status() != -2) continue;
05542040 1027 if ( pad->Status() != AliMUONClusterFinderMLEM::GetModifiedFlag()) continue;
c0a16418 1028 for (Int_t iclust=0; iclust<nCoupled; ++iclust)
1029 {
1030 indx = clustNumb[iclust];
1031 if (aijclupad(indx,j) < fgkCouplMin) continue;
2abdae6e 1032 for (Int_t iclust1 = iclust+1; iclust1 < nCoupled; ++iclust1)
c0a16418 1033 {
1034 indx1 = clustNumb[iclust1];
1035 if (aijclupad(indx1,j) < fgkCouplMin) continue;
1036 // Check this
1037 aijcluclu(indx,indx1) -=
1038 TMath::Sqrt (aijclupad(indx,j)*aijclupad(indx1,j));
1039 aijcluclu(indx1,indx) = aijcluclu(indx,indx1);
1040 }
1041 }
a9c259b2 1042 //pad->SetStatus(-8);
05542040 1043 pad->SetStatus(AliMUONClusterFinderMLEM::GetOverFlag());
c0a16418 1044 } // for (Int_t j=0; j<npad;
1045 } // if (nCoupled > 3)
1046 } // while (nCoupled > 0)
1047 } // for (Int_t igroup=0; igroup<nclust;
1048
2abdae6e 1049 for (Int_t iclust = 0; iclust < nclust; ++iclust)
c0a16418 1050 {
1051 pix = clusters[iclust];
1052 pix->Clear();
1053 delete pix;
c0a16418 1054 }
1055 delete [] clustNumb;
c0a16418 1056 delete [] used;
c0a16418 1057
1058}
1059
1060//_____________________________________________________________________________
1061void
1062AliMUONClusterSplitterMLEM::Merge(const AliMUONCluster& cluster,
1063 Int_t nForFit, Int_t nCoupled,
57e2ad1a 1064 const Int_t *clustNumb, const Int_t *clustFit,
c0a16418 1065 TObjArray **clusters,
1066 TMatrixD& aijcluclu, TMatrixD& aijclupad)
1067{
1068 /// Merge the group of clusters with the one having the strongest coupling with them
1069
1070 Int_t indx, indx1, npxclu, npxclu1, imax=0;
1071 TObjArray *pix, *pix1;
1072 Double_t couplMax;
1073
2abdae6e 1074 for (Int_t icl = 0; icl < nForFit; ++icl)
c0a16418 1075 {
1076 indx = clustFit[icl];
1077 pix = clusters[indx];
1078 npxclu = pix->GetEntriesFast();
1079 couplMax = -1;
2abdae6e 1080 for (Int_t icl1 = 0; icl1 < nCoupled; ++icl1)
c0a16418 1081 {
1082 indx1 = clustNumb[icl1];
1083 if (indx1 < 0) continue;
1084 if ( aijcluclu(indx,indx1) > couplMax)
1085 {
1086 couplMax = aijcluclu(indx,indx1);
1087 imax = indx1;
1088 }
1089 } // for (Int_t icl1=0;
1090 // Add to it
1091 pix1 = clusters[imax];
1092 npxclu1 = pix1->GetEntriesFast();
1093 // Add pixels
2abdae6e 1094 for (Int_t i = 0; i < npxclu; ++i)
c0a16418 1095 {
1096 pix1->Add(pix->UncheckedAt(i));
1097 pix->RemoveAt(i);
1098 }
1099
1100 //Add cluster-to-cluster couplings
2abdae6e 1101 for (Int_t icl1 = 0; icl1 < nCoupled; ++icl1)
c0a16418 1102 {
1103 indx1 = clustNumb[icl1];
1104 if (indx1 < 0 || indx1 == imax) continue;
1105 aijcluclu(indx1,imax) += aijcluclu(indx,indx1);
1106 aijcluclu(imax,indx1) = aijcluclu(indx1,imax);
1107 }
1108 aijcluclu(indx,imax) = aijcluclu(imax,indx) = 0;
1109
1110 //Add cluster-to-pad couplings
2abdae6e 1111 Int_t mult = cluster.Multiplicity();
1112 for (Int_t j = 0; j < mult; ++j)
c0a16418 1113 {
1114 AliMUONPad* pad = cluster.Pad(j);
a9c259b2 1115 //if ( pad->Status() < 0 && pad->Status() != -5 ) continue;// exclude used pads
05542040 1116 if ( pad->Status() != AliMUONClusterFinderMLEM::GetZeroFlag()) continue;// exclude used pads
c0a16418 1117 aijclupad(imax,j) += aijclupad(indx,j);
1118 aijclupad(indx,j) = 0;
1119 }
1120 } // for (Int_t icl=0; icl<nForFit;
1121}
1122
1123
1124//_____________________________________________________________________________
1125Double_t
57e2ad1a 1126AliMUONClusterSplitterMLEM::MinGroupCoupl(Int_t nCoupled, const Int_t *clustNumb,
1127 const TMatrixD& aijcluclu, Int_t *minGroup)
c0a16418 1128{
1129 /// Find group of clusters with minimum coupling to all the others
1130
1131 Int_t i123max = TMath::Min(3,nCoupled/2);
1132 Int_t indx, indx1, indx2, indx3, nTot = 0;
1133 Double_t *coupl1 = 0, *coupl2 = 0, *coupl3 = 0;
1134
2abdae6e 1135 for (Int_t i123 = 1; i123 <= i123max; ++i123) {
c0a16418 1136
1137 if (i123 == 1) {
1138 coupl1 = new Double_t [nCoupled];
2abdae6e 1139 for (Int_t i = 0; i < nCoupled; ++i) coupl1[i] = 0;
c0a16418 1140 }
1141 else if (i123 == 2) {
1142 nTot = nCoupled*nCoupled;
1143 coupl2 = new Double_t [nTot];
2abdae6e 1144 for (Int_t i = 0; i < nTot; ++i) coupl2[i] = 9999;
c0a16418 1145 } else {
1146 nTot = nTot*nCoupled;
1147 coupl3 = new Double_t [nTot];
2abdae6e 1148 for (Int_t i = 0; i < nTot; ++i) coupl3[i] = 9999;
c0a16418 1149 } // else
1150
2abdae6e 1151 for (Int_t i = 0; i < nCoupled; ++i) {
c0a16418 1152 indx1 = clustNumb[i];
2abdae6e 1153 for (Int_t j = i+1; j < nCoupled; ++j) {
c0a16418 1154 indx2 = clustNumb[j];
1155 if (i123 == 1) {
1156 coupl1[i] += aijcluclu(indx1,indx2);
1157 coupl1[j] += aijcluclu(indx1,indx2);
1158 }
1159 else if (i123 == 2) {
1160 indx = i*nCoupled + j;
1161 coupl2[indx] = coupl1[i] + coupl1[j];
1162 coupl2[indx] -= 2 * (aijcluclu(indx1,indx2));
1163 } else {
2abdae6e 1164 for (Int_t k = j+1; k < nCoupled; ++k) {
c0a16418 1165 indx3 = clustNumb[k];
1166 indx = i*nCoupled*nCoupled + j*nCoupled + k;
1167 coupl3[indx] = coupl2[i*nCoupled+j] + coupl1[k];
1168 coupl3[indx] -= 2 * (aijcluclu(indx1,indx3)+aijcluclu(indx2,indx3));
1169 }
1170 } // else
1171 } // for (Int_t j=i+1;
1172 } // for (Int_t i=0;
1173 } // for (Int_t i123=1;
1174
1175 // Find minimum coupling
1176 Double_t couplMin = 9999;
1177 Int_t locMin = 0;
1178
2abdae6e 1179 for (Int_t i123 = 1; i123 <= i123max; ++i123) {
c0a16418 1180 if (i123 == 1) {
1181 locMin = TMath::LocMin(nCoupled, coupl1);
1182 couplMin = coupl1[locMin];
1183 minGroup[0] = locMin;
2abdae6e 1184 delete [] coupl1;
c0a16418 1185 }
1186 else if (i123 == 2) {
1187 locMin = TMath::LocMin(nCoupled*nCoupled, coupl2);
1188 if (coupl2[locMin] < couplMin) {
1189 couplMin = coupl2[locMin];
1190 minGroup[0] = locMin/nCoupled;
1191 minGroup[1] = locMin%nCoupled;
1192 }
2abdae6e 1193 delete [] coupl2;
c0a16418 1194 } else {
1195 locMin = TMath::LocMin(nTot, coupl3);
1196 if (coupl3[locMin] < couplMin) {
1197 couplMin = coupl3[locMin];
1198 minGroup[0] = locMin/nCoupled/nCoupled;
1199 minGroup[1] = locMin%(nCoupled*nCoupled)/nCoupled;
1200 minGroup[2] = locMin%nCoupled;
1201 }
2abdae6e 1202 delete [] coupl3;
c0a16418 1203 } // else
1204 } // for (Int_t i123=1;
1205 return couplMin;
1206}
1207
1208//_____________________________________________________________________________
1209Int_t
1210AliMUONClusterSplitterMLEM::SelectPad(const AliMUONCluster& cluster,
1211 Int_t nCoupled, Int_t nForFit,
57e2ad1a 1212 const Int_t *clustNumb, const Int_t *clustFit,
1213 const TMatrixD& aijclupad)
c0a16418 1214{
1215 /// Select pads for fit. If too many coupled clusters, find pads giving
1216 /// the strongest coupling with the rest of clusters and exclude them from the fit.
1217
1218 Int_t npad = cluster.Multiplicity();
1219 Double_t *padpix = 0;
1220
1221 if (nCoupled > 3)
1222 {
1223 padpix = new Double_t[npad];
a9c259b2 1224 for (Int_t i = 0; i < npad; ++i) padpix[i] = 0.;
c0a16418 1225 }
1226
1227 Int_t nOK = 0, indx, indx1;
2abdae6e 1228 for (Int_t iclust = 0; iclust < nForFit; ++iclust)
c0a16418 1229 {
1230 indx = clustFit[iclust];
2abdae6e 1231 for (Int_t j = 0; j < npad; ++j)
c0a16418 1232 {
1233 if ( aijclupad(indx,j) < fgkCouplMin) continue;
1234 AliMUONPad* pad = cluster.Pad(j);
a9c259b2 1235 /*
2abdae6e 1236 if ( pad->Status() == -5 ) pad->SetStatus(-9); // flag overflow
c0a16418 1237 if ( pad->Status() < 0 ) continue; // exclude overflows and used pads
1238 if ( !pad->Status() )
1239 {
1240 pad->SetStatus(1);
1241 ++nOK; // pad to be used in fit
1242 }
a9c259b2 1243 */
05542040 1244 if ( pad->Status() != AliMUONClusterFinderMLEM::GetZeroFlag()
a9c259b2 1245 || pad->IsSaturated() ) continue; // used pads and overflows
05542040 1246 pad->SetStatus(AliMUONClusterFinderMLEM::GetUseForFitFlag());
a9c259b2 1247 ++nOK; // pad to be used in fit
1248
c0a16418 1249 if (nCoupled > 3)
1250 {
1251 // Check other clusters
2abdae6e 1252 for (Int_t iclust1 = 0; iclust1 < nCoupled; ++iclust1)
c0a16418 1253 {
1254 indx1 = clustNumb[iclust1];
1255 if (indx1 < 0) continue;
1256 if ( aijclupad(indx1,j) < fgkCouplMin ) continue;
1257 padpix[j] += aijclupad(indx1,j);
1258 }
1259 } // if (nCoupled > 3)
1260 } // for (Int_t j=0; j<npad;
1261 } // for (Int_t iclust=0; iclust<nForFit
1262 if (nCoupled < 4) return nOK;
1263
1264 Double_t aaa = 0;
2abdae6e 1265 for (Int_t j = 0; j < npad; ++j)
c0a16418 1266 {
1267 if (padpix[j] < fgkCouplMin) continue;
1268 aaa += padpix[j];
a9c259b2 1269 //cluster.Pad(j)->SetStatus(-1); // exclude pads with strong coupling to the other clusters
05542040 1270 cluster.Pad(j)->SetStatus(AliMUONClusterFinderMLEM::GetCoupledFlag()); // exclude pads with strong coupling to the other clusters
c0a16418 1271 nOK--;
1272 }
1273 delete [] padpix;
c0a16418 1274 return nOK;
1275}
1276
1277//_____________________________________________________________________________
1278void
1279AliMUONClusterSplitterMLEM::UpdatePads(const AliMUONCluster& cluster,
1280 Int_t /*nfit*/, Double_t *par)
1281{
1282 /// Subtract the fitted charges from pads with strong coupling
1283
a9c259b2 1284 Int_t indx, mult = cluster.Multiplicity(), iend = fNpar/3;
c0a16418 1285 Double_t charge, coef=0;
1286
2abdae6e 1287 for (Int_t j = 0; j < mult; ++j)
c0a16418 1288 {
1289 AliMUONPad* pad = cluster.Pad(j);
a9c259b2 1290 //if ( pad->Status() != -1 ) continue;
05542040 1291 if ( pad->Status() != AliMUONClusterFinderMLEM::GetCoupledFlag() ) continue;
c0a16418 1292 if (fNpar != 0)
1293 {
1294 charge = 0;
a9c259b2 1295 for (Int_t i = 0; i <= iend; ++i)
c0a16418 1296 {
a9c259b2 1297 // sum over hits
1298 indx = 3 * i;
1299 coef = Param2Coef(i, coef, par);
9bbd7f60 1300 charge += ChargeIntegration(par[indx],par[indx+1],*pad) * coef;
c0a16418 1301 }
1302 charge *= fQtot;
1303 pad->SetCharge(pad->Charge()-charge);
1304 } // if (fNpar != 0)
1305
a9c259b2 1306 //if (pad->Charge() > 6 /*fgkZeroSuppression*/) pad->SetStatus(0);
110edb51 1307 if (pad->Charge() > fLowestPadCharge) pad->SetStatus(AliMUONClusterFinderMLEM::GetZeroFlag());
c0a16418 1308 // return pad for further using // FIXME: remove usage of zerosuppression here
05542040 1309 else pad->SetStatus(AliMUONClusterFinderMLEM::GetOverFlag()); // do not use anymore
c0a16418 1310
1311 } // for (Int_t j=0;
1312}
1313
1314