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