]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TRD/AliTRDdigitsManager.cxx
#100372: Request to port code to allow for event selection from ZDC timing info at...
[u/mrichter/AliRoot.git] / TRD / AliTRDdigitsManager.cxx
CommitLineData
6f1e466d 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$ */
6f1e466d 17
18///////////////////////////////////////////////////////////////////////////////
19// //
20// Manages the digits and the track dictionary in the form of //
b65e5048 21// TObjArray objects //
6f1e466d 22// //
23///////////////////////////////////////////////////////////////////////////////
6244debe 24
793ff80c 25#include <TTree.h>
77ad13f4 26
2745a409 27#include "AliLog.h"
77ad13f4 28
6f1e466d 29#include "AliTRDdigitsManager.h"
b65e5048 30#include "AliTRDarrayDictionary.h"
31#include "AliTRDarrayADC.h"
32#include "AliTRDarraySignal.h"
793ff80c 33#include "AliTRDdigit.h"
966f6939 34#include "AliTRDdigitsParam.h"
35#include "AliTRDSimParam.h"
793ff80c 36#include "AliTRDgeometry.h"
ca21baaa 37#include "AliTRDSignalIndex.h"
38
6f1e466d 39ClassImp(AliTRDdigitsManager)
40
793ff80c 41//_____________________________________________________________________________
42
43 // Number of track dictionary arrays
44 const Int_t AliTRDdigitsManager::fgkNDict = kNDict;
45
6f1e466d 46//_____________________________________________________________________________
3d0c7d6d 47AliTRDdigitsManager::AliTRDdigitsManager(Bool_t rawRec)
2745a409 48 :TObject()
49 ,fEvent(0)
50 ,fTree(0)
b65e5048 51 ,fDigits(0)
625f5260 52 ,fHasSDigits(0)
ca21baaa 53 ,fSignalIndexes(NULL)
001be664 54 ,fUseDictionaries(kTRUE)
486c2339 55 ,fDets(AliTRDgeometry::Ndet())
3d0c7d6d 56 ,fRawRec(rawRec)
966f6939 57 ,fDigitsParam(0)
6f1e466d 58{
59 //
60 // Default constructor
61 //
486c2339 62
966f6939 63 if (fRawRec)
486c2339 64 {
966f6939 65 fDets = 1;
66 fRawRec = kTRUE;
486c2339 67 }
6f1e466d 68
b65e5048 69 for (Int_t iDict = 0; iDict < kNDict; iDict++)
70 {
71 fDict[iDict] = NULL;
966f6939 72 }
73
6f1e466d 74}
75
8230f242 76//_____________________________________________________________________________
dd9a6ee3 77AliTRDdigitsManager::AliTRDdigitsManager(const AliTRDdigitsManager &m)
2745a409 78 :TObject(m)
79 ,fEvent(m.fEvent)
80 ,fTree(0)
b65e5048 81 ,fDigits(0)
625f5260 82 ,fHasSDigits(m.fHasSDigits)
ca21baaa 83 ,fSignalIndexes(NULL)
001be664 84 ,fUseDictionaries(kTRUE)
486c2339 85 ,fDets(m.fDets)
86 ,fRawRec(m.fRawRec)
966f6939 87 ,fDigitsParam(NULL)
8230f242 88{
89 //
90 // AliTRDdigitsManager copy constructor
91 //
92
024c0422 93 for (Int_t iDict = 0; iDict < kNDict; iDict++)
94 {
95 fDict[iDict] = NULL;
96 }
97
8230f242 98}
99
6f1e466d 100//_____________________________________________________________________________
101AliTRDdigitsManager::~AliTRDdigitsManager()
102{
8230f242 103 //
104 // AliTRDdigitsManager destructor
105 //
6f1e466d 106
b37bf997 107
b65e5048 108 if (fDigits)
109 {
110 fDigits->Delete();
111 delete fDigits;
112 fDigits = NULL;
113 }
6f1e466d 114
b65e5048 115 for (Int_t iDict = 0; iDict < kNDict; iDict++)
116 {
486c2339 117 if(fDict[iDict])
118 {
119 fDict[iDict]->Delete();
120 delete fDict[iDict];
121 fDict[iDict] = NULL;
122 }
b65e5048 123 }
6f1e466d 124
b65e5048 125 if (fSignalIndexes)
126 {
127 fSignalIndexes->Delete();
128 delete fSignalIndexes;
129 fSignalIndexes = NULL;
130 }
ca21baaa 131
966f6939 132 if (fDigitsParam)
133 {
134 delete fDigitsParam;
135 fDigitsParam = NULL;
136 }
137
6f1e466d 138}
139
2745a409 140//_____________________________________________________________________________
141AliTRDdigitsManager &AliTRDdigitsManager::operator=(const AliTRDdigitsManager &m)
142{
143 //
144 // Assignment operator
145 //
146
b65e5048 147 if (this != &m)
148 {
149 ((AliTRDdigitsManager &) m).Copy(*this);
150 }
625f5260 151
2745a409 152 return *this;
153
154}
155
8230f242 156//_____________________________________________________________________________
e0d47c25 157void AliTRDdigitsManager::Copy(TObject &m) const
8230f242 158{
159 //
160 // Copy function
161 //
162
625f5260 163 ((AliTRDdigitsManager &) m).fEvent = fEvent;
164 ((AliTRDdigitsManager &) m).fHasSDigits = fHasSDigits;
966f6939 165 ((AliTRDdigitsManager &) m).fDigits = NULL;
166 for(Int_t i = 0; i < kNDict; i++)
b65e5048 167 {
966f6939 168 ((AliTRDdigitsManager &) m).fDict[i] = NULL;
b65e5048 169 }
966f6939 170 ((AliTRDdigitsManager &) m).fSignalIndexes = NULL;
001be664 171 ((AliTRDdigitsManager &) m).fUseDictionaries = fUseDictionaries;
486c2339 172 ((AliTRDdigitsManager &) m).fDets = fDets;
966f6939 173 ((AliTRDdigitsManager &) m).fRawRec = fRawRec;
174 ((AliTRDdigitsManager &) m).fDigitsParam = NULL;
001be664 175
8230f242 176 TObject::Copy(m);
177
178}
179
abaf1f1d 180//_____________________________________________________________________________
181void AliTRDdigitsManager::CreateArrays()
182{
183 //
184 // Create the data arrays
185 //
186
b65e5048 187 if (fHasSDigits)
188 {
966f6939 189 if (fDigits)
b65e5048 190 {
191 fDigits->Delete();
192 delete fDigits;
193 }
486c2339 194 fDigits = new TObjArray(fDets);
195 for (Int_t index = 0; index < fDets; index++)
966f6939 196 {
197 fDigits->AddAt(new AliTRDarraySignal(),index);
198 }
b65e5048 199 }
200 else
201 {
966f6939 202 if (fDigits)
b65e5048 203 {
204 fDigits->Delete();
205 delete fDigits;
206 }
486c2339 207 fDigits = new TObjArray(fDets);
966f6939 208 for (Int_t index = 0; index < fDets; index++)
209 {
210 fDigits->AddAt(new AliTRDarrayADC(),index);
211 }
b65e5048 212 }
213
214 if (fUseDictionaries)
215 {
b65e5048 216 for (Int_t iDict = 0; iDict < kNDict; iDict++)
966f6939 217 {
218 if (fDict[iDict])
219 {
220 fDict[iDict]->Delete();
221 delete fDict[iDict];
222 }
223 fDict[iDict] = new TObjArray(fDets);
224 for (Int_t index = 0; index < fDets; index++)
225 {
226 fDict[iDict]->AddAt(new AliTRDarrayDictionary(),index);
227 }
228 }
001be664 229 }
486c2339 230
966f6939 231 if (fSignalIndexes)
b65e5048 232 {
486c2339 233 fSignalIndexes->Delete();
234 delete fSignalIndexes;
235 }
236 fSignalIndexes = new TObjArray(fDets);
966f6939 237 for (Int_t i = 0; i < fDets; i++)
238 {
239 fSignalIndexes->AddLast(new AliTRDSignalIndex());
240 }
241
242 if (fDigitsParam)
243 {
244 delete fDigitsParam;
245 }
246 fDigitsParam = new AliTRDdigitsParam();
abaf1f1d 247
17eee78a 248}
625f5260 249
16bf9884 250//_____________________________________________________________________________
534529cb 251void AliTRDdigitsManager::ClearArrays(Int_t det)
252{
253 //
254 // Reset the data arrays
255 //
256
257 Int_t recoDet = fRawRec ? 0 : det;
258
259 if (fHasSDigits)
260 {
261 ((AliTRDarraySignal*)fDigits->At(recoDet))->Reset();
262 }
263 else
264 {
265 ((AliTRDarrayADC*)fDigits->At(recoDet))->ConditionalReset((AliTRDSignalIndex*)fSignalIndexes->At(recoDet));
266 }
267
268 if (fUseDictionaries)
269 {
270 for (Int_t iDict = 0; iDict < kNDict; iDict++)
271 {
272 ((AliTRDarrayDictionary*)fDict[iDict]->At(recoDet))->Reset();
273 }
274 }
275
276 ((AliTRDSignalIndex*)fSignalIndexes->At(recoDet))->ResetContent();
277
278}
279
280//_____________________________________________________________________________
b65e5048 281Short_t AliTRDdigitsManager::GetDigitAmp(Int_t row, Int_t col,Int_t time, Int_t det) const
16bf9884 282{
283 //
284 // Returns the amplitude of a digit
285 //
286
486c2339 287 if (!GetDigits(det)) return 0;
b65e5048 288
da43c135 289 return ((Short_t) ((AliTRDarrayADC *) GetDigits(det))->GetDataBits(row,col,time));
16bf9884 290
291}
b65e5048 292
d739fd4e 293//_____________________________________________________________________________
b65e5048 294UChar_t AliTRDdigitsManager::GetPadStatus(Int_t row, Int_t col, Int_t time, Int_t det) const
d739fd4e 295{
c10bf383 296 //
297 // Returns the pad status for the requested pad
298 //
d739fd4e 299
486c2339 300 if (!GetDigits(det)) return 0;
d739fd4e 301
b65e5048 302 return ((UChar_t) ((AliTRDarrayADC *) GetDigits(det))->GetPadStatus(row,col,time));
303
d739fd4e 304}
305
6f1e466d 306//_____________________________________________________________________________
77ad13f4 307Bool_t AliTRDdigitsManager::MakeBranch(TTree * const tree)
855bfffd 308{
309 //
310 // Creates the tree and branches for the digits and the dictionary
311 //
312
b65e5048 313 Int_t buffersize = 64000;
314 Bool_t status = kTRUE;
855bfffd 315
b65e5048 316 if (tree)
317 {
318 fTree = tree;
319 }
855bfffd 320
abaf1f1d 321 // Make the branch for the digits
b65e5048 322 if (fDigits)
323 {
966f6939 324 if (fHasSDigits)
b65e5048 325 {
326 const AliTRDarraySignal *kDigits = (AliTRDarraySignal *) fDigits->At(0);
327 if (kDigits)
328 {
329 if (!fTree) return kFALSE;
330 AliDebug(1,"Making branch for SDigits!\n");
966f6939 331 TBranch *branch = fTree->GetBranch("TRDdigits");
332 if (!branch)
333 {
334 fTree->Branch("TRDdigits","AliTRDarraySignal",&kDigits,buffersize,99);
335 }
b65e5048 336 AliDebug(1,"Making branch TRDdigits\n");
337 }
338 else
339 {
340 status = kFALSE;
341 }
342 }
343
966f6939 344 if (!fHasSDigits)
b65e5048 345 {
346 const AliTRDarrayADC *kDigits = (AliTRDarrayADC *) fDigits->At(0);
347 if (kDigits)
348 {
349 if (!fTree) return kFALSE;
350 AliDebug(1,"Making branch for Digits!\n");
966f6939 351 TBranch *branch = fTree->GetBranch("TRDdigits");
352 if (!branch)
353 {
354 fTree->Branch("TRDdigits","AliTRDarrayADC",&kDigits,buffersize,99);
355 }
b65e5048 356 AliDebug(1,"Making branch TRDdigits\n");
357 }
358 else
359 {
360 status = kFALSE;
361 }
362 }
363
966f6939 364 }
b65e5048 365 else
366 {
966f6939 367
6f1e466d 368 status = kFALSE;
966f6939 369
6f1e466d 370 }
b65e5048 371
372 if (fUseDictionaries)
373 {
374 // Make the branches for the dictionaries
375 for (Int_t iDict = 0; iDict < kNDict; iDict++)
376 {
af63084f 377 const Int_t kBranchname = 15;
378 Char_t branchname[kBranchname];
379 snprintf(branchname,kBranchname,"TRDdictionary%d",iDict);
b65e5048 380 if (fDict[iDict])
381 {
382 const AliTRDarrayDictionary *kDictionary = (AliTRDarrayDictionary *) fDict[iDict]->At(0);
383 if (kDictionary)
384 {
385 if (!fTree) return kFALSE;
386 AliDebug(2,"Making branch for dictionary!\n");
966f6939 387 TBranch *branch = fTree->GetBranch(branchname);
388 if (!branch)
389 {
390 fTree->Branch(branchname,"AliTRDarrayDictionary",&kDictionary,buffersize,99);
391 }
b65e5048 392 AliDebug(1,Form("Making branch %s\n",branchname));
393 }
394 else
395 {
396 status = kFALSE;
397 }
398 }
399 else
400 {
401 status = kFALSE;
402 }
001be664 403 }
abaf1f1d 404 }
966f6939 405
406 if (fDigitsParam)
407 {
408 const AliTRDdigitsParam *kDigitsParam = fDigitsParam;
409 if (!fTree) return kFALSE;
410 TBranch *branch = fTree->GetBranch("TRDdigitsParam");
411 if (!branch)
412 {
413 fTree->Branch("TRDdigitsParam","AliTRDdigitsParam",&kDigitsParam,buffersize,99);
414 }
415 AliDebug(1,"Making branch AliTRDdigitsParam\n");
416 }
417
6f1e466d 418 return status;
419
420}
421
422//_____________________________________________________________________________
77ad13f4 423Bool_t AliTRDdigitsManager::ReadDigits(TTree * const tree)
6f1e466d 424{
8230f242 425 //
426 // Reads the digit information from the input file
427 //
6f1e466d 428
429 Bool_t status = kTRUE;
430
b65e5048 431 if (tree)
432 {
433 fTree = tree;
434 }
435
436 if (!fDigits)
437 {
438 AliDebug(1,"Create the data arrays.\n");
439 CreateArrays();
440 }
441
966f6939 442 status = LoadArrayDigits();
b65e5048 443
444 if (fUseDictionaries)
445 {
966f6939 446 status = LoadArrayDict();
447 if (status == kFALSE)
b65e5048 448 {
966f6939 449 fUseDictionaries = kFALSE;
450 AliWarning("Unable to load dict arrays. Will not use them.\n");
451 }
452 }
453
454 if (!LoadDigitsParam()) {
455 AliWarning("Could not read digits parameter.");
456 if (fDigitsParam) {
457 delete fDigitsParam;
b65e5048 458 }
966f6939 459 AliWarning(Form("Create default version of digits parameter (NTimeBin=%d).\n"
460 ,AliTRDSimParam::Instance()->GetNTimeBins()));
461 fDigitsParam = new AliTRDdigitsParam();
a0446ff1 462 fDigitsParam->SetNTimeBinsAll(AliTRDSimParam::Instance()->GetNTimeBins());
463 fDigitsParam->SetADCbaselineAll(AliTRDSimParam::Instance()->GetADCbaseline());
966f6939 464 }
6f1e466d 465
966f6939 466 return status;
6f1e466d 467
468}
469
470//_____________________________________________________________________________
471Bool_t AliTRDdigitsManager::WriteDigits()
472{
473 //
5896bc23 474 // Writes out the TRD-digits, the dictionaries and the digitsPaam
6f1e466d 475 //
476
966f6939 477 if (!StoreArrayDigits())
b65e5048 478 {
966f6939 479 AliError("Error while storing digits\n");
b65e5048 480 return kFALSE;
6f1e466d 481 }
6f1e466d 482
b65e5048 483 if (fUseDictionaries)
484 {
966f6939 485 if (!StoreArrayDict())
b65e5048 486 {
966f6939 487 AliError("Error while storing dictionaries in branch\n");
488 return kFALSE;
b65e5048 489 }
490 }
5896bc23 491
492 if (!StoreDigitsParam())
493 {
494 AliError("Error while storing digitsParam\n");
495 return kFALSE;
496 }
b65e5048 497
abaf1f1d 498 // Write the new tree to the output file
b65e5048 499 fTree->AutoSave();
abaf1f1d 500
6f1e466d 501 return kTRUE;
502
503}
9d0b222b 504
505//_____________________________________________________________________________
b65e5048 506AliTRDdigit *AliTRDdigitsManager::GetDigit(Int_t row
507 , Int_t col
508 , Int_t time
509 , Int_t det) const
9d0b222b 510{
511 //
512 // Creates a single digit object
513 //
514
b65e5048 515 Int_t digits[4];
9d0b222b 516 Int_t amp[1];
517
518 digits[0] = det;
519 digits[1] = row;
520 digits[2] = col;
521 digits[3] = time;
522
b65e5048 523 amp[0] = ((AliTRDarrayADC *) GetDigits(det))->GetData(row,col,time);
9d0b222b 524
625f5260 525 return (new AliTRDdigit(digits,amp));
9d0b222b 526
527}
528
529//_____________________________________________________________________________
530Int_t AliTRDdigitsManager::GetTrack(Int_t track
b65e5048 531 , Int_t row
532 , Int_t col
533 , Int_t time
793ff80c 534 , Int_t det) const
9d0b222b 535{
536 //
537 // Returns the MC-track numbers from the dictionary.
538 //
539
b65e5048 540 if ((track < 0) || (track >= kNDict))
541 {
20a6e9c2 542 AliError(Form("track %d out of bounds (size: %d, this: 0x%p)",track,kNDict,this));
b65e5048 543 return -1;
544 }
9d0b222b 545
b65e5048 546 if (fUseDictionaries == kFALSE)
547 {
548 return -1;
549 }
625f5260 550
b65e5048 551 // Array contains index+1 to allow data compression--->Changed
552 return (((AliTRDarrayDictionary *) GetDictionary(det,track))->GetData(row,col,time) );
9d0b222b 553
554}
555
b65e5048 556//________________________________________________________________________________
557AliTRDarrayADC *AliTRDdigitsManager::GetDigits(Int_t det) const
dd9a6ee3 558{
559 //
560 // Returns the digits array for one detector
561 //
562
4f5f1ae2 563 Int_t recoDet = fRawRec ? 0 : det;
486c2339 564
b65e5048 565 if (!fDigits)
566 {
567 return 0x0;
568 }
625f5260 569
b65e5048 570 if (!fHasSDigits)
571 {
4f5f1ae2 572 ((AliTRDarrayADC *) fDigits->At(recoDet))->SetNdet(det);
573 return (AliTRDarrayADC *) fDigits->At(recoDet);
b65e5048 574 }
575 else
576 {
577 AliDebug(2,"ERROR IN DATA TYPE!!!!");
578 return 0x0;
579 }
dd9a6ee3 580
581}
582
583//_____________________________________________________________________________
b65e5048 584AliTRDarraySignal *AliTRDdigitsManager::GetSDigits(Int_t det) const
dd9a6ee3 585{
586 //
b65e5048 587 // Returns the sdigits array for one detector
dd9a6ee3 588 //
589
4f5f1ae2 590 Int_t recoDet = fRawRec ? 0 : det;
486c2339 591
b65e5048 592 if (!fDigits)
593 {
594 // AliDebug(1,"NO FDIGITS!");
595 return 0x0;
596 }
597
598 if (fHasSDigits)
599 {
4f5f1ae2 600 ((AliTRDarraySignal *) fDigits->At(recoDet))->SetNdet(det);
601 return (AliTRDarraySignal *) fDigits->At(recoDet);
b65e5048 602 }
603 else
604 {
605 AliDebug(2,"ERROR IN DATA TYPE!!!!");
606 return 0x0;
607 }
608
609}
610
611//_____________________________________________________________________________
612AliTRDarrayDictionary *AliTRDdigitsManager::GetDictionary(Int_t det
613 , Int_t i) const
614{
615 //
616 // Returns the dictionary for one detector
617 //
625f5260 618
4f5f1ae2 619 Int_t recoDet = fRawRec ? 0 : det;
486c2339 620
b65e5048 621 if (fUseDictionaries == kFALSE)
622 {
623 return 0x0;
624 }
dd9a6ee3 625
4f5f1ae2 626 ((AliTRDarrayDictionary *) fDigits->At(recoDet))->SetNdet(det);
627 return (AliTRDarrayDictionary *) fDict[i]->At(recoDet);
b65e5048 628
dd9a6ee3 629}
630
631//_____________________________________________________________________________
04e58504 632Int_t AliTRDdigitsManager::GetTrack(Int_t track, const AliTRDdigit * const digit) const
dd9a6ee3 633{
634 //
635 // Returns the MC-track numbers from the dictionary for a given digit
636 //
637
b65e5048 638 Int_t row = digit->GetRow();
639 Int_t col = digit->GetCol();
640 Int_t time = digit->GetTime();
641 Int_t det = digit->GetDetector();
dd9a6ee3 642
643 return GetTrack(track,row,col,time,det);
644
645}
ca21baaa 646
647//_____________________________________________________________________________
648AliTRDSignalIndex *AliTRDdigitsManager::GetIndexes(Int_t det)
649{
650 //
651 // Returns indexes of active pads
652 //
653
4f5f1ae2 654 Int_t recoDet = fRawRec ? 0 : det;
486c2339 655
4f5f1ae2 656 return (AliTRDSignalIndex *) fSignalIndexes->At(recoDet);
ca21baaa 657
658}
659
660//_____________________________________________________________________________
661void AliTRDdigitsManager::RemoveDigits(Int_t det)
662{
b65e5048 663 //
664 // Clear memory at det for Digits
665 //
ca21baaa 666
4f5f1ae2 667 Int_t recoDet = fRawRec ? 0 : det;
486c2339 668
4f5f1ae2 669 if (fDigits->At(recoDet))
b65e5048 670 {
b37bf997 671 if (fHasSDigits)
672 {
4f5f1ae2 673 AliTRDarraySignal *arr = (AliTRDarraySignal *) fDigits->RemoveAt(recoDet);
b37bf997 674 delete arr;
675 }
676 else
677 {
4f5f1ae2 678 AliTRDarrayADC *arr = (AliTRDarrayADC *) fDigits->RemoveAt(recoDet);
b37bf997 679 delete arr;
680 }
b65e5048 681 }
ca21baaa 682
683}
684
685//_____________________________________________________________________________
686void AliTRDdigitsManager::RemoveDictionaries(Int_t det)
687{
688 //
689 // Clear memory
690 //
625f5260 691
4f5f1ae2 692 Int_t recoDet = fRawRec ? 0 : det;
486c2339 693
b65e5048 694 if (fUseDictionaries == kFALSE)
695 {
696 return;
697 }
ca21baaa 698
b65e5048 699 for (Int_t i = 0; i < kNDict; i++)
700 {
4f5f1ae2 701 if (fDict[i]->At(recoDet))
b65e5048 702 {
4f5f1ae2 703 AliTRDarrayDictionary *arr = (AliTRDarrayDictionary *) fDict[i]->RemoveAt(recoDet);
b37bf997 704 delete arr;
b65e5048 705 }
706 }
ca21baaa 707
708}
709
486c2339 710//_____________________________________________________________________________
711void AliTRDdigitsManager::RemoveIndexes(Int_t det)
712{
713 //
714 // Clear memory
715 //
716
4f5f1ae2 717 Int_t recoDet = fRawRec ? 0 : det;
486c2339 718
4f5f1ae2 719 if (fSignalIndexes->At(recoDet))
486c2339 720 {
4f5f1ae2 721 AliTRDSignalIndex *arr = (AliTRDSignalIndex *) fSignalIndexes->RemoveAt(recoDet);
486c2339 722 delete arr;
723 }
724
725}
726
ca21baaa 727//_____________________________________________________________________________
728void AliTRDdigitsManager::ClearIndexes(Int_t det)
729{
730 //
731 // Clear memory
732 //
486c2339 733
4f5f1ae2 734 Int_t recoDet = fRawRec ? 0 : det;
625f5260 735
4f5f1ae2 736 ((AliTRDSignalIndex *) fSignalIndexes->At(recoDet))->ClearAll();
ca21baaa 737
625f5260 738}
ca21baaa 739
740//_____________________________________________________________________________
741Bool_t AliTRDdigitsManager::BuildIndexes(Int_t det)
742{
743 //
744 // Build the list of indices
745 //
746
b65e5048 747 Int_t nRows = 0;
748 Int_t nCols = 0;
ca21baaa 749 Int_t nTbins = 0;
750
b65e5048 751 AliTRDgeometry geom;
752 AliTRDarrayADC *digits = 0x0;
625f5260 753
b65e5048 754 if (fHasSDigits)
755 {
756 return kFALSE;
757 }
758 else
759 {
760 digits = (AliTRDarrayADC *) GetDigits(det);
761 }
625f5260 762
966f6939 763 // digits should be expanded by now!!!
b65e5048 764 if (digits->GetNtime() > 0)
765 {
766 digits->Expand();
767 nRows = digits->GetNrow();
768 nCols = digits->GetNcol();
769 nTbins = digits->GetNtime();
770
771 AliTRDSignalIndex *indexes = GetIndexes(det);
772 indexes->SetSM(geom.GetSector(det));
773 indexes->SetStack(geom.GetStack(det));
774 indexes->SetLayer(geom.GetLayer(det));
775 indexes->SetDetNumber(det);
776
777 if (indexes->IsAllocated() == kFALSE)
778 {
779 indexes->Allocate(nRows,nCols,nTbins);
780 }
625f5260 781
b65e5048 782 for (Int_t ir = 0; ir < nRows; ir++)
783 {
784 for (Int_t ic = 0; ic < nCols; ic++)
785 {
786 for (Int_t it = 0; it < nTbins; it++)
787 {
da43c135 788 Int_t isig = digits->GetDataBits(ir,ic,it);
b65e5048 789 if (isig > 0)
790 {
ae63fafc 791 indexes->AddIndexRC(ir,ic);
b65e5048 792 }
793 } // tbins
794 } // cols
795 } // rows
796
797 } // if GetNtime
798 else
799 {
800 return kFALSE;
801 }
802
803 return kTRUE;
625f5260 804
b65e5048 805}
625f5260 806
b65e5048 807//_____________________________________________________________________________
966f6939 808Bool_t AliTRDdigitsManager::LoadArrayDigits()
b65e5048 809{
810 //
966f6939 811 // Loads the (s-)digits arrays for all detectors
b65e5048 812 //
813
966f6939 814 if (!fTree)
b65e5048 815 {
816 AliError("Digits tree is not defined\n");
817 return kFALSE;
ca21baaa 818 }
625f5260 819
966f6939 820 Bool_t status = kTRUE;
821
b65e5048 822 // Get the branch
966f6939 823 TBranch *branch = fTree->GetBranch("TRDdigits");
824 if (!branch)
b65e5048 825 {
966f6939 826 AliError("Branch TRDdigits is not defined\n");
b65e5048 827 return kFALSE;
828 }
625f5260 829
b65e5048 830 // Loop through all detectors and read them from the tree
486c2339 831 for (Int_t iDet = 0; iDet < fDets; iDet++)
b65e5048 832 {
966f6939 833 if (fHasSDigits)
b65e5048 834 {
966f6939 835 AliTRDarraySignal *dataArray = (AliTRDarraySignal *) fDigits->At(iDet);
b65e5048 836 if (!dataArray)
837 {
838 status = kFALSE;
839 break;
840 }
966f6939 841 branch->SetAddress(&dataArray);
842 branch->GetEntry(iDet);
b65e5048 843 }
844 else
845 {
966f6939 846 AliTRDarrayADC *dataArray = (AliTRDarrayADC *) fDigits->At(iDet);
b65e5048 847 if (!dataArray)
848 {
849 status = kFALSE;
966f6939 850 break;
b65e5048 851 }
966f6939 852 branch->SetAddress(&dataArray);
853 branch->GetEntry(iDet);
b65e5048 854 }
855 }
625f5260 856
b65e5048 857 return status;
858
859}
860
861//________________________________________________________________________________________________
966f6939 862Bool_t AliTRDdigitsManager::LoadArrayDict()
b65e5048 863{
864 //
966f6939 865 // Loads dictionary arrays for all detectors
b65e5048 866 //
867
966f6939 868 if (!fTree)
869 {
870 AliError("Digits tree is not defined\n");
871 return kFALSE;
872 }
873
874 Bool_t status = kTRUE;
875
876 for (Int_t iDict = 0; iDict < kNDict; iDict++)
877 {
878
879 // Get the branch
880 Char_t branchname[15];
a987273c 881 snprintf(branchname,15,"TRDdictionary%d",iDict);
966f6939 882 TBranch *branch = fTree->GetBranch(branchname);
883 if (!branch)
884 {
885 AliError(Form("Branch %s is not defined\n",branchname));
886 return kFALSE;
887 }
888
889 // Loop through all detectors and read them from the tree
890 for (Int_t iDet = 0; iDet < fDets; iDet++)
891 {
892 AliTRDarrayDictionary *dataArray = (AliTRDarrayDictionary *) fDict[iDict]->At(iDet);
893 if (!dataArray)
894 {
895 status = kFALSE;
896 break;
897 }
898 branch->SetAddress(&dataArray);
899 branch->GetEntry(iDet);
900 }
901
902 }
903
904 return status;
905
906}
907
908//_____________________________________________________________________________
909Bool_t AliTRDdigitsManager::LoadDigitsParam()
910{
911 //
912 // Loads the digits parameter object from the digits tree
913 //
b65e5048 914
966f6939 915 if (!fTree)
b65e5048 916 {
917 AliError("Digits tree is not defined\n");
918 return kFALSE;
919 }
920
921 // Get the branch
966f6939 922 TBranch *branch = fTree->GetBranch("TRDdigitsParam");
923 if (!branch)
b65e5048 924 {
966f6939 925 AliError("Branch TRDdigitsParam is not defined\n");
b65e5048 926 return kFALSE;
927 }
928
966f6939 929 // Read the parameter object
930 AliTRDdigitsParam *digitsParam = fDigitsParam;
931 if (!digitsParam)
b65e5048 932 {
966f6939 933 return kFALSE;
b65e5048 934 }
935
966f6939 936 branch->SetAddress(&digitsParam);
937 branch->GetEntry();
938
939 return kTRUE;
b65e5048 940
941}
942
943//_____________________________________________________________________________
966f6939 944Bool_t AliTRDdigitsManager::StoreArrayDigits()
b65e5048 945{
946 //
966f6939 947 // Stores the digit arrays for all detectors
b65e5048 948 //
949
b65e5048 950 if (!fTree)
951 {
952 AliError("Digits tree is not defined\n");
953 return kFALSE;
954 }
955
956 // Get the branch
966f6939 957 TBranch *branch = fTree->GetBranch("TRDdigits");
958 if (!branch)
b65e5048 959 {
966f6939 960 AliError("Branch TRDdigits is not defined\n");
b65e5048 961 return kFALSE;
962 }
963
964 // Loop through all detectors and fill them into the tree
965 Bool_t status = kTRUE;
486c2339 966 for (Int_t iDet = 0; iDet < fDets; iDet++)
b65e5048 967 {
968 if (fHasSDigits)
969 {
966f6939 970 const AliTRDarraySignal *kDataArray = (AliTRDarraySignal *) fDigits->At(iDet);
b65e5048 971 if (!kDataArray)
972 {
973 status = kFALSE;
974 break;
975 }
966f6939 976 branch->SetAddress(&kDataArray);
977 branch->Fill();
b65e5048 978 }
979 else
980 {
966f6939 981 const AliTRDarrayADC *kDataArray = (AliTRDarrayADC *) fDigits->At(iDet);
b65e5048 982 if (!kDataArray)
983 {
984 status = kFALSE;
985 break;
986 }
966f6939 987 branch->SetAddress(&kDataArray);
988 branch->Fill();
b65e5048 989 }
990 }
991
992 return status;
993
994}
995
996//_____________________________________________________________________________
966f6939 997Bool_t AliTRDdigitsManager::StoreArrayDict()
b65e5048 998{
999 //
966f6939 1000 // Stores the dictionary arrays for all detectors
b65e5048 1001 //
1002
966f6939 1003 if (!fTree)
1004 {
1005 AliError("Digits tree is not defined\n");
1006 return kFALSE;
1007 }
1008
1009 Bool_t status = kTRUE;
1010
1011 for (Int_t iDict = 0; iDict < kNDict; iDict++)
1012 {
1013
1014 // Get the branch
1015 Char_t branchname[15];
a987273c 1016 snprintf(branchname,15,"TRDdictionary%d",iDict);
966f6939 1017 TBranch *branch = fTree->GetBranch(branchname);
1018 if (!branch)
1019 {
1020 AliError(Form("Branch %s is not defined\n",branchname));
1021 return kFALSE;
1022 }
1023
1024 // Loop through all detectors and fill them into the tree
1025 for (Int_t iDet = 0; iDet < fDets; iDet++)
1026 {
1027 const AliTRDarrayDictionary *kDataArray = (AliTRDarrayDictionary *) fDict[iDict]->At(iDet);
1028 if (!kDataArray)
1029 {
1030 status = kFALSE;
1031 break;
1032 }
1033 branch->SetAddress(&kDataArray);
1034 branch->Fill();
1035 }
1036
1037 }
1038
1039 return status;
1040
1041}
1042
1043//_____________________________________________________________________________
1044Bool_t AliTRDdigitsManager::StoreDigitsParam()
1045{
1046 //
1047 // Stores the digits parameter object from the digits tree
1048 //
b65e5048 1049
1050 if (!fTree)
1051 {
1052 AliError("Digits tree is not defined\n");
1053 return kFALSE;
1054 }
1055
1056 // Get the branch
966f6939 1057 TBranch *branch = fTree->GetBranch("TRDdigitsParam");
1058 if (!branch)
b65e5048 1059 {
966f6939 1060 AliError("Branch TRDdigitsParam is not defined\n");
b65e5048 1061 return kFALSE;
1062 }
1063
966f6939 1064 // Fill the digits object in the tree
1065 const AliTRDdigitsParam *kDigitsParam = fDigitsParam;
1066 if (!kDigitsParam)
b65e5048 1067 {
966f6939 1068 return kFALSE;
b65e5048 1069 }
966f6939 1070 branch->SetAddress(&kDigitsParam);
1071 branch->Fill();
b65e5048 1072
966f6939 1073 return kTRUE;
ca21baaa 1074
1075}
966f6939 1076