]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TRD/AliTRDdigitsManager.cxx
TOF raw data format: updated version
[u/mrichter/AliRoot.git] / TRD / AliTRDdigitsManager.cxx
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
16 /* $Id$ */
17
18 ///////////////////////////////////////////////////////////////////////////////
19 //                                                                           //
20 //  Manages the digits and the track dictionary in the form of               //
21 //  AliTRDdataArray objects.                                                 //
22 //                                                                           //
23 ///////////////////////////////////////////////////////////////////////////////
24
25 #include <Riostream.h>
26  
27 #include <TROOT.h>
28 #include <TTree.h>                                                              
29 #include <TFile.h>
30
31 #include "AliRun.h"
32
33 #include "AliTRDdigitsManager.h"
34 #include "AliTRDsegmentArray.h"
35 #include "AliTRDdataArrayI.h"
36 #include "AliTRDdigit.h"
37 #include "AliTRDgeometry.h"
38
39 ClassImp(AliTRDdigitsManager)
40
41 //_____________________________________________________________________________
42
43   // Number of track dictionary arrays
44   const Int_t AliTRDdigitsManager::fgkNDict = kNDict;
45
46 //_____________________________________________________________________________
47 AliTRDdigitsManager::AliTRDdigitsManager():TObject()
48 {
49   //
50   // Default constructor
51   //
52
53   fIsRaw   = kFALSE;
54   fEvent   = 0;
55   fDebug   = 0;
56   fSDigits = 0;
57
58   fTree    = NULL;
59   fDigits  = NULL;
60   for (Int_t iDict = 0; iDict < kNDict; iDict++) {
61     fDictionary[iDict] = NULL;
62   }
63
64 }
65
66 //_____________________________________________________________________________
67 AliTRDdigitsManager::AliTRDdigitsManager(const AliTRDdigitsManager &m)
68 :TObject(m)
69 {
70   //
71   // AliTRDdigitsManager copy constructor
72   //
73
74   ((AliTRDdigitsManager &) m).Copy(*this);
75
76 }
77
78 //_____________________________________________________________________________
79 AliTRDdigitsManager::~AliTRDdigitsManager()
80 {
81   //
82   // AliTRDdigitsManager destructor
83   //
84
85   if (fDigits) {
86     fDigits->Delete();
87     delete fDigits;
88     fDigits = NULL;
89   }
90
91   for (Int_t iDict = 0; iDict < kNDict; iDict++) {
92     fDictionary[iDict]->Delete();
93     delete fDictionary[iDict];
94     fDictionary[iDict] = NULL;
95   }
96
97 }
98
99 //_____________________________________________________________________________
100 void AliTRDdigitsManager::Copy(TObject &m) const
101 {
102   //
103   // Copy function
104   //
105
106   ((AliTRDdigitsManager &) m).fIsRaw   = fIsRaw;
107   ((AliTRDdigitsManager &) m).fEvent   = fEvent;
108   ((AliTRDdigitsManager &) m).fDebug   = fDebug;
109   ((AliTRDdigitsManager &) m).fSDigits = fSDigits;
110
111   TObject::Copy(m);
112
113 }
114
115 //_____________________________________________________________________________
116 void AliTRDdigitsManager::CreateArrays()
117 {
118   //
119   // Create the data arrays
120   //
121
122   fDigits = new AliTRDsegmentArray("AliTRDdataArrayI",AliTRDgeometry::Ndet());
123
124   for (Int_t iDict = 0; iDict < kNDict; iDict++) {
125     fDictionary[iDict] = new AliTRDsegmentArray("AliTRDdataArrayI"
126                                                ,AliTRDgeometry::Ndet());
127   }
128
129 }
130 //_____________________________________________________________________________
131 void AliTRDdigitsManager::ResetArrays()
132 {
133   //
134   // Reset the data arrays
135   //
136
137   if (fDigits) {
138     delete fDigits;
139   }
140   fDigits = new AliTRDsegmentArray("AliTRDdataArrayI",AliTRDgeometry::Ndet());
141
142   for (Int_t iDict = 0; iDict < kNDict; iDict++) {
143     if (fDictionary[iDict]) {  
144       delete fDictionary[iDict];
145     }
146     fDictionary[iDict] = new AliTRDsegmentArray("AliTRDdataArrayI"
147                                                ,AliTRDgeometry::Ndet());
148   }
149
150 }
151
152 //_____________________________________________________________________________
153 void AliTRDdigitsManager::SetRaw()
154 {
155   //
156   // Switch on the raw digits flag
157   //
158
159   fIsRaw = kTRUE;
160   if (fDigits)
161     fDigits->SetBit(AliTRDdigit::RawDigit());
162   
163 }
164
165 //_____________________________________________________________________________
166 Short_t AliTRDdigitsManager::GetDigitAmp(Int_t row, Int_t col,Int_t time
167                                        , Int_t det) const
168 {
169   //
170   // Returns the amplitude of a digit
171   //
172
173   if (!GetDigits(det)) return 0;
174   return ((Short_t) GetDigits(det)->GetData(row,col,time));
175
176 }
177  
178 //_____________________________________________________________________________
179 Bool_t AliTRDdigitsManager::MakeBranch(TTree *tree)
180 {
181   //
182   // Creates the tree and branches for the digits and the dictionary
183   //
184
185   Int_t buffersize = 64000;
186
187   Bool_t status = kTRUE;
188
189   if (tree) {
190     fTree = tree;
191   }
192
193   // Make the branch for the digits
194   if (fDigits) {
195     const AliTRDdataArray *kDigits = (AliTRDdataArray *) fDigits->At(0);
196     if (kDigits) {
197       if (!fTree) return kFALSE;
198       TBranch* branch = fTree->GetBranch("TRDdigits");
199       if (!branch) fTree->Branch("TRDdigits",kDigits->IsA()->GetName(),
200                                  &kDigits,buffersize,99);
201       if (fDebug > 0) {
202         printf("<AliTRDdigitsManager::MakeBranch> ");
203         printf("Making branch TRDdigits\n");
204       }
205     }
206     else {
207       status = kFALSE;
208     }
209   }
210   else {
211     status = kFALSE;
212   }
213
214   // Make the branches for the dictionaries
215   for (Int_t iDict = 0; iDict < kNDict; iDict++) {
216     Char_t branchname[15];
217     sprintf(branchname,"TRDdictionary%d",iDict);
218     if (fDictionary[iDict]) {
219       const AliTRDdataArray *kDictionary = 
220               (AliTRDdataArray *) fDictionary[iDict]->At(0);
221       if (kDictionary) {
222         if (!fTree) return kFALSE;
223         TBranch* branch = fTree->GetBranch(branchname);
224         if (!branch) fTree->Branch(branchname,kDictionary->IsA()->GetName(),
225                                    &kDictionary,buffersize,99);
226         if (fDebug > 0) {
227           printf("<AliTRDdigitsManager::MakeBranch> ");
228           printf("Making branch %s\n",branchname);
229         }
230       }
231       else {
232         status = kFALSE;
233       }
234     }
235     else {
236       status = kFALSE;
237     }
238   }
239
240   return status;
241
242 }
243
244 //_____________________________________________________________________________
245 Bool_t AliTRDdigitsManager::ReadDigits(TTree *tree)
246 {
247   //
248   // Reads the digit information from the input file
249   //
250
251   Bool_t status = kTRUE;
252
253   if (tree) {
254
255     fTree = tree;
256
257   }
258
259   if (!fDigits) {
260     if (fDebug > 0) {
261       printf("<AliTRDdigitsManager::ReadDigits> ");
262       printf("Create the data arrays.\n");
263     }
264     CreateArrays();
265   }
266
267   status = fDigits->LoadArray("TRDdigits",fTree);
268
269   for (Int_t iDict = 0; iDict < kNDict; iDict++) {
270     Char_t branchname[15];
271     sprintf(branchname,"TRDdictionary%d",iDict);
272     status = fDictionary[iDict]->LoadArray(branchname,fTree);
273   }  
274
275   if (fDigits->TestBit(AliTRDdigit::RawDigit())) {
276     fIsRaw = kTRUE;
277   }
278   else {
279     fIsRaw = kFALSE;
280   }
281
282   return kTRUE;
283
284 }
285
286 //_____________________________________________________________________________
287 Bool_t AliTRDdigitsManager::WriteDigits()
288 {
289   //
290   // Writes out the TRD-digits and the dictionaries
291   //
292
293   // Store the contents of the segment array in the tree
294   if (!fDigits->StoreArray("TRDdigits",fTree)) {
295     printf("<AliTRDdigitsManager::WriteDigits> ");
296     printf("Error while storing digits in branch TRDdigits\n");
297     return kFALSE;
298   }
299   for (Int_t iDict = 0; iDict < kNDict; iDict++) {
300     Char_t branchname[15];
301     sprintf(branchname,"TRDdictionary%d",iDict);
302     if (!fDictionary[iDict]->StoreArray(branchname,fTree)) {
303       printf("<AliTRDdigitsManager::WriteDigits> ");
304       printf("Error while storing dictionary in branch %s\n",branchname);
305       return kFALSE;
306     }
307   }
308
309   // Write the new tree to the output file
310   //fTree->Write();
311   fTree->AutoSave();  // Modification by Jiri
312
313   return kTRUE;
314
315 }
316
317 //_____________________________________________________________________________
318 AliTRDdigit *AliTRDdigitsManager::GetDigit(Int_t row, Int_t col
319                                          , Int_t time, Int_t det) const
320 {
321   // 
322   // Creates a single digit object 
323   //
324
325   Int_t digits[4];
326   Int_t amp[1];
327
328   digits[0] = det;
329   digits[1] = row;
330   digits[2] = col;
331   digits[3] = time;
332
333   amp[0]    = GetDigits(det)->GetData(row,col,time);
334   
335   return (new AliTRDdigit(fIsRaw,digits,amp));
336
337 }
338
339 //_____________________________________________________________________________
340 Int_t AliTRDdigitsManager::GetTrack(Int_t track
341                                   , Int_t row, Int_t col, Int_t time
342                                   , Int_t det) const
343 {
344   // 
345   // Returns the MC-track numbers from the dictionary.
346   //
347
348   if ((track < 0) || (track >= kNDict)) {
349     TObject::Error("GetTracks"
350                   ,"track %d out of bounds (size: %d, this: 0x%08x)"
351                   ,track,kNDict,this);
352     return -1;
353   }
354
355   // Array contains index+1 to allow data compression
356   return (GetDictionary(det,track)->GetData(row,col,time) - 1);
357
358 }
359
360 //_____________________________________________________________________________
361 AliTRDdataArrayI *AliTRDdigitsManager::GetDigits(Int_t det) const
362 {
363   //
364   // Returns the digits array for one detector
365   //
366
367   if (!fDigits) return 0x0;
368   return (AliTRDdataArrayI *) fDigits->At(det);
369
370 }
371
372 //_____________________________________________________________________________
373 AliTRDdataArrayI *AliTRDdigitsManager::GetDictionary(Int_t det, Int_t i) const
374 {
375   //
376   // Returns the dictionary for one detector
377   //
378
379   return (AliTRDdataArrayI *) fDictionary[i]->At(det);
380
381 }
382
383 //_____________________________________________________________________________
384 Int_t AliTRDdigitsManager::GetTrack(Int_t track, AliTRDdigit *Digit) const
385 {
386   // 
387   // Returns the MC-track numbers from the dictionary for a given digit
388   //
389
390   Int_t row  = Digit->GetRow();
391   Int_t col  = Digit->GetCol();
392   Int_t time = Digit->GetTime();
393   Int_t det  = Digit->GetDetector();
394
395   return GetTrack(track,row,col,time,det);
396
397 }
398
399 //_____________________________________________________________________________
400 AliTRDdigitsManager &AliTRDdigitsManager::operator=(const AliTRDdigitsManager &m)
401 {
402   //
403   // Assignment operator
404   //
405
406   if (this != &m) ((AliTRDdigitsManager &) m).Copy(*this);
407   return *this;
408
409 }