]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TOF/AliTOFDigitizer.cxx
Improvements in memory handling.
[u/mrichter/AliRoot.git] / TOF / AliTOFDigitizer.cxx
CommitLineData
68861244 1/**************************************************************************
8e72349e 2 * Copyright(c) 1998-2000, ALICE Experiment at CERN, All rights reserved. *
68861244 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
0e46b9ae 16//_________________________________________________________________________//
17// //
18// This is a TTask that makes TOF-Digits out of TOF-SDigits. //
19// The simulation of the detector is performed at sdigits level: //
20// during digitization the unique task is the sum of all sdigits in the //
21// same pad. //
22// Digits are written to TreeD in branch "TOF". //
23// //
24// -- Author : F. Pierella (Bologna University) pierella@bo.infn.it //
25// //
26//_________________________________________________________________________//
68861244 27
5c7c93fa 28//#include "Riostream.h"
55cb22a1 29
5c7c93fa 30//#include "TFile.h"
3a3ece53 31#include "TH1F.h"
32#include "TTree.h"
33#include "TRandom.h"
10056aa6 34#include "TObjArray.h"
68861244 35
d3c7bfac 36#include "AliLoader.h"
0e46b9ae 37#include "AliLog.h"
d3c7bfac 38#include "AliRunDigitizer.h"
0e46b9ae 39#include "AliRunLoader.h"
40#include "AliRun.h"
68861244 41
0e46b9ae 42#include "AliTOFcalib.h"
5c7c93fa 43//#include "AliTOFChannelOnline.h"
10056aa6 44#include "AliTOFChannelOffline.h"
55cb22a1 45#include "AliTOFDigitizer.h"
8e72349e 46#include "AliTOFdigit.h"
8e72349e 47#include "AliTOFHitMap.h"
10056aa6 48#include "AliTOFGeometry.h"
0e46b9ae 49#include "AliTOFSDigit.h"
50#include "AliTOF.h"
51
3a3ece53 52extern TDirectory *gDirectory;
5c7c93fa 53//extern TFile *gFile;
3a3ece53 54extern TRandom *gRandom;
55
56extern AliRun *gAlice;
57
58
68861244 59ClassImp(AliTOFDigitizer)
60
8e72349e 61//___________________________________________
655e379f 62 AliTOFDigitizer::AliTOFDigitizer() :
63 AliDigitizer(),
b24266ca 64 fDigits(new TClonesArray("AliTOFdigit",4000)),
65 fSDigitsArray(new TClonesArray("AliTOFSDigit",1000)),
8fc02d6f 66 fhitMap(0x0),
67 fCalib(new AliTOFcalib())
68861244 68{
8e72349e 69 // Default ctor - don't use it
8fc02d6f 70 InitDecalibration();
68861244 71}
72
8e72349e 73//___________________________________________
655e379f 74AliTOFDigitizer::AliTOFDigitizer(AliRunDigitizer* manager):
75 AliDigitizer(manager),
b24266ca 76 fDigits(new TClonesArray("AliTOFdigit",4000)),
77 fSDigitsArray(new TClonesArray("AliTOFSDigit",1000)),
8fc02d6f 78 fhitMap(0x0),
79 fCalib(new AliTOFcalib())
68861244 80{
340693af 81 //ctor with RunDigitizer
8fc02d6f 82 InitDecalibration();
68861244 83}
84
7aeeaf38 85//------------------------------------------------------------------------
655e379f 86AliTOFDigitizer::AliTOFDigitizer(const AliTOFDigitizer &source):
87 AliDigitizer(source),
8fc02d6f 88 fDigits(source.fDigits),
89 fSDigitsArray(source.fSDigitsArray),
90 fhitMap(source.fhitMap),
91 fCalib(source.fCalib)
7aeeaf38 92{
93 // copy constructor
7aeeaf38 94}
95
96//------------------------------------------------------------------------
97 AliTOFDigitizer& AliTOFDigitizer::operator=(const AliTOFDigitizer &source)
98{
99 // ass. op.
8a190ba2 100
101 if (this == &source)
102 return *this;
103
104 AliDigitizer::operator=(source);
105 fDigits=source.fDigits;
106 fSDigitsArray=source.fSDigitsArray;
107 fhitMap=source.fhitMap;
108 fCalib=source.fCalib;
7aeeaf38 109 return *this;
110
111}
112
8e72349e 113//------------------------------------------------------------------------
68861244 114AliTOFDigitizer::~AliTOFDigitizer()
115{
8e72349e 116 // Destructor
8fc02d6f 117 delete fCalib;
b24266ca 118 if (fDigits){
119 fDigits->Delete();
120 delete fDigits;
121 fDigits=0x0;
122 }
123 if (fSDigitsArray){
124 fSDigitsArray->Delete();
125 delete fSDigitsArray;
126 fSDigitsArray=0x0;
127 }
68861244 128}
8e72349e 129
130//---------------------------------------------------------------------
131
d076c8d5 132void AliTOFDigitizer::Exec(Option_t* /*option*/)
68861244 133{
8e72349e 134 //
135 // Perform digitization and merging.
136 // The algorithm is the following:
137 // - a hitmap is created to check if a pad is already activated;
138 // - an sdigits container is created to collect all sdigits from
139 // different files;
140 // - sdigits are summed using the hitmap;
141 // - the sdigits container is used to create the array of AliTOFdigit.
142 //
68861244 143
d076c8d5 144 AliDebug(1, "");
68861244 145
68861244 146
8e72349e 147 // get the ptr to TOF detector
148 AliTOF * tof = (AliTOF *) gAlice->GetDetector("TOF") ;
68861244 149
8e72349e 150 //Make branches
151 char branchname[20];
152 sprintf (branchname, "%s", tof->GetName ());
88cb7938 153
154 AliRunLoader* outrl = AliRunLoader::GetRunLoader(fManager->GetOutputFolderName());
155 if (outrl == 0x0)
156 {
d076c8d5 157 AliError("Can not find Run Loader in output folder.");
88cb7938 158 return;
159 }
160
10056aa6 161 /*
d3c7bfac 162 outrl->CdGAFile();
163 TFile *in=(TFile*)gFile;
164 TDirectory *savedir=gDirectory;
165
10056aa6 166
167 //when fGeom was needed
168
d3c7bfac 169 if (!in->IsOpen()) {
170 AliWarning("Geometry file is not open default TOF geometry will be used");
10056aa6 171 fGeom = new AliTOFGeometry();
d3c7bfac 172 }
173 else {
174 in->cd();
55cb22a1 175 fGeom = (AliTOFGeometry*)in->Get("TOFgeometry");
d3c7bfac 176 }
10056aa6 177
d3c7bfac 178 savedir->cd();
10056aa6 179 */
88cb7938 180 AliLoader* outgime = outrl->GetLoader("TOFLoader");
181 if (outgime == 0x0)
182 {
d076c8d5 183 AliError("Can not get TOF Loader from Output Run Loader.");
88cb7938 184 return;
185 }
186
187 TTree* treeD = outgime->TreeD();
188 if (treeD == 0x0)
189 {
190 outgime->MakeTree("D");
191 treeD = outgime->TreeD();
192 }
8e72349e 193 //Make branch for digits (to be created in Init())
194 tof->MakeBranchInTree(treeD,branchname,&fDigits,4000);
195
196 // container for all summed sdigits (to be created in Init())
95b42457 197 //fSDigitsArray=new TClonesArray("AliTOFSDigit",1000);
68861244 198
8e72349e 199 // create hit map (to be created in Init())
10056aa6 200 fhitMap = new AliTOFHitMap(fSDigitsArray);
68861244 201
8e72349e 202 // Loop over files to digitize
203
204 for (Int_t inputFile=0; inputFile<fManager->GetNinputs();
205 inputFile++) {
206 ReadSDigit(inputFile);
88cb7938 207 }
8e72349e 208
209 // create digits
210 CreateDigits();
211
212 // free used memory for Hit Map in current event
213 delete fhitMap;
95b42457 214 fSDigitsArray->Clear();
a5c70f8e 215
8e72349e 216 treeD->Fill();
c630773f 217
218 AliInfo("----------------------------------------");
219 AliInfo(Form("%d digits have been created", fDigits->GetEntriesFast()));
220 AliInfo("----------------------------------------");
221
88cb7938 222 outgime->WriteDigits("OVERWRITE");
223 outgime->UnloadDigits();
b24266ca 224 fDigits->Clear();
8e72349e 225
226}
227
228//---------------------------------------------------------------------
229
55cb22a1 230void AliTOFDigitizer::CreateDigits()
8e72349e 231{
232 // loop on sdigits container to fill the AliTOFdigit TClonesArray
233 // start digitizing all the collected sdigits
234
c7764ee9 235 Int_t ndump=0; // dump the first ndump created digits for each event
8e72349e 236
237 // get the total number of collected sdigits
238 Int_t ndig = fSDigitsArray->GetEntriesFast();
239
240 for (Int_t k = 0; k < ndig; k++) {
68861244 241
da3d3acd 242 Int_t vol[5]; // location for a digit
7e6dce66 243 for (Int_t i=0; i<5; i++) vol[i] = -1;
68861244 244
8e72349e 245 // Get the information for this digit
246 AliTOFSDigit *tofsdigit = (AliTOFSDigit *) fSDigitsArray->UncheckedAt(k);
68861244 247
8e72349e 248 Int_t nslot=tofsdigit->GetNDigits(); // get the number of slots
249 // for current sdigit
68861244 250
8e72349e 251 // TOF sdigit volumes (always the same for all slots)
da3d3acd 252 Int_t sector = tofsdigit->GetSector(); // range [0-17]
253 Int_t plate = tofsdigit->GetPlate(); // range [0- 4]
d3c7bfac 254 Int_t strip = tofsdigit->GetStrip(); // range [0-14/18/19]
da3d3acd 255 Int_t padz = tofsdigit->GetPadz(); // range [0- 1]
256 Int_t padx = tofsdigit->GetPadx(); // range [0-47]
68861244 257
8e72349e 258 vol[0] = sector;
259 vol[1] = plate;
260 vol[2] = strip;
261 vol[3] = padx;
262 vol[4] = padz;
68861244 263
8e72349e 264 //--------------------- QA section ----------------------
265 // in the while, I perform QA
7e6dce66 266 Bool_t isSDigitBad = (sector<0 || sector>17 || plate<0 || plate >4 || padz<0 || padz>1 || padx<0 || padx>47);
68861244 267
8e72349e 268 if (isSDigitBad) {
d3c7bfac 269 //AliFatal("strange sdigit found");
270 AliFatal(Form("strange sdigit found %3i %2i %2i %3i %3i", sector, plate, padz, padx, strip));
68861244 271 }
8e72349e 272 //-------------------------------------------------------
68861244 273
8e72349e 274 //------------------- Dump section ----------------------
275 if(k<ndump){
3a3ece53 276 AliInfo(Form("%2i-th | Sector %2i | Plate %1i | Strip %2i | PadZ %1i | PadX %2i ", k, sector, plate, strip, padz, padx));
277 AliInfo(Form("%2i-th", k));
278 AliInfo("----------------------------------------------------");
68861244 279 }
8e72349e 280 // ------------------------------------------------------
68861244 281
8e72349e 282 // start loop on number of slots for current sdigit
283 for (Int_t islot = 0; islot < nslot; islot++) {
bf33f8f0 284 Int_t digit[4] = {-1,-1,-1,-1}; // TOF digit variables
7aeeaf38 285 Int_t tracknum[AliTOFSDigit::kMAXDIGITS]; // contributing tracks for the current slot
8e72349e 286
bf33f8f0 287 Int_t tdc=tofsdigit->GetTdc(islot); digit[0]=tdc;
288 Int_t adc=tofsdigit->GetAdc(islot); digit[1]=adc;
3e2f0097 289
290 //if (tdc>=8192) continue;//AdC
291
8e72349e 292 tracknum[0]=tofsdigit->GetTrack(islot,0);
293 tracknum[1]=tofsdigit->GetTrack(islot,1);
294 tracknum[2]=tofsdigit->GetTrack(islot,2);
68861244 295
7f1e928b 296 // new with placement must be used
8e72349e 297 // adding a TOF digit for each slot
7f1e928b 298 TClonesArray &aDigits = *fDigits;
299 Int_t last=fDigits->GetEntriesFast();
300 new (aDigits[last]) AliTOFdigit(tracknum, vol, digit);
301
68861244 302 }
68861244 303
8e72349e 304 } // end loop on sdigits - end digitizing all collected sdigits
55cb22a1 305
306 //Insert Decalibration
10056aa6 307 AliInfo("in digitizer, create digits");
8fc02d6f 308 DecalibrateTOFSignal();
68861244 309}
8e72349e 310
311//---------------------------------------------------------------------
312
313void AliTOFDigitizer::ReadSDigit(Int_t inputFile )
68861244 314{
8e72349e 315 // Read sdigits for current event and inputFile;
316 // store them into the sdigits container
317 // and update the hit map
318 // SDigits from different files are assumed to
319 // be created with the same simulation parameters.
68861244 320
b24266ca 321 // creating the TClonesArray to store the digits
322 static TClonesArray sdigitsClonesArray("AliTOFSDigit", 1000);
323 sdigitsClonesArray.Clear();
324
8e72349e 325 // get the treeS from manager
88cb7938 326 AliRunLoader* rl = AliRunLoader::GetRunLoader(fManager->GetInputFolderName(inputFile));
327 if (rl == 0x0)
328 {
d076c8d5 329 AliError(Form("Can not find Run Loader in input %d folder.",inputFile));
88cb7938 330 return;
331 }
332
333 AliLoader* gime = rl->GetLoader("TOFLoader");
334 if (gime == 0x0)
335 {
d076c8d5 336 AliError(Form("Can not get TOF Loader from Input %d Run Loader.",inputFile));
88cb7938 337 return;
338 }
339
340 TTree* currentTreeS=gime->TreeS();
341 if (currentTreeS == 0x0)
342 {
343 Int_t retval = gime->LoadSDigits();
344 if (retval)
345 {
d076c8d5 346 AliError(Form("Error occured while loading S. Digits for Input %d",inputFile));
88cb7938 347 return;
348 }
349 currentTreeS=gime->TreeS();
350 if (currentTreeS == 0x0)
351 {
d076c8d5 352 AliError(Form("Can not get S. Digits Tree for Input %d",inputFile));
88cb7938 353 return;
354 }
355 }
8e72349e 356 // get the branch TOF inside the treeS
b24266ca 357 TClonesArray * sdigitsDummyContainer=&sdigitsClonesArray;
8e72349e 358 // check if the branch exist
359 TBranch* tofBranch=currentTreeS->GetBranch("TOF");
360
361 if(!tofBranch){
d076c8d5 362 AliFatal(Form("TOF branch not found for input %d",inputFile));
8e72349e 363 }
68861244 364
8e72349e 365 tofBranch->SetAddress(&sdigitsDummyContainer);
68861244 366
8e72349e 367 Int_t nEntries = (Int_t)tofBranch->GetEntries();
368
369 // Loop through all entries in the tree
b020b05f 370 Int_t nbytes = 0;
8e72349e 371
372 for (Int_t iEntry = 0; iEntry < nEntries; iEntry++) {
68861244 373
8e72349e 374 // Import the tree
375 nbytes += tofBranch->GetEvent(iEntry);
68861244 376
8e72349e 377 // Get the number of sdigits
378 Int_t ndig = sdigitsDummyContainer->GetEntriesFast();
379
380 for (Int_t k=0; k<ndig; k++) {
381 AliTOFSDigit *tofSdigit= (AliTOFSDigit*) sdigitsDummyContainer->UncheckedAt(k);
382
da3d3acd 383 Int_t vol[5]; // location for a sdigit
7e6dce66 384 for (Int_t i=0; i<5; i++) vol[i] = -1;
da3d3acd 385
8e72349e 386 // check the sdigit volume
387 vol[0] = tofSdigit->GetSector();
388 vol[1] = tofSdigit->GetPlate();
389 vol[2] = tofSdigit->GetStrip();
390 vol[3] = tofSdigit->GetPadx();
391 vol[4] = tofSdigit->GetPadz();
392
393 if (fhitMap->TestHit(vol) != kEmpty) {
394 AliTOFSDigit *sdig = static_cast<AliTOFSDigit*>(fhitMap->GetHit(vol));
395 sdig->Update(tofSdigit);
396
397 } else {
398
399 CollectSDigit(tofSdigit); // collect the current sdigit
400 fhitMap->SetHit(vol); // update the hitmap for location vol
401
402 } // if (hitMap->TestHit(vol) != kEmpty)
403
404 } // for (Int_t k=0; k<ndig; k++)
405
406 } // end loop on entries
407
8e72349e 408}
409
410
411//_____________________________________________________________________________
412void AliTOFDigitizer::CollectSDigit(AliTOFSDigit * sdigit)
413{
414 //
7f1e928b 415 // Add a TOF sdigit in container
416 // new with placement must be used
417 TClonesArray &aSDigitsArray = *fSDigitsArray;
418 Int_t last=fSDigitsArray->GetEntriesFast();
419 // make a copy of the current sdigit and
420 // put it into tmp array
421 new (aSDigitsArray[last]) AliTOFSDigit(*sdigit);
68861244 422}
55cb22a1 423
424//_____________________________________________________________________________
8fc02d6f 425void AliTOFDigitizer::InitDecalibration() const {
8a7fda6f 426 //
427 //
428 //
429
8fc02d6f 430 fCalib->CreateCalArrays();
431 fCalib->ReadSimHistoFromCDB("TOF/Calib", -1); // use AliCDBManager's number
432 fCalib->ReadParOfflineFromCDB("TOF/Calib", -1); // use AliCDBManager's number
55cb22a1 433}
434//---------------------------------------------------------------------
8fc02d6f 435void AliTOFDigitizer::DecalibrateTOFSignal(){
55cb22a1 436
437 // Read Calibration parameters from the CDB
438
8fc02d6f 439 TObjArray * calOffline= fCalib->GetTOFCalArrayOffline();
55cb22a1 440
10056aa6 441 AliDebug(2,Form("Size of array for Offline Calibration = %i",calOffline->GetEntries()));
55cb22a1 442
443 // Initialize Quantities to Simulate ToT Spectra
444
8fc02d6f 445 TH1F * hToT= fCalib->GetTOFSimToT();
55cb22a1 446 Int_t nbins = hToT->GetNbinsX();
340693af 447 Float_t delta = hToT->GetBinWidth(1);
448 Float_t maxch = hToT->GetBinLowEdge(nbins)+delta;
55cb22a1 449 Float_t minch = hToT->GetBinLowEdge(1);
450 Float_t max=0,min=0; //maximum and minimum value of the distribution
451 Int_t maxbin=0,minbin=0; //maximum and minimum bin of the distribution
b97b1350 452
55cb22a1 453 for (Int_t ii=nbins; ii>0; ii--){
454 if (hToT->GetBinContent(ii)!= 0) {
340693af 455 max = maxch - (nbins-ii-1)*delta;
55cb22a1 456 maxbin = ii;
457 break;}
458 }
459 for (Int_t j=1; j<nbins; j++){
460 if (hToT->GetBinContent(j)!= 0) {
340693af 461 min = minch + (j-1)*delta;
55cb22a1 462 minbin = j;
463 break;}
464 }
b97b1350 465
340693af 466 Float_t maxToT=max;
467 Float_t minToT=min;
bf33f8f0 468
340693af 469 Float_t maxToTDistr=hToT->GetMaximum();
bf33f8f0 470
471 AliDebug (1, Form(" The minimum ToT = %f", minToT));
472 AliDebug (1, Form(" The maximum ToT = %f", maxToT));
473 AliDebug (1, Form(" The maximum peak in ToT = %f", maxToTDistr));
55cb22a1 474
55cb22a1 475 // Loop on TOF Digits
476
b97b1350 477 Bool_t isToTSimulated=kFALSE;
478 Bool_t misCalibPars=kFALSE;
479 if(hToT->GetEntries()>0)isToTSimulated=kTRUE;
10056aa6 480 Int_t ndigits = fDigits->GetEntriesFast();
55cb22a1 481 for (Int_t i=0;i<ndigits;i++){
482 AliTOFdigit * dig = (AliTOFdigit*)fDigits->At(i);
483 Int_t detId[5];
484 detId[0] = dig->GetSector();
485 detId[1] = dig->GetPlate();
486 detId[2] = dig->GetStrip();
487 detId[3] = dig->GetPadz();
488 detId[4] = dig->GetPadx();
b97b1350 489 dig->SetTdcND(dig->GetTdc()); // save the non decalibrated time
490 if(isToTSimulated){
491
492 //A realistic ToT Spectrum was found in input,
493 //decalibrated TOF Digits likely to be simulated....
494
10056aa6 495 Int_t index = AliTOFGeometry::GetIndex(detId); // The channel index
10056aa6 496 AliTOFChannelOffline *calChannelOffline = (AliTOFChannelOffline *)calOffline->At(index); //retrieve the info for time slewing
10056aa6 497 Double_t par[6]; // time slewing parameters
b97b1350 498
499 //check whether we actually ask for miscalibration
500
b97b1350 501 for (Int_t j = 0; j<6; j++){
10056aa6 502 par[j]=(Double_t)calChannelOffline->GetSlewPar(j);
b97b1350 503 if(par[j]!=0)misCalibPars=kTRUE;
504 }
40212801 505 AliDebug(2,Form(" Calib Pars = %f (0-th parameter for time slewing + time delay), %f, %f, %f, %f, %f ",par[0],par[1],par[2],par[3],par[4],par[5]));
506
b97b1350 507 // Now generate Realistic ToT distribution from TestBeam Data.
508 // Tot is in ns, assuming a Matching Window of 10 ns.
509
510 Float_t simToT = 0;
55cb22a1 511 Float_t trix = 0;
512 Float_t triy = 0;
72fb5d2e 513 Double_t timeCorr;
514 Double_t tToT;
340693af 515 while (simToT <= triy){
55cb22a1 516 trix = gRandom->Rndm(i);
517 triy = gRandom->Rndm(i);
340693af 518 trix = (maxToT-minToT)*trix + minToT;
519 triy = maxToTDistr*triy;
55cb22a1 520 Int_t binx=hToT->FindBin(trix);
340693af 521 simToT=hToT->GetBinContent(binx);
55cb22a1 522 }
b97b1350 523 // the generated ToT (ns)
72fb5d2e 524 tToT= (Double_t) trix; // to apply slewing we start from ns..
525 // transform TOF signal in ns
526 AliDebug(2,Form(" The Initial Time (counts): %i: ",dig->GetTdc()));
10056aa6 527 AliDebug(2,Form(" Time before miscalibration (ps) %e: ",dig->GetTdc()*(Double_t)AliTOFGeometry::TdcBinWidth()));
b97b1350 528 // add slewing effect
72fb5d2e 529 timeCorr=par[0] + tToT*(par[1] +tToT*(par[2] +tToT*(par[3] +tToT*(par[4] +tToT*par[5]))));
40212801 530 AliDebug(2,Form(" The Time slewing + delay (ns): %f: ",timeCorr));
b97b1350 531 // add global time shift
72fb5d2e 532 //convert to ps
54d4fb19 533 timeCorr*=1E3;
10056aa6 534 Double_t timeMis = (Double_t)(dig->GetTdc())*(Double_t)AliTOFGeometry::TdcBinWidth();
72fb5d2e 535 timeMis = timeMis+timeCorr;
536 AliDebug(2,Form(" The Miscalibrated time (ps): %e: ",timeMis));
537
538 // now update the digit info
539
540 Int_t tdcCorr= (Int_t)(timeMis/AliTOFGeometry::TdcBinWidth());
541 AliDebug(2,Form(" Final Time (counts): %i: ",tdcCorr));
bf33f8f0 542 // Setting Decalibrated Time signal (TDC counts)
72fb5d2e 543 dig->SetTdc(tdcCorr);
544 // Setting realistic ToT signal (TDC counts)
545 tToT*=1E3; //back to ps
546 Int_t tot=(Int_t)(tToT/AliTOFGeometry::ToTBinWidth());//(factor 1E3 as input ToT is in ns)
bf33f8f0 547 dig->SetToT(tot);
10056aa6 548 AliDebug(2,Form(" Final Time and ToT (counts): %i: , %i:",dig->GetTdc(),dig->GetToT()));
72fb5d2e 549 if(tdcCorr<0){
550 AliWarning (Form(" The bad Slewed Time(TDC counts)= %i ", tdcCorr));
bf33f8f0 551 AliWarning(Form(" The bad ToT (TDC counts)= %i ", tot));
552 }
55cb22a1 553 }
b97b1350 554 else{
555 // For Data with no Miscalibration, set ToT signal == Adc
bf33f8f0 556 dig->SetToT((Int_t)(dig->GetAdc()/AliTOFGeometry::ToTBinWidth())); //remove the factor 10^3 just to have a reasonable ToT range for raw data simulation even in the case of non-realistic ToT distribution (n.b. fAdc is practically an arbitrary quantity, and ToT has no impact on the TOF reco for non-miscalibrated digits)
55cb22a1 557 }
55cb22a1 558 }
559
b97b1350 560 if(!isToTSimulated){
ba795372 561 AliDebug(1,"Standard Production, no miscalibrated digits");
55cb22a1 562 }else{
b97b1350 563 if(!misCalibPars){
564 AliDebug(1,"Standard Production, no miscalibrated digits");
565 }
566 else {
567 AliDebug(1,"Simulating miscalibrated digits");
568 }
55cb22a1 569 }
55cb22a1 570 return;
571}
572