]> git.uio.no Git - u/mrichter/AliRoot.git/blame - VZERO/AliVZERO.cxx
Fixed sprintf, so that the pointer address is printed correctly
[u/mrichter/AliRoot.git] / VZERO / AliVZERO.cxx
CommitLineData
47890cd3 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
88cb7938 16/* $Id$ */
47890cd3 17
18///////////////////////////////////////////////////////////////////////////
19// //
20// V-Zero Detector //
21// This class contains the base procedures for the VZERO detector //
b0d2c2d3 22// Default geometry of November 2003 : V0R box is 4.4 cm thick //
23// scintillators are 2 cm thick //
47890cd3 24// All comments should be sent to Brigitte CHEYNIS : //
61874e87 25// b.cheynis@ipnl.in2p3.fr //
26// //
47890cd3 27// //
28///////////////////////////////////////////////////////////////////////////
29
88cb7938 30
b2501ea3 31// --- Standard libraries ---
3af027ba 32#include <Riostream.h>
b0d2c2d3 33#include <stdlib.h>
47890cd3 34
b2501ea3 35// --- ROOT libraries ---
36#include <TNamed.h>
b0d2c2d3 37#include "TROOT.h"
38#include "TFile.h"
39#include "TNetFile.h"
40#include "TRandom.h"
41#include "TTree.h"
42#include "TBranch.h"
43#include "TClonesArray.h"
44#include "TStopwatch.h"
b6fd9c4a 45#include "TParameter.h"
0984ee9d 46#include "TF1.h"
b2501ea3 47
48// --- AliRoot header files ---
49#include "AliRun.h"
50#include "AliMC.h"
47890cd3 51#include "AliVZERO.h"
b2501ea3 52#include "AliVZEROLoader.h"
b0d2c2d3 53#include "AliVZERODigitizer.h"
54#include "AliVZEROBuffer.h"
55#include "AliRunDigitizer.h"
56#include "AliVZEROdigit.h"
0984ee9d 57#include "AliVZEROSDigit.h"
362c9d61 58#include "AliDAQ.h"
20a489c2 59#include "AliRawReader.h"
0984ee9d 60#include "AliCDBManager.h"
61#include "AliCDBEntry.h"
20a489c2 62#include "AliVZERORawStream.h"
b6fd9c4a 63#include "AliVZEROCalibData.h"
0984ee9d 64#include "AliVZERORecoParam.h"
65#include "AliVZEROReconstructor.h"
47890cd3 66
67ClassImp(AliVZERO)
0b2bea8b 68 //__________________________________________________________________
69AliVZERO::AliVZERO(): AliDetector(),
70 fIdSens1(0),
71 fThickness(0.),
72 fThickness1(0.),
73 fMaxStepQua(0.),
74 fMaxStepAlu(0.),
75 fMaxDestepQua(0.),
0984ee9d 76 fMaxDestepAlu(0.),
77 fCalibData(NULL),
78 fTimeSlewing(NULL),
79 fSignalShape(NULL),
80 fRecoParam(NULL)
0b2bea8b 81{
82/// Default Constructor
83
84 AliDebug(1,Form("default (empty) ctor this=%p",this));
0984ee9d 85 fIshunt = 0;
86
87 for(Int_t i = 0 ; i < 64; ++i) {
88 fNBins[i] = 0;
89 fBinSize[i] = 0;
90 }
0b2bea8b 91}
0984ee9d 92
47890cd3 93//_____________________________________________________________________________
94AliVZERO::AliVZERO(const char *name, const char *title)
0b2bea8b 95 : AliDetector(name,title),
96 fIdSens1(0),
97 fThickness(4.4),
98 fThickness1(2.0),
99 fMaxStepQua(0.05),
100 fMaxStepAlu(0.01),
101 fMaxDestepQua(-1.0),
0984ee9d 102 fMaxDestepAlu(-1.0),
103 fCalibData(NULL),
104 fTimeSlewing(NULL),
105 fSignalShape(NULL),
106 fRecoParam(NULL)
47890cd3 107{
0b2bea8b 108
47890cd3 109 // Standard constructor for VZERO Detector
0b2bea8b 110
111 AliDebug(1,Form("ctor this=%p",this));
47890cd3 112
b0d2c2d3 113 // fIshunt = 1; // All hits are associated with primary particles
47890cd3 114
61874e87 115 fHits = new TClonesArray("AliVZEROhit", 400);
116 fDigits = new TClonesArray("AliVZEROdigit",400);
117
5d12ce38 118 gAlice->GetMCApp()->AddHitList(fHits);
61874e87 119
0b2bea8b 120// fThickness = 4.4; // total thickness of the V0R box in cm
121// fThickness1 = 2.0; // thickness of scintillating cells in cm
122//
123// fMaxStepQua = 0.05;
124// fMaxStepAlu = 0.01;
125//
126// fMaxDestepQua = -1.0;
127// fMaxDestepAlu = -1.0;
47890cd3 128
0984ee9d 129 for(Int_t i = 0 ; i < 64; ++i) {
130 fNBins[i] = 0;
131 fBinSize[i] = 0;
132 }
61874e87 133}
134
135//_____________________________________________________________________________
136AliVZERO::~AliVZERO()
137{
b2501ea3 138 //
139 // Default destructor for VZERO Detector
140 //
141
61874e87 142 if (fHits) {
143 fHits->Delete();
144 delete fHits;
b0d2c2d3 145 fHits=0; }
b2501ea3 146
147 if (fDigits) {
148 fDigits->Delete();
149 delete fDigits;
b0d2c2d3 150 fDigits=0; }
0984ee9d 151 if (fSignalShape) {
152 delete fSignalShape;
153 fSignalShape = NULL;
154 }
155 if (fRecoParam) {
156 delete fRecoParam;
157 fRecoParam = NULL;
158 }
61874e87 159}
47890cd3 160
47890cd3 161//_____________________________________________________________________________
162void AliVZERO::CreateGeometry()
163{
164 //
b2501ea3 165 // Builds simple Geant3 geometry
47890cd3 166 //
167}
168//_____________________________________________________________________________
169void AliVZERO::CreateMaterials()
170{
171 //
b2501ea3 172 // Creates materials used for Geant3 geometry
47890cd3 173 //
174}
61874e87 175
47890cd3 176//_____________________________________________________________________________
47890cd3 177void AliVZERO::Init()
178{
179 //
b2501ea3 180 // Initialises the VZERO class after it has been built
47890cd3 181 //
182}
183
61874e87 184
b2501ea3 185//_____________________________________________________________________________
47890cd3 186void AliVZERO::SetMaxStepQua(Float_t p1)
187{
b2501ea3 188 //
189 // Possible parametrisation of steps in active materials
190 //
47890cd3 191 fMaxStepQua = p1;
192}
193
b2501ea3 194//_____________________________________________________________________________
47890cd3 195void AliVZERO::SetMaxStepAlu(Float_t p1)
196{
b2501ea3 197 //
198 // Possible parametrisation of steps in Aluminum foils (not used in
199 // version v2)
200 //
47890cd3 201 fMaxStepAlu = p1;
202}
203
b2501ea3 204//_____________________________________________________________________________
47890cd3 205void AliVZERO::SetMaxDestepQua(Float_t p1)
206{
b2501ea3 207 //
208 // Possible parametrisation of steps in active materials (quartz)
209 //
47890cd3 210 fMaxDestepQua = p1;
211}
212
b2501ea3 213//_____________________________________________________________________________
47890cd3 214void AliVZERO::SetMaxDestepAlu(Float_t p1)
215{
b2501ea3 216 //
217 // Possible parametrisation of steps in Aluminum (not used in
218 // version v2)
219 //
47890cd3 220 fMaxDestepAlu = p1;
221}
4dbb3fd3 222
b2501ea3 223//_____________________________________________________________________________
4dbb3fd3 224AliLoader* AliVZERO::MakeLoader(const char* topfoldername)
225{
b2501ea3 226 //
227 // Builds VZEROgetter (AliLoader type)
4dbb3fd3 228 // if detector wants to use customized getter, it must overload this method
b2501ea3 229 //
3e87825e 230// Info("MakeLoader","Creating AliVZEROLoader. Top folder is %s.",topfoldername);
231
232 AliDebug(1,Form("Creating AliVZEROLoader, Top folder is %s ",topfoldername));
4dbb3fd3 233 fLoader = new AliVZEROLoader(GetName(),topfoldername);
234 return fLoader;
235}
236
b2501ea3 237//_____________________________________________________________________________
238void AliVZERO::SetTreeAddress()
239{
b0d2c2d3 240 //
0e305a84 241 // Sets tree address for hits.
b2501ea3 242 //
0e305a84 243 if (fLoader->TreeH() && (fHits == 0x0))
244 fHits = new TClonesArray("AliVZEROhit", 400);
245
246 AliDetector::SetTreeAddress();
247}
4dbb3fd3 248
b0d2c2d3 249//_____________________________________________________________________________
250AliDigitizer* AliVZERO::CreateDigitizer(AliRunDigitizer* manager) const
251{
252 //
253 // Creates a digitizer for VZERO
254 //
255 return new AliVZERODigitizer(manager);
256}
257
258//_____________________________________________________________________________
259void AliVZERO::Hits2Digits(){
260 //
72da5ce8 261 // Converts hits to digits
b0d2c2d3 262 //
72da5ce8 263 // Creates the VZERO digitizer
264 AliVZERODigitizer* dig = new AliVZERODigitizer(this,AliVZERODigitizer::kHits2Digits);
b0d2c2d3 265
72da5ce8 266 // Creates the digits
267 dig->Exec("");
268
269}
b0d2c2d3 270
72da5ce8 271//_____________________________________________________________________________
272void AliVZERO::Hits2SDigits(){
273 //
274 // Converts hits to summable digits
275 //
b0d2c2d3 276 // Creates the VZERO digitizer
72da5ce8 277 AliVZERODigitizer* dig = new AliVZERODigitizer(this,AliVZERODigitizer::kHits2SDigits);
b0d2c2d3 278
72da5ce8 279 // Creates the sdigits
b0d2c2d3 280 dig->Exec("");
281
282}
72da5ce8 283
b0d2c2d3 284//_____________________________________________________________________________
285void AliVZERO::Digits2Raw()
286{
c4f89fd4 287 //
288 // Converts digits of the current event to raw data
289 //
b0d2c2d3 290
c4f89fd4 291 AliVZERO *fVZERO = (AliVZERO*)gAlice->GetDetector("VZERO");
292 fLoader->LoadDigits();
293 TTree* digits = fLoader->TreeD();
294 if (!digits) {
295 Error("Digits2Raw", "no digits tree");
296 return;
297 }
298 TClonesArray * VZEROdigits = new TClonesArray("AliVZEROdigit",1000);
299 fVZERO->SetTreeAddress();
300 digits->GetBranch("VZERODigit")->SetAddress(&VZEROdigits);
b0d2c2d3 301
c4f89fd4 302 const char *fileName = AliDAQ::DdlFileName("VZERO",0);
303 AliVZEROBuffer* buffer = new AliVZEROBuffer(fileName);
b0d2c2d3 304
c4f89fd4 305 // Get Trigger information first
306 // Read trigger inputs from trigger-detector object
307 AliDataLoader * dataLoader = fLoader->GetDigitsDataLoader();
308 if( !dataLoader->IsFileOpen() )
309 dataLoader->OpenFile( "READ" );
310 AliTriggerDetector* trgdet = (AliTriggerDetector*)dataLoader->GetDirectory()->Get( "Trigger" );
311 UInt_t triggerInfo = 0;
312 if(trgdet) {
313 triggerInfo = trgdet->GetMask() & 0xffff;
314 }
315 else {
316 AliError(Form("There is no trigger object for %s",fLoader->GetName()));
317 }
b0d2c2d3 318
c4f89fd4 319 buffer->WriteTriggerInfo((UInt_t)triggerInfo);
320 buffer->WriteTriggerScalers();
321 buffer->WriteBunchNumbers();
322
b6fd9c4a 323 Int_t aBBflagsV0A = 0;
324 Int_t aBBflagsV0C = 0;
325 Int_t aBGflagsV0A = 0;
326 Int_t aBGflagsV0C = 0;
327
328 if (digits->GetUserInfo()->FindObject("BBflagsV0A")) {
329 aBBflagsV0A = ((TParameter<int>*)digits->GetUserInfo()->FindObject("BBflagsV0A"))->GetVal();
330 }
331 else
332 AliWarning("V0A beam-beam flags not found in digits tree UserInfo! The flags will not be written to the raw-data stream!");
333
334 if (digits->GetUserInfo()->FindObject("BBflagsV0C")) {
335 aBBflagsV0C = ((TParameter<int>*)digits->GetUserInfo()->FindObject("BBflagsV0C"))->GetVal();
336 }
337 else
338 AliWarning("V0C beam-beam flags not found in digits tree UserInfo! The flags will not be written to the raw-data stream!");
726d762c 339
b6fd9c4a 340 if (digits->GetUserInfo()->FindObject("BGflagsV0A")) {
341 aBGflagsV0A = ((TParameter<int>*)digits->GetUserInfo()->FindObject("BGflagsV0A"))->GetVal();
342 }
343 else
344 AliWarning("V0A beam-gas flags not found in digits tree UserInfo! The flags will not be written to the raw-data stream!");
345
346 if (digits->GetUserInfo()->FindObject("BGflagsV0C")) {
347 aBGflagsV0C = ((TParameter<int>*)digits->GetUserInfo()->FindObject("BGflagsV0C"))->GetVal();
348 }
349 else
350 AliWarning("V0C beam-gas flags not found in digits tree UserInfo! The flags will not be written to the raw-data stream!");
351
352 // Now retrieve the channel information: charge smaples + time and
353 // dump it into ADC and Time arrays
c4f89fd4 354 Int_t nEntries = Int_t(digits->GetEntries());
b6fd9c4a 355 Short_t aADC[64][AliVZEROdigit::kNClocks];
356 Float_t aTime[64];
357 Float_t aWidth[64];
358 Bool_t aIntegrator[64];
359 Bool_t aBBflag[64];
360 Bool_t aBGflag[64];
b0d2c2d3 361
c4f89fd4 362 for (Int_t i = 0; i < nEntries; i++) {
363 fVZERO->ResetDigits();
364 digits->GetEvent(i);
365 Int_t ndig = VZEROdigits->GetEntriesFast();
b0d2c2d3 366
c4f89fd4 367 if(ndig == 0) continue;
c4f89fd4 368 for(Int_t k=0; k<ndig; k++){
7c786908 369 AliVZEROdigit* fVZERODigit = (AliVZEROdigit*) VZEROdigits->At(k);
370 // Convert aliroot channel k into FEE channel iChannel before writing data
b6fd9c4a 371 Int_t iChannel = AliVZEROCalibData::GetBoardNumber(fVZERODigit->PMNumber()) * 8 +
372 AliVZEROCalibData::GetFEEChannelNumber(fVZERODigit->PMNumber());
373 for(Int_t iClock = 0; iClock < AliVZEROdigit::kNClocks; ++iClock) aADC[iChannel][iClock] = fVZERODigit->ChargeADC(iClock);
374 aTime[iChannel] = fVZERODigit->Time();
375 aWidth[iChannel] = fVZERODigit->Width();
376 aIntegrator[iChannel]= fVZERODigit->Integrator();
377 if(fVZERODigit->PMNumber() < 32) {
378 aBBflag[iChannel] = (aBBflagsV0C >> fVZERODigit->PMNumber()) & 0x1;
379 aBGflag[iChannel] = (aBGflagsV0C >> fVZERODigit->PMNumber()) & 0x1;
380 }
381 else {
382 aBBflag[iChannel] = (aBBflagsV0A >> (fVZERODigit->PMNumber()-32)) & 0x1;
383 aBGflag[iChannel] = (aBGflagsV0A >> (fVZERODigit->PMNumber()-32)) & 0x1;
384 }
55a7359d 385 AliDebug(1,Form("DDL: %s\tdigit number: %d\tPM number: %d\tADC: %d\tTime: %f",
386 fileName,k,fVZERODigit->PMNumber(),aADC[k][AliVZEROdigit::kNClocks/2],aTime[k]));
c4f89fd4 387 }
c4f89fd4 388 }
b0d2c2d3 389
c4f89fd4 390 // Now fill raw data
391
392 for (Int_t iCIU = 0; iCIU < 8; iCIU++) {
393
394 // decoding of one Channel Interface Unit numbered iCIU - there are 8 channels per CIU (and 8 CIUs) :
395
396 for(Int_t iChannel_Offset = iCIU*8; iChannel_Offset < (iCIU*8)+8; iChannel_Offset=iChannel_Offset+4) {
397 for(Int_t iChannel = iChannel_Offset; iChannel < iChannel_Offset+4; iChannel++) {
b6fd9c4a 398 buffer->WriteChannel(iChannel, aADC[iChannel], aIntegrator[iChannel]);
c4f89fd4 399 }
b6fd9c4a 400 buffer->WriteBeamFlags(&aBBflag[iChannel_Offset],&aBGflag[iChannel_Offset]);
c4f89fd4 401 buffer->WriteMBInfo();
402 buffer->WriteMBFlags();
403 buffer->WriteBeamScalers();
404 }
b6fd9c4a 405
406 for(Int_t iChannel = iCIU*8 + 7; iChannel >= iCIU*8; iChannel--) {
407 buffer->WriteTiming(aTime[iChannel], aWidth[iChannel]);
c4f89fd4 408 }
726d762c 409
c4f89fd4 410 // End of decoding of one CIU card
411
412 } // end of decoding the eight CIUs
413
b0d2c2d3 414 delete buffer;
c4f89fd4 415 fLoader->UnloadDigits();
b0d2c2d3 416}
417
20a489c2 418//_____________________________________________________________________________
419Bool_t AliVZERO::Raw2SDigits(AliRawReader* rawReader){
420 // Converts the VZERO raw data into digits
421 // The method is used for merging simulated and
422 // real data events
423 TStopwatch timer;
424 timer.Start();
425
426 if(!fLoader) {
427 AliError("no VZERO loader found");
0984ee9d 428 return kFALSE;
429 }
430 fLoader->LoadSDigits("UPDATE");
20a489c2 431
0984ee9d 432 if (!fLoader->TreeS()) fLoader->MakeTree("S");
433 fLoader->MakeSDigitsContainer();
434 TTree* treeS = fLoader->TreeS();
435
436 TClonesArray *sdigits = new TClonesArray("AliVZEROSDigit", 64);
437 treeS->Branch("VZEROSDigit", &sdigits);
438
439 {
440 rawReader->Reset();
441 AliVZERORawStream rawStream(rawReader);
20a489c2 442
0984ee9d 443 if (!rawStream.Next()) return kFALSE; // No VZERO data found
444
445 GetCalibData();
446
447 Int_t nSDigits = 0;
448 Float_t *charges = NULL;
449 Int_t nbins = 0;
450 for(Int_t iChannel=0; iChannel < 64; ++iChannel) {
451 Int_t offlineCh = rawStream.GetOfflineChannel(iChannel);
452 Short_t chargeADC[AliVZEROdigit::kNClocks];
453 for(Int_t iClock=0; iClock < AliVZEROdigit::kNClocks; ++iClock) {
454 chargeADC[iClock] = rawStream.GetPedestal(iChannel,iClock);
455 }
456 // Integrator flag
457 Bool_t integrator = rawStream.GetIntegratorFlag(iChannel,AliVZEROdigit::kNClocks/2);
458 // HPTDC data (leading time and width)
459 Int_t board = AliVZEROCalibData::GetBoardNumber(offlineCh);
460 Float_t time = rawStream.GetTime(iChannel)*fCalibData->GetTimeResolution(board);
461 // Float_t width = rawStream.GetWidth(iChannel)*fCalibData->GetWidthResolution(board);
462 Float_t adc = 0;
463
464 // Pedestal retrieval and suppression
465 Float_t maxadc = 0;
466 Int_t imax = -1;
467 Float_t adcPedSub[AliVZEROdigit::kNClocks];
468 Float_t integral = fSignalShape->Integral(0,200);
469 for(Int_t iClock=0; iClock < AliVZEROdigit::kNClocks; ++iClock) {
470 Bool_t iIntegrator = (iClock%2 == 0) ? integrator : !integrator;
471 Int_t k = offlineCh + 64*iIntegrator;
472 adcPedSub[iClock] = (Float_t)chargeADC[iClock] - fCalibData->GetPedestal(k);
473 if(adcPedSub[iClock] <= fRecoParam->GetNSigmaPed()*fCalibData->GetSigma(k)) {
474 adcPedSub[iClock] = 0;
475 continue;
476 }
477 if(iClock < fRecoParam->GetStartClock() || iClock > fRecoParam->GetEndClock()) continue;
478 if(adcPedSub[iClock] > maxadc) {
479 maxadc = adcPedSub[iClock];
480 imax = iClock;
481 }
482 }
483 if (imax != -1) {
484 Int_t start = imax - fRecoParam->GetNPreClocks();
485 if (start < 0) start = 0;
486 Int_t end = imax + fRecoParam->GetNPostClocks();
487 if (end > 20) end = 20;
488 for(Int_t iClock = start; iClock <= end; iClock++) {
489 adc += adcPedSub[iClock];
490 }
491 }
492 Float_t correctedTime = CorrectLeadingTime(offlineCh,time,adc);
493
494 if (!charges) {
495 nbins = fNBins[offlineCh];
496 charges = new Float_t[nbins];
497 }
498 else if (nbins != fNBins[offlineCh]) {
499 delete [] charges;
500 nbins = fNBins[offlineCh];
501 charges = new Float_t[nbins];
502 }
503 memset(charges,0,nbins*sizeof(Float_t));
504
505 // Now lets produce SDigit
506 if ((correctedTime > (AliVZEROReconstructor::kInvalidTime + 1e-6)) &&
507 (adc > 1e-6)) {
508 for(Int_t iBin = 0; iBin < nbins; ++iBin) {
509 Float_t t = fBinSize[offlineCh]*Float_t(iBin);
510 if ((t < correctedTime) ||
511 (t > (correctedTime+200.))) continue;
512 charges[iBin] = kChargePerADC*adc*(fSignalShape->Eval(t-correctedTime)*fBinSize[offlineCh]/integral);
513 }
514 }
515
516 TClonesArray &sdigitsref = *sdigits;
517 new (sdigitsref[nSDigits++]) AliVZEROSDigit(offlineCh,fNBins[offlineCh],charges);
518 }
519 if (charges) delete [] charges;
520 }
20a489c2 521
0984ee9d 522 treeS->Fill();
523 fLoader->WriteSDigits("OVERWRITE");
524 fLoader->UnloadSDigits();
20a489c2 525
20a489c2 526 timer.Stop();
527 timer.Print();
c61a7285 528 return kTRUE;
20a489c2 529}
530
0984ee9d 531//_____________________________________________________________________________
532void AliVZERO::GetCalibData()
533{
534 // Gets calibration object for VZERO set
535 // Do nothing in case it is already loaded
536 if (fCalibData) return;
537
538 AliCDBEntry *entry = AliCDBManager::Instance()->Get("VZERO/Calib/Data");
539 if (entry) fCalibData = (AliVZEROCalibData*) entry->GetObject();
540 if (!fCalibData) AliFatal("No calibration data from calibration database !");
541
542 AliCDBEntry *entry2 = AliCDBManager::Instance()->Get("VZERO/Calib/TimeSlewing");
543 if (!entry2) AliFatal("VZERO time slewing function is not found in OCDB !");
544 fTimeSlewing = (TF1*)entry2->GetObject();
545
546 for(Int_t i = 0 ; i < 64; ++i) {
547 Int_t board = AliVZEROCalibData::GetBoardNumber(i);
548 fNBins[i] = TMath::Nint(((Float_t)(fCalibData->GetMatchWindow(board)+1)*25.0+
549 (Float_t)kMaxTDCWidth*fCalibData->GetWidthResolution(board))/
550 fCalibData->GetTimeResolution(board));
551 fBinSize[i] = fCalibData->GetTimeResolution(board);
552 }
553
554 fSignalShape = new TF1("VZEROSDigitSignalShape",this,&AliVZERO::SignalShape,0,200,6,"AliVZERO","SignalShape");
555 fSignalShape->SetParameters(0,1.57345e1,-4.25603e-1,
556 2.9,6.40982,3.69339e-01);
557
558 fRecoParam = new AliVZERORecoParam;
559
560 return;
561}
562
563Float_t AliVZERO::CorrectLeadingTime(Int_t i, Float_t time, Float_t adc) const
564{
565 // Correct the leading time
566 // for slewing effect and
567 // misalignment of the channels
568 if (time < 1e-6) return -1024;
569
570 // In case of pathological signals
571 if (adc < 1e-6) return time;
572
573 // Slewing correction
574 Float_t thr = fCalibData->GetDiscriThr(i);
575 time -= fTimeSlewing->Eval(adc/thr);
4dbb3fd3 576
0984ee9d 577 return time;
578}
579
580double AliVZERO::SignalShape(double *x, double *par)
581{
582 // this function simulates the signal
583 // shape used in Raw->SDigits method
584
585 Double_t xx = x[0];
586 if (xx <= par[0]) return 0;
587 Double_t a = 1./TMath::Power((xx-par[0])/par[1],1./par[2]);
588 if (xx <= par[3]) return a;
589 Double_t b = 1./TMath::Power((xx-par[3])/par[4],1./par[5]);
590 Double_t f = a*b/(a+b);
591 AliDebug(100,Form("x=%f func=%f",xx,f));
592 return f;
593}