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