]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PHOS/AliPHOSFastAltroFit.cxx
Temporary protections, to be investigated in more details by the detector experts
[u/mrichter/AliRoot.git] / PHOS / AliPHOSFastAltroFit.cxx
CommitLineData
0b272b9b 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
18/* History of cvs commits:
19 * $Log$
20 */
21
22//______________________________________________________
23// Author : Aleksei Pavlinov; IHEP, Protvino, Russia
24// Feb 17, 2009
25// Implementation of fit procedure from ALICE-INT-2008-026:
26// "Time and amplitude reconstruction from sampling
27// measurements of the PHOS signal profile"
28// M.Yu.Bogolyubsky and ..
29//
30// Fit by function en*x*x*exp(-2.*x): x = (t-t0)/tau.
31// Tme main goal is fast estimation of amplitude.
32//
33
34// --- AliRoot header files ---
35#include "AliPHOSFastAltroFit.h"
36
8d0626c1 37#include <TH1.h>
38#include <TF1.h>
39#include <TCanvas.h>
40#include <TGraphErrors.h>
41#include <TMath.h>
42
0b272b9b 43#include <math.h>
44
45ClassImp(AliPHOSFastAltroFit)
46
47//____________________________________________________________________________
48 AliPHOSFastAltroFit:: AliPHOSFastAltroFit()
49: TNamed(),
8d0626c1 50 fSig(0),fTau(0),fN(0),fPed(0), fAmp(0),fAmpErr(0),fT0(0),fT0Err(0),fChi2(0.),fNDF(0)
51,fNfit(0),fTfit(0),fAmpfit(0), fStdFun(0)
0b272b9b 52{
53}
54
55//____________________________________________________________________________
56AliPHOSFastAltroFit::AliPHOSFastAltroFit(const char* name, const char* title, const Double_t tau)
57 : TNamed(name, title),
8d0626c1 58 fSig(0),fTau(tau),fN(2),fPed(0), fAmp(0),fAmpErr(0),fT0(0),fT0Err(0),fChi2(0.),fNDF(0)
59 ,fNfit(0),fTfit(0),fAmpfit(0), fStdFun(0)
0b272b9b 60{
61 if(strlen(name)==0) SetName("FastAltroFit");
62}
63
8d0626c1 64//____________________________________________________________________________
65AliPHOSFastAltroFit::AliPHOSFastAltroFit(const AliPHOSFastAltroFit &obj)
66 : TNamed(obj),
67 fSig(0),fTau(0),fN(2),fPed(0), fAmp(0),fAmpErr(0),fT0(0),fT0Err(0),fChi2(0.),fNDF(0)
68 ,fNfit(0),fTfit(0),fAmpfit(0), fStdFun(0)
69{
70}
71
0b272b9b 72//____________________________________________________________________________
73AliPHOSFastAltroFit::~AliPHOSFastAltroFit()
74{
8d0626c1 75 if(fTfit) delete [] fTfit;
76 if(fAmpfit) delete [] fAmpfit;
77}
78
79//____________________________________________________________________________
80AliPHOSFastAltroFit& AliPHOSFastAltroFit::operator= (const AliPHOSFastAltroFit &/*obj*/)
81{
82 // Not implemented yet
83 return *this;
84}
85
86//____________________________________________________________________________
87void AliPHOSFastAltroFit::FastFit(TH1F* h, Double_t sig, Double_t tau, Double_t ped)
88{
89 // Service method for convinience only
90 Reset();
91
92 if(h==0) return;
93 Int_t n = h->GetNbinsX();
94 if(n<=0) return;
95
96 Int_t* t = new Int_t[n];
97 Int_t* y = new Int_t[n];
98
99 for(Int_t i=0; i<n; i++) {
100 t[i] = Int_t(h->GetBinCenter(i+1));
101 y[i] = Int_t(h->GetBinContent(i+1));
102 }
103 FastFit(t,y,n, sig,tau,ped);
104
105 delete [] t;
106 delete [] y;
0b272b9b 107}
108
109void AliPHOSFastAltroFit::FastFit(Int_t* t, Int_t* y, Int_t n, Double_t sig, Double_t tau, Double_t ped)
110{
8d0626c1 111 Reset();
112
0b272b9b 113 fSig = sig;
114 fTau = tau;
8d0626c1 115 fPed = ped;
116
117 if(fTfit) delete [] fTfit;
118 if(fAmpfit) delete [] fAmpfit;
0b272b9b 119
8d0626c1 120 fNfit = 0;
121 fTfit = new Double_t[n];
122 fAmpfit = new Double_t[n];
0b272b9b 123
8d0626c1 124 DeductPedestal(t,y,n, tau,ped, fTfit,fAmpfit,fNfit);
125 // printf(" n %i : fNfit %i : ped %f \n", n, fNfit, ped);
126 // for(int i=0; i<fNfit; i++)
127 // printf(" i %i : fAmpfit %7.2f : fTfit %7.2f \n", i, fAmpfit[i], fTfit[i]);
0b272b9b 128
8d0626c1 129 if(fNfit>=2) {
130 FastFit(fTfit,fAmpfit,fNfit,sig,tau, fAmp,fAmpErr, fT0,fT0Err,fChi2);
0b272b9b 131
8d0626c1 132 if(fChi2> 0.0) fNDF = fNfit - 2;
133 else fNDF = 0;
134 } else if(fNfit==1){
135 Reset(); // What to do here => fT0 = fTfit[0]; fAmp = fAmpFit[0] ??
136 } else {
137 Reset();
138 }
139}
0b272b9b 140
8d0626c1 141void AliPHOSFastAltroFit::Reset()
142{
143 fSig = fTau = 0.0;
144 fAmp = fAmpErr = fT0 = fT0Err = 0.0;
145 fChi2 = -1.;
146 fNDF = fNfit = 0;
147 fTfit = fAmpfit = 0;
148}
149
150
151void AliPHOSFastAltroFit::GetFitResult(Double_t &amp,Double_t &eamp,Double_t &t0,Double_t &et0,
152Double_t &chi2, Int_t &ndf)
153{
154 amp = fAmp;
155 eamp = fAmpErr;
156 t0 = fT0;
157 et0 = fT0Err;
158 chi2 = fChi2;
159 ndf = fNDF;
160}
161
162void AliPHOSFastAltroFit::GetFittedPoints(Int_t &nfit, Double_t* ar[2])
163{
164 nfit = fNfit;
165 ar[0] = fTfit;
166 ar[1] = fAmpfit;
0b272b9b 167}
168
169void AliPHOSFastAltroFit::DeductPedestal(Int_t* t, Int_t* y, Int_t n, Double_t tau, Double_t ped,
170 Double_t* tn, Double_t* yn, Int_t &nn)
171{
8d0626c1 172 static Double_t yMinUnderPed=2.; // should be tune
0b272b9b 173 Int_t ymax=0, nmax=0;
174 for(Int_t i=0; i<n; i++){
175 if(y[i]>ymax) {
176 ymax = y[i];
177 nmax = i;
178 }
179 }
180 Int_t i1 = nmax - Int_t(tau);
8d0626c1 181 //i1 = 0;
0b272b9b 182 i1 = i1<0?0:i1;
8d0626c1 183 Int_t i2 = n;
0b272b9b 184
185 nn = 0;
8d0626c1 186 Double_t yd=0.0, tdiff=0.0;;
0b272b9b 187 for(Int_t i=i1; i<i2; i++) {
8d0626c1 188 if(ped>0.0) {
189 yd = Double_t(y[i]) - ped;
190 } else {
191 yd = Double_t(y[i]);
0b272b9b 192 }
8d0626c1 193 if(yd < yMinUnderPed) continue;
194
195 if(i>i1 && nn>0){
196 tdiff = t[i] - tn[nn-1];
197 // printf(" i %i : nn %i : tdiff %6.2f : tn[nn] %6.2f \n", i,nn, tdiff, tn[nn-1]);
198 if(tdiff>1.) {
199 // discard previous points if its are before maximum point and with gap>1
200 if(i<nmax ) {
201 nn = 0; // nn--;
202 // if point with gap after maximum - finish selection
203 } else if(i>=nmax ) {
204 break;
205 }
206 }
207 // Far away from maximum
208 //if(i-nmax > Int_t(5*tau)) break;
209 }
210 tn[nn] = Double_t(t[i]);
211 yn[nn] = yd;
212 //printf("i %i : nn %i : tn %6.2f : yn %6.2f \n", i, nn, tn[nn], yn[nn]);
213 nn++;
0b272b9b 214 }
8d0626c1 215 //printf(" nmax %i : n %i : nn %i i1 %i \n", nmax, n, nn, i1);
0b272b9b 216}
217
218void AliPHOSFastAltroFit::FastFit(Double_t* t, Double_t* y, Int_t n, Double_t sig, Double_t tau,
219Double_t &amp, Double_t &eamp, Double_t &t0, Double_t &et0, Double_t &chi2)
220{
221 // It is case of n=k=2 : fnn = x*x*exp(2 - 2*x)
222 // Input:
223 // n - number of points
224 // t[n] - array of time bins
225 // y[n] - array of amplitudes after pedestal subtractions;
226 // sig - error of amplitude measurement (one value for all channels)
227 // tau - filter time response (in timebin units)
228 // Output:
229 // amp - amplitude at t0;
8d0626c1 230 // t0 - time of max amplitude;
0b272b9b 231 static Double_t xx; // t/tau
232 static Double_t a, b, c;
233 static Double_t f02, f12, f22; // functions
234 static Double_t f02d, f12d, f22d; // functions derivations
8d0626c1 235
0b272b9b 236 chi2 = -1;
237 if(n<=0) {
238 printf("<I> FastFit : n<=0 \n");
239 return;
240 }
241
242 a = b = c = 0.0;
243 for(Int_t i=0; i<n; i++){
244 xx = t[i]/tau;
245 f02 = exp(-2.*xx);
246 f12 = xx*f02;
247 f22 = xx*f12;
248 // Derivations
249 f02d = -2.*f02;
250 f12d = f02 - 2.*f12;
251 f22d = 2.*(f12 - f22);
252 //
253 a += f02d * y[i];
254 b -= 2.*f12d * y[i];
255 c += f22d * y[i];
256 }
257 Double_t t0_1=0.0, t0_2=0.0;
258 Double_t amp_1=0.0, amp_2=0.0, chi2_1=0.0, chi2_2=0.0;
259 if(QuadraticRoots(a,b,c, t0_1,t0_2)) {
260 t0_1 *= tau;
261 t0_2 *= tau;
262 Amplitude(t,y,n, sig, tau, t0_1, amp_1, chi2_1);
263 Amplitude(t,y,n, sig, tau, t0_2, amp_2, chi2_2);
264 if(0) {
265 printf(" t0_1 %f : t0_2 %f \n", t0_1, t0_2);
266 printf(" amp_1 %f : amp_2 %f \n", amp_1, amp_2);
267 printf(" chi2_1 %f : chi2_2 %f \n", chi2_1, chi2_2);
268 }
269 // t0 less on one tau with comparing with value from "canonical equation"
270 amp = amp_1;
271 t0 = t0_1;
272 chi2 = chi2_1;
273 if(chi2_1 > chi2_2) {
274 amp = amp_2;
275 t0 = t0_2;
276 chi2 = chi2_2;
277 }
8d0626c1 278 if(tau<3.) { // EMCAL case : small tau
279 t0 += -0.03;
280 Amplitude(t,y,n, sig, tau, t0, amp, chi2);
281 }
0b272b9b 282 CalculateParsErrors(t, y, n, sig, tau, amp, t0, eamp, et0);
283
284 // Fill1();
285
286 // DrawFastFunction(amp, t0, fUtils->GetPedestalValue(), "1");
287 // DrawFastFunction(amp_1, t0_1, fUtils->GetPedestalValue(), "1");
288 // DrawFastFunction(amp_2, t0_2, fUtils->GetPedestalValue(), "2");
289 } else {
290 chi2 = -1.; // bad fit - negative chi2
291 }
292}
293
294Bool_t AliPHOSFastAltroFit::QuadraticRoots(Double_t a, Double_t b, Double_t c, Double_t &x1, Double_t &x2)
295{
296 // Resolve quadratic equations a*x**2 + b*x + c
297 //printf(" a %12.5e b %12.5e c %12.5e \n", a, b, c);
298 static Double_t dtmp = 0.0;
299 dtmp = b*b - 4.*a*c;
300
301 if(dtmp>=-1.0e-7 && dtmp<0.0) {
8d0626c1 302 printf("QuadraticRoots : small negative square : dtmp %f \n", dtmp);
0b272b9b 303 dtmp = 0.0;
304 }
305 if(dtmp>=0.0) {
306 dtmp = sqrt(dtmp);
307 x1 = (-b + dtmp) / (2.*a);
308 x2 = (-b - dtmp) / (2.*a);
309
310 // printf(" x1 %f : x2 %f \n", x1, x2);
311 return kTRUE;
312 } else {
8d0626c1 313 printf("QuadraticRoots : negative square : dtmp %f \n", dtmp);
0b272b9b 314 return kFALSE;
315 }
316}
317
318void AliPHOSFastAltroFit::Amplitude(Double_t* t,Double_t* y,Int_t n, Double_t sig, Double_t tau,
319Double_t t0, Double_t &amp, Double_t &chi2)
320{
321 // Calculate parameters error too - Mar 24,09
322 // sig is independent from points
323 amp = 0.;
324 Double_t x=0.0, f=0.0, den=0.0, f02;
325 for(Int_t i=0; i<n; i++){
326 x = (t[i] - t0)/tau;
327 f02 = exp(-2.*x);
328 f = x*x*f02;
329 amp += f*y[i];
330 den += f*f;
331 }
8d0626c1 332 if(den>0.0) amp /= den;
0b272b9b 333 //
334 // chi2 calculation
335 //
336 Double_t dy=0.0;
337 chi2=0.;
338 for(Int_t i=0; i<n; i++){
339 x = (t[i] - t0)/tau;
340 f02 = exp(-2.*x);
341 f = amp*x*x*f02;
342 dy = y[i]-f;
343 chi2 += dy*dy;
8d0626c1 344 // printf(" %i : y %f -> f %f : dy %f \n", i, y[i], f, dy);
0b272b9b 345 }
346 chi2 /= (sig*sig);
347}
348
8d0626c1 349void AliPHOSFastAltroFit::CalculateParsErrors(Double_t* t, Double_t* /*y*/, Int_t n, Double_t sig,
350 Double_t tau, Double_t &amp, Double_t &t0,
351 Double_t &eamp, Double_t &et0)
0b272b9b 352{
353 // fmax_nk = (n/k)**n*exp(-n) => n=k=2 => exp(-n) = exp(-2.)
354 static Double_t cc = exp(-2.);
8d0626c1 355 // static Double_t cc = exp(-fN); // mean(N)~1.5 ??
0b272b9b 356
357 Double_t sumf2=0.0, sumfd2=0.0, x, f02, f12, f22, f22d;
358
359 for(Int_t i=0; i<n; i++){
360 x = (t[i] - t0)/tau;
361 f02 = amp*exp(-2.*x);
362 f12 = x*f02;
363 f22 = x*f12;
364 sumf2 += f22 * f22;
365 //
366 f22d = 2.*(f12 - f22);
367 sumfd2 += f22d * f22d;
368 }
369
370 et0 = sig/amp/sqrt(sumfd2);
371 amp *= cc;
372 eamp = sig*cc/sqrt(sumf2);
373}
8d0626c1 374
375//
376// Drawing
377//
378TCanvas* AliPHOSFastAltroFit::DrawFastFunction()
379{
380 // QA of fitting
381 if(fNfit<=0) return 0; // no points
382
383 static TCanvas *c = 0;
384 if(c==0) {
385 c = new TCanvas("fastFun","fastFun",800,600);
386 }
387
388 c->cd();
389
390 Double_t* eamp = new Double_t[fNfit];
391 Double_t* et = new Double_t[fNfit];
392
393 for(Int_t i=0; i<fNfit; i++) {
394 eamp[i] = fSig;
395 et[i] = 0.0;
396 }
397
398 TGraphErrors *gr = new TGraphErrors(fNfit, fTfit,fAmpfit, et,eamp);
399 gr->Draw("Ap");
400 gr->SetTitle(Form("Fast Fit : #chi^{2}/ndf = %8.2f / %i", GetChi2(), GetNDF()));
401 gr->GetHistogram()->SetXTitle(" time bin ");
402 gr->GetHistogram()->SetYTitle(" amplitude ");
403
404 if(fStdFun==0) {
405 fStdFun = new TF1("stdFun", StdResponseFunction, 0., fTfit[fNfit-1]+2., 5);
406 fStdFun->SetParNames("amp","t0","tau","N","ped");
407 }
408 fStdFun->SetParameter(0, GetEnergy());
409 fStdFun->SetParameter(1, GetTime() + GetTau());
410 fStdFun->SetParameter(2, GetTau()); //
411 fStdFun->SetParameter(3, GetN()); // 2
412 fStdFun->SetParameter(4, 0.); //
413
414 fStdFun->SetLineColor(kBlue);
415 fStdFun->SetLineWidth(1);
416
417 fStdFun->Draw("same");
418
419 delete [] eamp;
420 delete [] et;
421
422 c->Update();
423
424 return c;
425}
426
427Double_t AliPHOSFastAltroFit::StdResponseFunction(Double_t *x, Double_t *par)
428{
429 // Standard Response Function :
430 // look to Double_t AliEMCALRawUtils::RawResponseFunction(Double_t *x, Double_t *par)
431 // Using for drawing only.
432 //
433 // Shape of the electronics raw reponse:
434 // It is a semi-gaussian, 2nd order Gamma function (n=2) of the general form
435 //
436 // t' = (t - t0 + tau) / tau
437 // F = A * t**N * exp( N * ( 1 - t) ) for t >= 0
438 // F = 0 for t < 0
439 //
440 // parameters:
441 // A: par[0] // Amplitude = peak value
442 // t0: par[1]
443 // tau: par[2]
444 // N: par[3]
445 // ped: par[4]
446 //
447 static Double_t signal , tau, n, ped, xx;
448
449 tau = par[2];
450 n = par[3];
451 ped = par[4];
452 xx = ( x[0] - par[1] + tau ) / tau ;
453
454 if (xx <= 0)
455 signal = ped ;
456 else {
457 signal = ped + par[0] * TMath::Power(xx , n) * TMath::Exp(n * (1 - xx )) ;
458 }
459 return signal ;
460}