]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EMCAL/AliEMCALRawUtils.cxx
cout replaced by AliDebug (Plamen)
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALRawUtils.cxx
CommitLineData
ee299369 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$ */
ee299369 17
e5bbbc4e 18//_________________________________________________________________________
19// Utility Class for handling Raw data
20// Does all transitions from Digits to Raw and vice versa,
21// for simu and reconstruction
22//
23// Note: the current version is still simplified. Only
24// one raw signal per digit is generated; either high-gain or low-gain
25// Need to add concurrent high and low-gain info in the future
26// No pedestal is added to the raw signal.
ee299369 27//*-- Author: Marco van Leeuwen (LBL)
e5bbbc4e 28
ee299369 29#include "AliEMCALRawUtils.h"
21cad85c 30
ee299369 31#include "TF1.h"
32#include "TGraph.h"
e5bbbc4e 33class TSystem;
21cad85c 34
e5bbbc4e 35class AliLog;
72c58de0 36#include "AliRun.h"
ee299369 37#include "AliRunLoader.h"
e5bbbc4e 38class AliCaloAltroMapping;
ee299369 39#include "AliAltroBuffer.h"
40#include "AliRawReader.h"
32cd4c24 41#include "AliCaloRawStreamV3.h"
ee299369 42#include "AliDAQ.h"
21cad85c 43
feedcab9 44#include "AliEMCALRecParam.h"
ee299369 45#include "AliEMCALLoader.h"
46#include "AliEMCALGeometry.h"
e5bbbc4e 47class AliEMCALDigitizer;
ee299369 48#include "AliEMCALDigit.h"
20b636fc 49#include "AliEMCAL.h"
21cad85c 50
ee299369 51ClassImp(AliEMCALRawUtils)
21cad85c 52
ee299369 53// Signal shape parameters
e5bbbc4e 54Double_t AliEMCALRawUtils::fgTimeBinWidth = 100E-9 ; // each sample is 100 ns
ee299369 55Double_t AliEMCALRawUtils::fgTimeTrigger = 1.5E-6 ; // 15 time bins ~ 1.5 musec
56
57// some digitization constants
58Int_t AliEMCALRawUtils::fgThreshold = 1;
59Int_t AliEMCALRawUtils::fgDDLPerSuperModule = 2; // 2 ddls per SuperModule
e5bbbc4e 60Int_t AliEMCALRawUtils::fgPedestalValue = 32; // pedestal value for digits2raw
61Double_t AliEMCALRawUtils::fgFEENoise = 3.; // 3 ADC channels of noise (sampled)
ee299369 62
8cb998bd 63AliEMCALRawUtils::AliEMCALRawUtils()
b4133f05 64 : fHighLowGainFactor(0.), fOrder(0), fTau(0.), fNoiseThreshold(0),
65 fNPedSamples(0), fGeom(0), fOption("")
8cb998bd 66{
b4133f05 67
68 //These are default parameters.
69 //Can be re-set from without with setter functions
ee299369 70 fHighLowGainFactor = 16. ; // adjusted for a low gain range of 82 GeV (10 bits)
b4133f05 71 fOrder = 2; // order of gamma fn
72 fTau = 2.35; // in units of timebin, from CERN 2007 testbeam
73 fNoiseThreshold = 3;
74 fNPedSamples = 5;
65bdc82f 75
76 //Get Mapping RCU files from the AliEMCALRecParam
77 const TObjArray* maps = AliEMCALRecParam::GetMappings();
78 if(!maps) AliFatal("Cannot retrieve ALTRO mappings!!");
79
21cad85c 80 for(Int_t i = 0; i < 4; i++) {
65bdc82f 81 fMapping[i] = (AliAltroMapping*)maps->At(i);
82 }
83
72c58de0 84 //To make sure we match with the geometry in a simulation file,
85 //let's try to get it first. If not, take the default geometry
33c3c91a 86 AliRunLoader *rl = AliRunLoader::Instance();
c61fe3b4 87 if(!rl) AliError("Cannot find RunLoader!");
72c58de0 88 if (rl->GetAliRun() && rl->GetAliRun()->GetDetector("EMCAL")) {
89 fGeom = dynamic_cast<AliEMCAL*>(rl->GetAliRun()->GetDetector("EMCAL"))->GetGeometry();
90 } else {
91 AliInfo(Form("Using default geometry in raw reco"));
937d0661 92 fGeom = AliEMCALGeometry::GetInstance(AliEMCALGeometry::GetDefaultGeometryName());
65bdc82f 93 }
94
72c58de0 95 if(!fGeom) AliFatal(Form("Could not get geometry!"));
96
65bdc82f 97}
98
99//____________________________________________________________________________
5544799a 100AliEMCALRawUtils::AliEMCALRawUtils(AliEMCALGeometry *pGeometry)
101 : fHighLowGainFactor(0.), fOrder(0), fTau(0.), fNoiseThreshold(0),
102 fNPedSamples(0), fGeom(pGeometry), fOption("")
103{
104 //
105 // Initialize with the given geometry - constructor required by HLT
106 // HLT does not use/support AliRunLoader(s) instances
107 // This is a minimum intervention solution
108 // Comment by MPloskon@lbl.gov
109 //
110
111 //These are default parameters.
112 //Can be re-set from without with setter functions
113 fHighLowGainFactor = 16. ; // adjusted for a low gain range of 82 GeV (10 bits)
114 fOrder = 2; // order of gamma fn
115 fTau = 2.35; // in units of timebin, from CERN 2007 testbeam
116 fNoiseThreshold = 3;
117 fNPedSamples = 5;
118
119 //Get Mapping RCU files from the AliEMCALRecParam
120 const TObjArray* maps = AliEMCALRecParam::GetMappings();
121 if(!maps) AliFatal("Cannot retrieve ALTRO mappings!!");
122
21cad85c 123 for(Int_t i = 0; i < 4; i++) {
5544799a 124 fMapping[i] = (AliAltroMapping*)maps->At(i);
125 }
126
127 if(!fGeom) AliFatal(Form("Could not get geometry!"));
128
129}
130
131//____________________________________________________________________________
65bdc82f 132AliEMCALRawUtils::AliEMCALRawUtils(const AliEMCALRawUtils& rawU)
133 : TObject(),
134 fHighLowGainFactor(rawU.fHighLowGainFactor),
b4133f05 135 fOrder(rawU.fOrder),
136 fTau(rawU.fTau),
137 fNoiseThreshold(rawU.fNoiseThreshold),
138 fNPedSamples(rawU.fNPedSamples),
65bdc82f 139 fGeom(rawU.fGeom),
140 fOption(rawU.fOption)
141{
142 //copy ctor
143 fMapping[0] = rawU.fMapping[0];
144 fMapping[1] = rawU.fMapping[1];
21cad85c 145 fMapping[2] = rawU.fMapping[2];
146 fMapping[3] = rawU.fMapping[3];
65bdc82f 147}
148
149//____________________________________________________________________________
150AliEMCALRawUtils& AliEMCALRawUtils::operator =(const AliEMCALRawUtils &rawU)
151{
152 //assignment operator
153
154 if(this != &rawU) {
155 fHighLowGainFactor = rawU.fHighLowGainFactor;
b4133f05 156 fOrder = rawU.fOrder;
157 fTau = rawU.fTau;
158 fNoiseThreshold = rawU.fNoiseThreshold;
159 fNPedSamples = rawU.fNPedSamples;
65bdc82f 160 fGeom = rawU.fGeom;
161 fOption = rawU.fOption;
162 fMapping[0] = rawU.fMapping[0];
163 fMapping[1] = rawU.fMapping[1];
21cad85c 164 fMapping[2] = rawU.fMapping[2];
165 fMapping[3] = rawU.fMapping[3];
65bdc82f 166 }
167
168 return *this;
169
ee299369 170}
65bdc82f 171
ee299369 172//____________________________________________________________________________
173AliEMCALRawUtils::~AliEMCALRawUtils() {
e5bbbc4e 174 //dtor
65bdc82f 175
ee299369 176}
65bdc82f 177
ee299369 178//____________________________________________________________________________
65bdc82f 179void AliEMCALRawUtils::Digits2Raw()
ee299369 180{
181 // convert digits of the current event to raw data
182
33c3c91a 183 AliRunLoader *rl = AliRunLoader::Instance();
ee299369 184 AliEMCALLoader *loader = dynamic_cast<AliEMCALLoader*>(rl->GetDetectorLoader("EMCAL"));
185
186 // get the digits
187 loader->LoadDigits("EMCAL");
188 loader->GetEvent();
189 TClonesArray* digits = loader->Digits() ;
190
191 if (!digits) {
192 Warning("Digits2Raw", "no digits found !");
193 return;
194 }
65bdc82f 195
ee299369 196 static const Int_t nDDL = 12*2; // 12 SM hardcoded for now. Buffers allocated dynamically, when needed, so just need an upper limit here
197 AliAltroBuffer* buffers[nDDL];
198 for (Int_t i=0; i < nDDL; i++)
199 buffers[i] = 0;
200
201 Int_t adcValuesLow[fgkTimeBins];
202 Int_t adcValuesHigh[fgkTimeBins];
203
ee299369 204 // loop over digits (assume ordered digits)
205 for (Int_t iDigit = 0; iDigit < digits->GetEntries(); iDigit++) {
206 AliEMCALDigit* digit = dynamic_cast<AliEMCALDigit *>(digits->At(iDigit)) ;
207 if (digit->GetAmp() < fgThreshold)
208 continue;
209
210 //get cell indices
211 Int_t nSM = 0;
212 Int_t nIphi = 0;
213 Int_t nIeta = 0;
214 Int_t iphi = 0;
215 Int_t ieta = 0;
216 Int_t nModule = 0;
65bdc82f 217 fGeom->GetCellIndex(digit->GetId(), nSM, nModule, nIphi, nIeta);
218 fGeom->GetCellPhiEtaIndexInSModule(nSM, nModule, nIphi, nIeta,iphi, ieta) ;
ee299369 219
21cad85c 220 //Check which is the RCU, 0 or 1, of the cell.
ee299369 221 Int_t iRCU = -111;
222 //RCU0
223 if (0<=iphi&&iphi<8) iRCU=0; // first cable row
224 else if (8<=iphi&&iphi<16 && 0<=ieta&&ieta<24) iRCU=0; // first half;
225 //second cable row
226 //RCU1
227 else if(8<=iphi&&iphi<16 && 24<=ieta&&ieta<48) iRCU=1; // second half;
228 //second cable row
229 else if(16<=iphi&&iphi<24) iRCU=1; // third cable row
21cad85c 230
231 if (nSM%2==1) iRCU = 1 - iRCU; // swap for odd=C side, to allow us to cable both sides the same
232
e36e3bcf 233 if (iRCU<0)
234 Fatal("Digits2Raw()","Non-existent RCU number: %d", iRCU);
ee299369 235
236 //Which DDL?
237 Int_t iDDL = fgDDLPerSuperModule* nSM + iRCU;
238 if (iDDL >= nDDL)
239 Fatal("Digits2Raw()","Non-existent DDL board number: %d", iDDL);
240
241 if (buffers[iDDL] == 0) {
242 // open new file and write dummy header
243 TString fileName = AliDAQ::DdlFileName("EMCAL",iDDL);
21cad85c 244 //Select mapping file RCU0A, RCU0C, RCU1A, RCU1C
245 Int_t iRCUside=iRCU+(nSM%2)*2;
246 //iRCU=0 and even (0) SM -> RCU0A.data 0
247 //iRCU=1 and even (0) SM -> RCU1A.data 1
248 //iRCU=0 and odd (1) SM -> RCU0C.data 2
249 //iRCU=1 and odd (1) SM -> RCU1C.data 3
250 //cout<<" nSM "<<nSM<<"; iRCU "<<iRCU<<"; iRCUside "<<iRCUside<<endl;
251 buffers[iDDL] = new AliAltroBuffer(fileName.Data(),fMapping[iRCUside]);
ee299369 252 buffers[iDDL]->WriteDataHeader(kTRUE, kFALSE); //Dummy;
253 }
254
255 // out of time range signal (?)
256 if (digit->GetTimeR() > GetRawFormatTimeMax() ) {
257 AliInfo("Signal is out of time range.\n");
258 buffers[iDDL]->FillBuffer((Int_t)digit->GetAmp());
259 buffers[iDDL]->FillBuffer(GetRawFormatTimeBins() ); // time bin
260 buffers[iDDL]->FillBuffer(3); // bunch length
261 buffers[iDDL]->WriteTrailer(3, ieta, iphi, nSM); // trailer
262 // calculate the time response function
263 } else {
264 Bool_t lowgain = RawSampledResponse(digit->GetTimeR(), digit->GetAmp(), adcValuesHigh, adcValuesLow) ;
265 if (lowgain)
266 buffers[iDDL]->WriteChannel(ieta, iphi, 0, GetRawFormatTimeBins(), adcValuesLow, fgThreshold);
267 else
268 buffers[iDDL]->WriteChannel(ieta,iphi, 1, GetRawFormatTimeBins(), adcValuesHigh, fgThreshold);
269 }
270 }
271
272 // write headers and close files
273 for (Int_t i=0; i < nDDL; i++) {
274 if (buffers[i]) {
275 buffers[i]->Flush();
276 buffers[i]->WriteDataHeader(kFALSE, kFALSE);
277 delete buffers[i];
278 }
279 }
65bdc82f 280
ee299369 281 loader->UnloadDigits();
282}
283
284//____________________________________________________________________________
65bdc82f 285void AliEMCALRawUtils::Raw2Digits(AliRawReader* reader,TClonesArray *digitsArr)
ee299369 286{
65bdc82f 287 // convert raw data of the current event to digits
ee299369 288
c47157cd 289 digitsArr->Clear();
ee299369 290
c47157cd 291 if (!digitsArr) {
ee299369 292 Error("Raw2Digits", "no digits found !");
293 return;
294 }
295 if (!reader) {
296 Error("Raw2Digits", "no raw reader found !");
297 return;
298 }
299
32cd4c24 300 AliCaloRawStreamV3 in(reader,"EMCAL",fMapping);
ee299369 301 // Select EMCAL DDL's;
302 reader->Select("EMCAL");
feedcab9 303
8cb998bd 304 //Updated fitting routine from 2007 beam test takes into account
305 //possibility of two peaks in data and selects first one for fitting
306 //Also sets some of the starting parameters based on the shape of the
307 //given raw signal being fit
308
309 TF1 * signalF = new TF1("signal", RawResponseFunction, 0, GetRawFormatTimeBins(), 5);
b4133f05 310 signalF->SetParameters(10.,0.,fTau,fOrder,5.); //set all defaults once, just to be safe
8cb998bd 311 signalF->SetParNames("amp","t0","tau","N","ped");
b4133f05 312 signalF->SetParameter(2,fTau); // tau in units of time bin
8cb998bd 313 signalF->SetParLimits(2,2,-1);
b4133f05 314 signalF->SetParameter(3,fOrder); // order
8cb998bd 315 signalF->SetParLimits(3,2,-1);
48a56166 316
ee299369 317 Int_t id = -1;
82cbdfca 318 Float_t time = 0. ;
319 Float_t amp = 0. ;
32cd4c24 320 Int_t i = 0;
321 Int_t startBin = 0;
ee299369 322
8cb998bd 323 //Graph to hold data we will fit (should be converted to an array
324 //later to speed up processing
325 TGraph * gSig = new TGraph(GetRawFormatTimeBins());
ee299369 326
ee299369 327 Int_t lowGain = 0;
e5bbbc4e 328 Int_t caloFlag = 0; // low, high gain, or TRU, or LED ref.
ee299369 329
32cd4c24 330 // start loop over input stream
331 while (in.NextDDL()) {
332 while (in.NextChannel()) {
8cb998bd 333
32cd4c24 334 // There can be zero-suppression in the raw data,
335 // so set up the TGraph in advance
336 for (i=0; i < GetRawFormatTimeBins(); i++) {
337 gSig->SetPoint(i, i , 0);
338 }
d8ada134 339
32cd4c24 340 Int_t maxTime = 0;
56613d93 341 int nsamples = 0;
32cd4c24 342 while (in.NextBunch()) {
343 const UShort_t *sig = in.GetSignals();
344 startBin = in.GetStartTimeBin();
345
d8ada134 346 if (((UInt_t) maxTime) < in.GetStartTimeBin()) {
32cd4c24 347 maxTime = in.GetStartTimeBin(); // timebins come in reverse order
348 }
349
350 if (maxTime < 0 || maxTime >= GetRawFormatTimeBins()) {
351 AliWarning(Form("Invalid time bin %d",maxTime));
352 maxTime = GetRawFormatTimeBins();
353 }
56613d93 354 nsamples += in.GetBunchLength();
32cd4c24 355 for (i = 0; i < in.GetBunchLength(); i++) {
356 time = startBin--;
357 gSig->SetPoint(time, time, sig[i]) ;
358 }
359 } // loop over bunches
360
56613d93 361 if (nsamples > 0) { // this check is needed for when we have zero-supp. on, but not sparse readout
362
363 id = fGeom->GetAbsCellIdFromCellIndexes(in.GetModule(), in.GetRow(), in.GetColumn()) ;
364 caloFlag = in.GetCaloFlag();
365 lowGain = in.IsLowGain();
366
32cd4c24 367 gSig->Set(maxTime+1);
368 FitRaw(gSig, signalF, amp, time) ;
ee299369 369
32cd4c24 370 if (caloFlag == 0 || caloFlag == 1) { // low gain or high gain
371 if (amp > 0 && amp < 2000) { //check both high and low end of
e5bbbc4e 372 //result, 2000 is somewhat arbitrary - not nice with magic numbers in the code..
32cd4c24 373 AliDebug(2,Form("id %d lowGain %d amp %g", id, lowGain, amp));
ee299369 374
32cd4c24 375 AddDigit(digitsArr, id, lowGain, (Int_t)amp, time);
376 }
e5bbbc4e 377
32cd4c24 378 }
e5bbbc4e 379
32cd4c24 380 // Reset graph
381 for (Int_t index = 0; index < gSig->GetN(); index++) {
382 gSig->SetPoint(index, index, 0) ;
383 }
384 // Reset starting parameters for fit function
385 signalF->SetParameters(10.,0.,fTau,fOrder,5.); //reset all defaults just to be safe
48a56166 386
56613d93 387 } // nsamples>0 check, some data found for this channel; not only trailer/header
32cd4c24 388 } // end while over channel
389 } //end while over DDL's, of input stream
ee299369 390
391 delete signalF ;
392 delete gSig;
393
394 return ;
395}
396
397//____________________________________________________________________________
82cbdfca 398void AliEMCALRawUtils::AddDigit(TClonesArray *digitsArr, Int_t id, Int_t lowGain, Int_t amp, Float_t time) {
399 //
400 // Add a new digit.
401 // This routine checks whether a digit exists already for this tower
402 // and then decides whether to use the high or low gain info
403 //
404 // Called by Raw2Digits
405
406 AliEMCALDigit *digit = 0, *tmpdigit = 0;
407
408 TIter nextdigit(digitsArr);
409 while (digit == 0 && (tmpdigit = (AliEMCALDigit*) nextdigit())) {
410 if (tmpdigit->GetId() == id)
411 digit = tmpdigit;
412 }
413
414 if (!digit) { // no digit existed for this tower; create one
415 if (lowGain)
416 amp = Int_t(fHighLowGainFactor * amp);
417 Int_t idigit = digitsArr->GetEntries();
418 new((*digitsArr)[idigit]) AliEMCALDigit( -1, -1, id, amp, time, idigit) ;
419 }
420 else { // a digit already exists, check range
b4133f05 421 // (use high gain if signal < cut value, otherwise low gain)
82cbdfca 422 if (lowGain) { // new digit is low gain
b4133f05 423 if (digit->GetAmp() > fgkOverflowCut) { // use if stored digit is out of range
82cbdfca 424 digit->SetAmp(Int_t(fHighLowGainFactor * amp));
425 digit->SetTime(time);
426 }
427 }
b4133f05 428 else if (amp < fgkOverflowCut) { // new digit is high gain; use if not out of range
82cbdfca 429 digit->SetAmp(amp);
430 digit->SetTime(time);
431 }
432 }
433}
434
435//____________________________________________________________________________
e5bbbc4e 436void AliEMCALRawUtils::FitRaw(TGraph * gSig, TF1* signalF, Float_t & amp, Float_t & time) const
ee299369 437{
438 // Fits the raw signal time distribution; from AliEMCALGetter
439
ee299369 440 amp = time = 0. ;
82cbdfca 441 Double_t ped = 0;
442 Int_t nPed = 0;
ee299369 443
b4133f05 444 for (Int_t index = 0; index < fNPedSamples; index++) {
e9dbb64a 445 Double_t ttime, signal;
82cbdfca 446 gSig->GetPoint(index, ttime, signal) ;
447 if (signal > 0) {
448 ped += signal;
449 nPed++;
ee299369 450 }
451 }
e9dbb64a 452
82cbdfca 453 if (nPed > 0)
454 ped /= nPed;
e9dbb64a 455 else {
8cb998bd 456 AliWarning("Could not determine pedestal");
82cbdfca 457 ped = 10; // put some small value as first guess
e9dbb64a 458 }
82cbdfca 459
e5bbbc4e 460 Int_t maxFound = 0;
461 Int_t iMax = 0;
e9dbb64a 462 Float_t max = -1;
e5bbbc4e 463 Float_t maxFit = gSig->GetN();
464 Float_t minAfterSig = 9999;
465 Int_t tminAfterSig = gSig->GetN();
466 Int_t nPedAfterSig = 0;
467 Int_t plateauWidth = 0;
468 Int_t plateauStart = 9999;
469 Float_t cut = 0.3;
e9dbb64a 470
b4133f05 471 for (Int_t i=fNPedSamples; i < gSig->GetN(); i++) {
e9dbb64a 472 Double_t ttime, signal;
473 gSig->GetPoint(i, ttime, signal) ;
e5bbbc4e 474 if (!maxFound && signal > max) {
475 iMax = i;
e9dbb64a 476 max = signal;
477 }
b4133f05 478 else if ( max > ped + fNoiseThreshold ) {
e5bbbc4e 479 maxFound = 1;
480 minAfterSig = signal;
481 tminAfterSig = i;
e9dbb64a 482 }
e5bbbc4e 483 if (maxFound) {
484 if ( signal < minAfterSig) {
485 minAfterSig = signal;
486 tminAfterSig = i;
e9dbb64a 487 }
e5bbbc4e 488 if (i > tminAfterSig + 5) { // Two close peaks; end fit at minimum
489 maxFit = tminAfterSig;
e9dbb64a 490 break;
491 }
e5bbbc4e 492 if ( signal < cut*max){ //stop fit at 30% amplitude(avoid the pulse shape falling edge)
493 maxFit = i;
c61fe3b4 494 break;
495 }
b4133f05 496 if ( signal < ped + fNoiseThreshold)
e5bbbc4e 497 nPedAfterSig++;
498 if (nPedAfterSig >= 5) { // include 5 pedestal bins after peak
499 maxFit = i;
e9dbb64a 500 break;
501 }
5a056daa 502 }
fb070798 503 //Add check on plateau
504 if (signal >= fgkRawSignalOverflow - fNoiseThreshold) {
e5bbbc4e 505 if(plateauWidth == 0) plateauStart = i;
506 plateauWidth++;
fb070798 507 }
508 }
509
e5bbbc4e 510 if(plateauWidth > 0) {
511 for(int j = 0; j < plateauWidth; j++) {
fb070798 512 //Note, have to remove the same point N times because after each
513 //remove, the positions of all subsequent points have shifted down
e5bbbc4e 514 gSig->RemovePoint(plateauStart);
fb070798 515 }
82cbdfca 516 }
5a056daa 517
b4133f05 518 if ( max - ped > fNoiseThreshold ) { // else its noise
e9dbb64a 519 AliDebug(2,Form("Fitting max %d ped %d", max, ped));
e5bbbc4e 520 signalF->SetRange(0,maxFit);
8cb998bd 521
522 if(max-ped > 50)
523 signalF->SetParLimits(2,1,3);
524
525 signalF->SetParameter(4, ped) ;
e5bbbc4e 526 signalF->SetParameter(1, iMax);
8cb998bd 527 signalF->SetParameter(0, max);
528
529 gSig->Fit(signalF, "QROW"); // Note option 'W': equal errors on all points
530 amp = signalF->GetParameter(0);
531 time = signalF->GetParameter(1)*GetRawFormatTimeBinWidth() - fgTimeTrigger;
ee299369 532 }
533 return;
534}
535//__________________________________________________________________
536Double_t AliEMCALRawUtils::RawResponseFunction(Double_t *x, Double_t *par)
537{
8cb998bd 538 // Matches version used in 2007 beam test
539 //
ee299369 540 // Shape of the electronics raw reponse:
541 // It is a semi-gaussian, 2nd order Gamma function of the general form
542 //
543 // t' = (t - t0 + tau) / tau
544 // F = A * t**N * exp( N * ( 1 - t) ) for t >= 0
545 // F = 0 for t < 0
546 //
547 // parameters:
8cb998bd 548 // A: par[0] // Amplitude = peak value
549 // t0: par[1]
550 // tau: par[2]
551 // N: par[3]
552 // ped: par[4]
ee299369 553 //
554 Double_t signal ;
8cb998bd 555 Double_t tau =par[2];
e5bbbc4e 556 Double_t n =par[3];
8cb998bd 557 Double_t ped = par[4];
558 Double_t xx = ( x[0] - par[1] + tau ) / tau ;
ee299369 559
5a056daa 560 if (xx <= 0)
8cb998bd 561 signal = ped ;
ee299369 562 else {
e5bbbc4e 563 signal = ped + par[0] * TMath::Power(xx , n) * TMath::Exp(n * (1 - xx )) ;
ee299369 564 }
565 return signal ;
566}
567
568//__________________________________________________________________
569Bool_t AliEMCALRawUtils::RawSampledResponse(
570const Double_t dtime, const Double_t damp, Int_t * adcH, Int_t * adcL) const
571{
572 // for a start time dtime and an amplitude damp given by digit,
573 // calculates the raw sampled response AliEMCAL::RawResponseFunction
574
ee299369 575 Bool_t lowGain = kFALSE ;
576
48a56166 577 // A: par[0] // Amplitude = peak value
578 // t0: par[1]
579 // tau: par[2]
580 // N: par[3]
581 // ped: par[4]
582
56e13066 583 TF1 signalF("signal", RawResponseFunction, 0, GetRawFormatTimeBins(), 5);
48a56166 584 signalF.SetParameter(0, damp) ;
56e13066 585 signalF.SetParameter(1, (dtime + fgTimeTrigger)/fgTimeBinWidth) ;
b4133f05 586 signalF.SetParameter(2, fTau) ;
587 signalF.SetParameter(3, fOrder);
fe93d365 588 signalF.SetParameter(4, fgPedestalValue);
ee299369 589
590 for (Int_t iTime = 0; iTime < GetRawFormatTimeBins(); iTime++) {
56e13066 591 Double_t signal = signalF.Eval(iTime) ;
fe93d365 592
593 //According to Terry Awes, 13-Apr-2008
594 //add gaussian noise in quadrature to each sample
595 //Double_t noise = gRandom->Gaus(0.,fgFEENoise);
596 //signal = sqrt(signal*signal + noise*noise);
597
ee299369 598 adcH[iTime] = static_cast<Int_t>(signal + 0.5) ;
b4133f05 599 if ( adcH[iTime] > fgkRawSignalOverflow ){ // larger than 10 bits
600 adcH[iTime] = fgkRawSignalOverflow ;
ee299369 601 lowGain = kTRUE ;
602 }
603
604 signal /= fHighLowGainFactor;
605
606 adcL[iTime] = static_cast<Int_t>(signal + 0.5) ;
b4133f05 607 if ( adcL[iTime] > fgkRawSignalOverflow) // larger than 10 bits
608 adcL[iTime] = fgkRawSignalOverflow ;
ee299369 609 }
610 return lowGain ;
611}