]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PHOS/AliPHOSRawDecoderv1.cxx
Fixes to avoid FPE and handle multiple signals per channel in ZS runs
[u/mrichter/AliRoot.git] / PHOS / AliPHOSRawDecoderv1.cxx
CommitLineData
77ea1c6f 1/**************************************************************************
2 * Copyright(c) 2007, 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// This class decodes the stream of ALTRO samples to extract
19// the PHOS "digits" of current event. Uses fitting procedure
20// to separate reasonable samples
21//
22// Typical use case:
23// AliRawReader* rf = new AliRawReaderDate("2006run2211.raw");
24// AliPHOSRawDecoder dc(rf);
25// while (rf->NextEvent()) {
77ea1c6f 26// dc.SubtractPedestals(kTRUE);
27// while ( dc.NextDigit() ) {
28// Int_t module = dc.GetModule();
29// Int_t column = dc.GetColumn();
30// Int_t row = dc.GetRow();
31// Double_t amplitude = dc.GetEnergy();
32// Double_t time = dc.GetTime();
33// Bool_t IsLowGain = dc.IsLowGain();
34// ..........
35// }
36// }
37
38// Author: Dmitri Peressounko
39
40// --- ROOT system ---
11f2ec15 41#include "TList.h"
77ea1c6f 42#include "TMath.h"
43#include "TMinuit.h"
44
11f2ec15 45#include "TCanvas.h"
46#include "TH1.h"
47#include "TH2.h"
48#include "TF1.h"
49#include "TROOT.h"
50
77ea1c6f 51// --- AliRoot header files ---
11f2ec15 52//#include "AliLog.h"
77ea1c6f 53#include "AliPHOSRawDecoderv1.h"
54#include "AliPHOSPulseGenerator.h"
55
56
57ClassImp(AliPHOSRawDecoderv1)
58
59//-----------------------------------------------------------------------------
11f2ec15 60 AliPHOSRawDecoderv1::AliPHOSRawDecoderv1():AliPHOSRawDecoder(),
61fSampleParamsLow(0x0),fSampleParamsHigh(0x0),fToFit(0x0)
77ea1c6f 62{
63 //Default constructor.
64}
65
66//-----------------------------------------------------------------------------
67AliPHOSRawDecoderv1::AliPHOSRawDecoderv1(AliRawReader* rawReader, AliAltroMapping **mapping):
11f2ec15 68 AliPHOSRawDecoder(rawReader,mapping),
69 fSampleParamsLow(0x0),fSampleParamsHigh(0x0),fToFit(0x0)
77ea1c6f 70{
71 //Construct a decoder object.
72 //Is is user responsibility to provide next raw event
73 //using AliRawReader::NextEvent().
74
75 if(!gMinuit)
76 gMinuit = new TMinuit(100);
70d93620 77 fSampleParamsHigh =new TArrayD(7) ;
78 fSampleParamsHigh->AddAt(2.174,0) ;
79 fSampleParamsHigh->AddAt(0.106,1) ;
80 fSampleParamsHigh->AddAt(0.173,2) ;
81 fSampleParamsHigh->AddAt(0.06106,3) ;
82 //last two parameters are pedestal and overflow
83 fSampleParamsLow=new TArrayD(7) ;
84 fSampleParamsLow->AddAt(2.456,0) ;
85 fSampleParamsLow->AddAt(0.137,1) ;
86 fSampleParamsLow->AddAt(2.276,2) ;
87 fSampleParamsLow->AddAt(0.08246,3) ;
11f2ec15 88 fToFit = new TList() ;
77ea1c6f 89}
90
91//-----------------------------------------------------------------------------
92AliPHOSRawDecoderv1::~AliPHOSRawDecoderv1()
93{
94 //Destructor.
11f2ec15 95 if(fSampleParamsLow){
96 delete fSampleParamsLow ;
97 fSampleParamsLow=0 ;
98 }
99 if(fSampleParamsHigh){
100 delete fSampleParamsHigh ;
101 fSampleParamsHigh=0;
102 }
103 if(fToFit){
104 delete fToFit ;
105 fToFit=0 ;
106 }
77ea1c6f 107}
108
109//-----------------------------------------------------------------------------
110AliPHOSRawDecoderv1::AliPHOSRawDecoderv1(const AliPHOSRawDecoderv1 &phosDecoder ):
11f2ec15 111 AliPHOSRawDecoder(phosDecoder),
112 fSampleParamsLow(0x0),fSampleParamsHigh(0x0),fToFit(0x0)
77ea1c6f 113{
114 //Copy constructor.
11f2ec15 115 fToFit = new TList() ;
116 fSampleParamsLow =new TArrayD(*(phosDecoder.fSampleParamsLow)) ;
117 fSampleParamsHigh=new TArrayD(*(phosDecoder.fSampleParamsHigh)) ;
77ea1c6f 118}
119
120//-----------------------------------------------------------------------------
11f2ec15 121AliPHOSRawDecoderv1& AliPHOSRawDecoderv1::operator = (const AliPHOSRawDecoderv1 &phosDecoder)
77ea1c6f 122{
123 //Assignment operator.
124
11f2ec15 125 // if(this != &phosDecoder) {
77ea1c6f 126 // }
11f2ec15 127 fToFit = new TList() ;
128 if(fSampleParamsLow){
129 fSampleParamsLow = phosDecoder.fSampleParamsLow ;
130 fSampleParamsHigh= phosDecoder.fSampleParamsHigh ;
131 }
132 else{
133 fSampleParamsLow =new TArrayD(*(phosDecoder.fSampleParamsLow)) ;
134 fSampleParamsHigh=new TArrayD(*(phosDecoder.fSampleParamsHigh)) ;
135 }
77ea1c6f 136 return *this;
137}
138
139//-----------------------------------------------------------------------------
140Bool_t AliPHOSRawDecoderv1::NextDigit()
141{
142 //Extract an energy deposited in the crystal,
143 //crystal' position (module,column,row),
144 //time and gain (high or low).
145 //First collects sample, then evaluates it and if it has
146 //reasonable shape, fits it with Gamma2 function and extracts
147 //energy and time.
11f2ec15 148
70d93620 149//Debug=====================
39569d36 150// TCanvas * c = 0; //(TCanvas*)gROOT->FindObjectAny("CSample") ;
70d93620 151// if(!c)
152// c = new TCanvas("CSample","CSample") ;
153//
39569d36 154// TH1D * h = 0 ; //(TH1D*)gROOT->FindObjectAny("hSample") ;
70d93620 155// if(!h)
156// h=new TH1D("hSample","",200,0.,200.) ;
157//
39569d36 158// TF1 * fff = 0 ; //(TF1*)gROOT->FindObjectAny("fff") ;
70d93620 159// if(!fff)
160// fff = new TF1("fff","[0]+[1]*((abs(x-[2]))^[3]*exp(-(x-[2])*[4])+[5]*(x-[2])*(x-[2])*exp(-(x-[2])*[6]))",0.,1000.) ;
161//End debug===========
77ea1c6f 162
163 AliCaloRawStream* in = fCaloStream;
164
70d93620 165 Int_t iBin = fSamples->GetSize() ;
77ea1c6f 166 Int_t tLength = 0;
167 fEnergy = -111;
168 Float_t pedMean = 0;
169 Int_t nPed = 0;
170 Float_t baseLine = 1.0;
171 const Float_t nPreSamples = 10;
70d93620 172 fQuality= 999. ;
173 const Float_t sampleMaxHG=102.332 ; //maximal height of HG sample with given parameterization
174 const Float_t sampleMaxLG=277.196 ; //maximal height of HG sample with given parameterization
39569d36 175 const Float_t maxEtoFit=5 ; //fit only samples above this energy, accept all samples (with good aRMS) below it
1defa3f3 176
77ea1c6f 177 while ( in->Next() ) {
1defa3f3 178
77ea1c6f 179 if(!tLength) {
180 tLength = in->GetTimeLength();
181 if(tLength!=fSamples->GetSize()) {
182 delete fSamples ;
70d93620 183 delete fTimes ;
77ea1c6f 184 fSamples = new TArrayI(tLength);
70d93620 185 fTimes = new TArrayI(tLength);
186 iBin= fSamples->GetSize() ;
77ea1c6f 187 }
188 else{
70d93620 189 fSamples->Reset() ;
77ea1c6f 190 }
191 }
192
193 // Fit the full sample
1defa3f3 194 if((in->IsNewHWAddress() && iBin != fSamples->GetSize()) //new HW address
195 ||(iBin<=0)) { //or new signal in same address
39569d36 196
197 //First remember new sample
198 fNewLowGainFlag = in->IsLowGain();
199 fNewModule = in->GetModule()+1;
200 fNewRow = in->GetRow() +1;
201 fNewColumn = in->GetColumn()+1;
202 fNewAmp = in->GetSignal() ;
1defa3f3 203 fNewTime=in->GetTime() ;
204
39569d36 205 //new handle already collected
77ea1c6f 206 Double_t pedestal =0. ;
207 if(fPedSubtract){
208 if (nPed > 0)
209 pedestal = (Double_t)(pedMean/nPed);
210 else
211 return kFALSE;
212 }
70d93620 213
214 //calculate time and energy
215 Int_t maxBin=0 ;
216 Int_t maxAmp=0 ;
217 Double_t aMean=0. ;
218 Double_t aRMS=0. ;
39569d36 219 Double_t wts=0 ;
70d93620 220 Int_t tStart = 0 ;
70d93620 221 for(Int_t i=iBin; i<fSamples->GetSize(); i++){
222 if(fSamples->At(i)>0){
223 Double_t de=fSamples->At(i)-pedestal ;
39569d36 224 if(de>1.){
225 aMean+=de*i ;
226 aRMS+=de*i*i ;
227 wts+=de;
228 }
70d93620 229 if(de>2 && tStart==0)
230 tStart=i ;
231 if(maxAmp<fSamples->At(i)){
232 maxBin=i ;
233 maxAmp=fSamples->At(i) ;
234 }
235 }
236 }
39569d36 237 if(maxBin==fSamples->GetSize()-1){//bad "rising" sample
70d93620 238 fEnergy=0. ;
239 fTime=-999.;
240 fQuality= 999. ;
241 return kTRUE ;
242 }
243 fEnergy=Double_t(maxAmp)-pedestal ;
244 fOverflow =0 ; //look for plato on the top of sample
245 if(fEnergy>500 && //this is not fluctuation of soft sample
246 maxBin<fSamples->GetSize()-1 && fSamples->At(maxBin+1)==maxAmp){ //and there is a plato
247 fOverflow = kTRUE ;
77ea1c6f 248 }
70d93620 249
39569d36 250 if(wts>0){
251 aMean/=wts;
252 aRMS=aRMS/wts-aMean*aMean;
77ea1c6f 253 }
39569d36 254
255 //do not take too small energies
256 if(fEnergy < baseLine)
257 fEnergy = 0;
258
259 //do not test quality of too soft samples
260 if(fEnergy<maxEtoFit){
261 fTime=fTimes->At(tStart);
262 if(aRMS<2.) //sigle peak
263 fQuality=999. ;
264 else
265 fQuality= 0. ;
266 return kTRUE ;
267 }
268
77ea1c6f 269
70d93620 270//Debug:=====Draw sample
271//if(fEnergy>pedestal+10.){
39569d36 272//if(fLowGainFlag && fEnergy>2){
273// if(!c)
113139da 274// if(!fLowGainFlag && fRow==32 && fColumn==18){
275// TCanvas *c = new TCanvas("CSample","CSample") ;
70d93620 276// c->cd() ;
277// h->Draw() ;
278// c->Update() ;
39569d36 279// printf("fEnergy=%f, aRMS=%f \n",fEnergy,aRMS) ;
280//getchar() ;
70d93620 281//}
282//======================
283
77ea1c6f 284 //IF sample has reasonable mean and RMS, try to fit it with gamma2
77ea1c6f 285
286 gMinuit->mncler(); // Reset Minuit's list of paramters
287 gMinuit->SetPrintLevel(-1) ; // No Printout
288 gMinuit->SetFCN(AliPHOSRawDecoderv1::UnfoldingChiSquare) ;
289 // To set the address of the minimization function
11f2ec15 290
291 fToFit->Clear() ;
113139da 292 Double_t b,bmin,bmax ;
11f2ec15 293 if(fLowGainFlag){
294 fSampleParamsLow->AddAt(pedestal,4) ;
70d93620 295 if(fOverflow)
296 fSampleParamsLow->AddAt(double(maxAmp),5) ;
297 else
298 fSampleParamsLow->AddAt(double(1023),5) ;
299 fSampleParamsLow->AddAt(double(iBin),6) ;
11f2ec15 300 fToFit->AddFirst((TObject*)fSampleParamsLow) ;
113139da 301 b=fSampleParamsLow->At(2) ;
302 bmin=0.5 ;
303 bmax=10. ;
304 }
305 else{
11f2ec15 306 fSampleParamsHigh->AddAt(pedestal,4) ;
70d93620 307 if(fOverflow)
308 fSampleParamsHigh->AddAt(double(maxAmp),5) ;
309 else
310 fSampleParamsHigh->AddAt(double(1023),5);
311 fSampleParamsHigh->AddAt(double(iBin),6);
11f2ec15 312 fToFit->AddFirst((TObject*)fSampleParamsHigh) ;
113139da 313 b=fSampleParamsHigh->At(2) ;
314 bmin=0.05 ;
315 bmax=0.4 ;
11f2ec15 316 }
317 fToFit->AddLast((TObject*)fSamples) ;
70d93620 318 fToFit->AddLast((TObject*)fTimes) ;
11f2ec15 319
320 gMinuit->SetObjectFit((TObject*)fToFit) ; // To tranfer pointer to UnfoldingChiSquare
77ea1c6f 321 Int_t ierflg ;
1defa3f3 322 gMinuit->mnparm(0, "t0", 1.*tStart, 0.01, -500., 500., ierflg) ;
77ea1c6f 323 if(ierflg != 0){
11f2ec15 324// AliWarning(Form("Unable to set initial value for fit procedure : t0=%e\n",1.*tStart) ) ;
77ea1c6f 325 fEnergy=0. ;
326 fTime=-999. ;
70d93620 327 fQuality=999 ;
77ea1c6f 328 return kTRUE ; //will scan further
329 }
70d93620 330 Double_t amp0;
331 if(fLowGainFlag)
332 amp0=fEnergy/sampleMaxLG;
333 else
334 amp0=fEnergy/sampleMaxHG;
11f2ec15 335
113139da 336 gMinuit->mnparm(1, "Energy", amp0 , 0.01*amp0, 0, 0, ierflg) ;
77ea1c6f 337 if(ierflg != 0){
11f2ec15 338// AliWarning(Form("Unable to set initial value for fit procedure : E=%e\n", amp0)) ;
77ea1c6f 339 fEnergy=0. ;
340 fTime=-999. ;
70d93620 341 fQuality=999 ;
77ea1c6f 342 return kTRUE ; //will scan further
343 }
113139da 344
345 gMinuit->mnparm(2, "p2", b, 0.01*b, bmin, bmax, ierflg) ;
346 if(ierflg != 0){
347// AliWarning(Form("Unable to set initial value for fit procedure : E=%e\n", amp0)) ;
348 fEnergy=0. ;
349 fTime=-999. ;
350 fQuality=999 ;
351 return kTRUE ; //will scan further
352 }
353
77ea1c6f 354
11f2ec15 355 Double_t p0 = 0.0001 ; // "Tolerance" Evaluation stops when EDM = 0.0001*p0 ; The number of function call slightly
77ea1c6f 356 // depends on it.
357 Double_t p1 = 1.0 ;
358 Double_t p2 = 0.0 ;
359 gMinuit->mnexcm("SET STR", &p2, 0, ierflg) ; // force TMinuit to reduce function calls
360 gMinuit->mnexcm("SET GRA", &p1, 1, ierflg) ; // force TMinuit to use my gradient
361 // gMinuit->SetMaxIterations(100);
362 gMinuit->mnexcm("SET NOW", &p2 , 0, ierflg) ; // No Warnings
363
364 gMinuit->mnexcm("MIGRAD", &p0, 0, ierflg) ; // minimize
365
11f2ec15 366 Double_t err,t0err ;
367 Double_t t0,efit ;
368 gMinuit->GetParameter(0,t0, t0err) ;
369 gMinuit->GetParameter(1,efit, err) ;
11f2ec15 370
113139da 371 Double_t bfit, berr ;
372 gMinuit->GetParameter(2,bfit,berr) ;
373
70d93620 374 //Calculate total energy
113139da 375 //this isparameterization of depetendence of pulse height on parameter b
70d93620 376 if(fLowGainFlag)
113139da 377 efit*=99.54910 + 78.65038*bfit ;
70d93620 378 else
113139da 379 efit*=80.33109+128.6433*bfit ;
70d93620 380
381 if(efit<0. || efit > 10000.){
e6fe1709 382//set energy to previously found max
b20d9db0 383// fEnergy=0 ; //bad sample
70d93620 384 fTime=-999.;
385 fQuality=999 ;
386 return kTRUE;
387 }
388
389 //evaluate fit quality
390 Double_t fmin,fedm,errdef ;
391 Int_t npari,nparx,istat;
392 gMinuit->mnstat(fmin,fedm,errdef,npari,nparx,istat) ;
393 fQuality=fmin/(fSamples->GetSize()-iBin) ;
394 //compare quality with some parameterization
113139da 395 if(fLowGainFlag){
396 fQuality/=2.+0.002*fEnergy ;
397 }
398 else{
399 fQuality/=0.75+0.0025*fEnergy ;
400 }
70d93620 401
402//Debug================
113139da 403// Double_t n,alpha,beta ;
e6fe1709 404// Double_t en ;
405// if(fLowGainFlag){
70d93620 406// n=fSampleParamsLow->At(0) ;
407// alpha=fSampleParamsLow->At(1) ;
70d93620 408// beta=fSampleParamsLow->At(3) ;
e6fe1709 409// en=efit/(99.54910 + 78.65038*bfit) ;
70d93620 410// }
411// else{
412// n=fSampleParamsHigh->At(0) ;
413// alpha=fSampleParamsHigh->At(1) ;
70d93620 414// beta=fSampleParamsHigh->At(3) ;
e6fe1709 415// en=efit/(80.33109+128.6433*bfit) ;
70d93620 416// }
417//
e6fe1709 418//// if( fQuality > 1 && fEnergy > 20. && !fOverflow){
419//// if(!fLowGainFlag && fRow==32 && fColumn==18){
420//{
113139da 421// printf("Col=%d, row=%d, qual=%f, E=%f, t0=%f, b=%f\n",fColumn,fRow,fQuality,efit,t0,bfit) ;
e6fe1709 422// printf(" Energy = %f \n",fEnergy) ;
113139da 423// TCanvas * c = new TCanvas("samp") ;
11f2ec15 424// c->cd() ;
425// h->Draw() ;
426// if(fLowGainFlag){
e6fe1709 427// fff->SetParameters(pedestal,en,t0,n,alpha,bfit,beta) ;
11f2ec15 428// }
429// else{
e6fe1709 430// fff->SetParameters(pedestal,en,t0,n,alpha,bfit,beta) ;
113139da 431// }
e6fe1709 432////// for(Int_t i=1;i<=h->GetNbinsX(); i++){
433//// Double_t x=h->GetBinCenter(i) ;
434//// h->SetBinContent(i,h->GetBinContent(i)-fff->Eval(x)) ;
435//// }
436//// h->SetMinimum(-15.) ;
437//// h->SetMaximum(15.) ;
113139da 438// h->Draw() ;
11f2ec15 439// fff->Draw("same") ;
440// c->Update();
70d93620 441// getchar() ;
442// }
443//====================
11f2ec15 444
39569d36 445 fEnergy=efit ;
1defa3f3 446 fTime=t0-4.024*bfit ; //-10.402*bfit+4.669*bfit*bfit ; //Correction for 70 samples
447// fTime=t0+2.8*bfit ; //-10.402*bfit+4.669*bfit*bfit ; //Correction for 50 samples
448// fQuality = bfit ;
77ea1c6f 449
450 return kTRUE;
451 }
452
453 fLowGainFlag = in->IsLowGain();
77ea1c6f 454 fModule = in->GetModule()+1;
455 fRow = in->GetRow() +1;
456 fColumn = in->GetColumn()+1;
39569d36 457
458 //add previouly taken if coincides
459 if(fLowGainFlag==fNewLowGainFlag && fModule==fNewModule &&
460 fRow==fNewRow && fColumn==fNewColumn){
461 iBin--;
462 if(fPedSubtract && fNewTime < nPreSamples) {
463 pedMean += in->GetSignal();
464 nPed++;
465 }
466 fSamples->AddAt(fNewAmp,iBin);
467 fTimes->AddAt(fNewTime,iBin);
468
469 //Mark that we already take it
470 fNewModule=-1 ;
471 }
77ea1c6f 472
77ea1c6f 473 // Fill array with samples
70d93620 474 iBin--;
475 if(fPedSubtract && (in->GetTime() < nPreSamples)) {
77ea1c6f 476 pedMean += in->GetSignal();
477 nPed++;
478 }
70d93620 479 fSamples->AddAt(in->GetSignal(),iBin);
480 fTimes->AddAt(in->GetTime(),iBin);
481
482//Debug==============
e6fe1709 483// h->SetBinContent(in->GetTime(),in->GetSignal()) ;
484//EndDebug==============
77ea1c6f 485
486 } // in.Next()
487
488 return kFALSE;
489}
490//_____________________________________________________________________________
491void AliPHOSRawDecoderv1::UnfoldingChiSquare(Int_t & /*nPar*/, Double_t * Grad, Double_t & fret, Double_t * x, Int_t iflag)
492{
77ea1c6f 493 // Number of parameters, Gradient, Chi squared, parameters, what to do
494
11f2ec15 495 TList * toFit= (TList*)gMinuit->GetObjectFit() ;
496 TArrayD * params=(TArrayD*)toFit->At(0) ;
497 TArrayI * samples = (TArrayI*)toFit->At(1) ;
70d93620 498 TArrayI * times = (TArrayI*)toFit->At(2) ;
77ea1c6f 499
500 fret = 0. ;
501 if(iflag == 2)
113139da 502 for(Int_t iparam = 0 ; iparam < 3 ; iparam++)
77ea1c6f 503 Grad[iparam] = 0 ; // Will evaluate gradient
504
11f2ec15 505 Double_t t0=x[0] ;
506 Double_t en=x[1] ;
113139da 507 Double_t b=x[2] ;
70d93620 508 Double_t n=params->At(0) ;
11f2ec15 509 Double_t alpha=params->At(1) ;
11f2ec15 510 Double_t beta=params->At(3) ;
113139da 511 Double_t ped=params->At(4) ;
512
513 Double_t overflow=params->At(5) ;
70d93620 514 Int_t iBin = (Int_t) params->At(6) ;
515 Int_t nSamples=TMath::Min(iBin+70,samples->GetSize()) ; //Here we set number of points to fit (70)
e6fe1709 516 // iBin - first non-zero sample
113139da 517 Int_t tStep=times->At(iBin+1)-times->At(iBin) ;
e6fe1709 518 Double_t ddt=times->At(iBin)-t0-tStep ;
113139da 519 Double_t exp1=TMath::Exp(-alpha*ddt) ;
520 Double_t exp2=TMath::Exp(-beta*ddt) ;
521 Double_t dexp1=TMath::Exp(-alpha*tStep) ;
522 Double_t dexp2=TMath::Exp(-beta*tStep) ;
523 for(Int_t i = iBin; i<nSamples ; i++) {
113139da 524 Double_t dt=double(times->At(i))-t0 ;
e6fe1709 525 Double_t fsample = double(samples->At(i)) ;
1defa3f3 526 if(fsample>=overflow)
527 continue ;
113139da 528 Double_t diff ;
e6fe1709 529 exp1*=dexp1 ;
530 exp2*=dexp2 ;
1defa3f3 531 if(dt<=0.){
113139da 532 diff=fsample - ped ;
533 fret += diff*diff ;
77ea1c6f 534 continue ;
113139da 535 }
113139da 536 Double_t dtn=TMath::Power(dt,n) ;
537 Double_t dtnE=dtn*exp1 ;
538 Double_t dt2E=dt*dt*exp2 ;
539 Double_t fit=ped+en*(dtnE + b*dt2E) ;
1defa3f3 540// if(fit>=overflow){
541// diff=fsample-overflow ;
542// fret += diff*diff ;
543// //zero gradient here
544// }
545// else{
113139da 546 diff = fsample - fit ;
547 fret += diff*diff ;
548 if(iflag == 2){ // calculate gradient
549 Grad[0] += en*diff*(dtnE*(n/dt-alpha)+b*dt2E*(2./dt-beta)) ; //derivative over t0
550 Grad[1] -= diff*(dtnE+b*dt2E) ;
551 Grad[2] -= en*diff*dt2E ;
77ea1c6f 552 }
1defa3f3 553// }
77ea1c6f 554 }
113139da 555 if(iflag == 2)
556 for(Int_t iparam = 0 ; iparam < 3 ; iparam++)
557 Grad[iparam] *= 2. ;
77ea1c6f 558}
559//-----------------------------------------------------------------------------
113139da 560Double_t AliPHOSRawDecoderv1::Gamma2(Double_t dt,Double_t en,Double_t b,TArrayD * params){ //Function for fitting samples
77ea1c6f 561 //parameters:
11f2ec15 562 //dt-time after start
77ea1c6f 563 //en-amplutude
11f2ec15 564 //function parameters
565
566 Double_t ped=params->At(4) ;
77ea1c6f 567 if(dt<0.)
11f2ec15 568 return ped ; //pedestal
77ea1c6f 569 else
113139da 570 return ped+en*(TMath::Power(dt,params->At(0))*TMath::Exp(-dt*params->At(1))+b*dt*dt*TMath::Exp(-dt*params->At(3))) ;
77ea1c6f 571}
572