8230f242 |
1 | #ifndef ALITRDDIGITSMANAGER_H |
2 | #define ALITRDDIGITSMANAGER_H |
6f1e466d |
3 | |
4 | /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. * |
5 | * See cxx source for full Copyright notice */ |
6 | |
ca21baaa |
7 | /* $Id$ */ |
6f1e466d |
8 | |
9 | ///////////////////////////////////////////////////////////// |
10 | // Manages the TRD digits // |
11 | ///////////////////////////////////////////////////////////// |
12 | |
793ff80c |
13 | #include <TObject.h> |
6f1e466d |
14 | |
2ab0c725 |
15 | class TFile; |
abaf1f1d |
16 | class TTree; |
b65e5048 |
17 | class TBranch; |
793ff80c |
18 | class AliTRDdigit; |
ca21baaa |
19 | class AliTRDSignalIndex; |
b65e5048 |
20 | class AliTRDarrayADC; |
21 | class AliTRDarraySignal; |
22 | class AliTRDarrayDictionary; |
966f6939 |
23 | class AliTRDdigitsParam; |
6f1e466d |
24 | |
25 | class AliTRDdigitsManager : public TObject { |
26 | |
27 | public: |
28 | |
dd56b762 |
29 | enum { kNDict = 3 }; |
30 | |
3d0c7d6d |
31 | AliTRDdigitsManager(Bool_t rawRec = kFALSE); //if true digitsmanager uses only one entry in the TObjectArrays |
dd9a6ee3 |
32 | AliTRDdigitsManager(const AliTRDdigitsManager &m); |
8230f242 |
33 | virtual ~AliTRDdigitsManager(); |
dd9a6ee3 |
34 | AliTRDdigitsManager &operator=(const AliTRDdigitsManager &m); |
6f1e466d |
35 | |
625f5260 |
36 | virtual void Copy(TObject &m) const; |
37 | |
abaf1f1d |
38 | virtual void CreateArrays(); |
534529cb |
39 | void ClearArrays(Int_t det); |
625f5260 |
40 | virtual Bool_t BuildIndexes(Int_t det); |
88cb7938 |
41 | |
77ad13f4 |
42 | virtual Bool_t MakeBranch(TTree * const tree); |
43 | virtual Bool_t ReadDigits(TTree * consttree); |
6f1e466d |
44 | virtual Bool_t WriteDigits(); |
45 | |
625f5260 |
46 | virtual void SetEvent(Int_t evt) { fEvent = evt; }; |
47 | virtual void SetSDigits(Int_t v = 1) { fHasSDigits = v; }; |
48 | virtual void SetUseDictionaries(Bool_t kval) { fUseDictionaries = kval; }; |
6f1e466d |
49 | |
625f5260 |
50 | virtual Bool_t UsesDictionaries() const { return fUseDictionaries; }; |
51 | virtual Bool_t HasSDigits() const { return fHasSDigits; }; |
52 | static Int_t NDict() { return fgkNDict; }; |
793ff80c |
53 | |
b65e5048 |
54 | virtual TObjArray *GetDigits() const { return fDigits; }; |
55 | virtual TObjArray *GetDictionary(Int_t i) const { return fDict[i]; }; |
56 | |
57 | AliTRDdigit *GetDigit(Int_t row, Int_t col, Int_t time, Int_t det) const; |
58 | Int_t GetTrack(Int_t track, Int_t row, Int_t col, Int_t time, Int_t det) const; |
59 | |
60 | AliTRDarrayADC *GetDigits(Int_t det) const; |
61 | AliTRDarraySignal *GetSDigits(Int_t det) const; |
62 | AliTRDarrayDictionary *GetDictionary(Int_t det, Int_t i) const; |
966f6939 |
63 | AliTRDdigitsParam *GetDigitsParam() const { return fDigitsParam; }; |
b65e5048 |
64 | AliTRDSignalIndex *GetIndexes(Int_t det); |
77ad13f4 |
65 | TObjArray *GetIndexes() const { return fSignalIndexes; }; |
b65e5048 |
66 | |
67 | void RemoveDigits(Int_t det); |
68 | void RemoveDictionaries(Int_t det); |
486c2339 |
69 | void RemoveIndexes(Int_t det); |
b65e5048 |
70 | void ClearIndexes(Int_t det); |
71 | |
04e58504 |
72 | Int_t GetTrack(Int_t track, const AliTRDdigit * const digit) const; |
b65e5048 |
73 | Short_t GetDigitAmp(Int_t row, Int_t col, Int_t time, Int_t det) const; |
74 | UChar_t GetPadStatus(Int_t row, Int_t col, Int_t time, Int_t det) const; |
75 | |
966f6939 |
76 | Bool_t LoadArrayDigits(); |
77 | Bool_t LoadArrayDict(); |
78 | Bool_t LoadDigitsParam(); |
79 | Bool_t StoreArrayDigits(); |
80 | Bool_t StoreArrayDict(); |
81 | Bool_t StoreDigitsParam(); |
82 | |
6f1e466d |
83 | protected: |
b65e5048 |
84 | |
793ff80c |
85 | static const Int_t fgkNDict; // Number of track dictionary arrays |
abaf1f1d |
86 | Int_t fEvent; // Event number |
abaf1f1d |
87 | TTree *fTree; //! Tree for the digits arrays |
b65e5048 |
88 | TObjArray *fDigits; // Digits data array |
89 | TObjArray *fDict[kNDict]; // Track dictionary data array |
625f5260 |
90 | Bool_t fHasSDigits; // Switch for the summable digits |
ca21baaa |
91 | TObjArray *fSignalIndexes; // Provides access to the active pads and tbins |
001be664 |
92 | Bool_t fUseDictionaries; // Use dictionaries or not (case of real data) |
486c2339 |
93 | Int_t fDets; // No of Detectors |
3d0c7d6d |
94 | Bool_t fRawRec; // Reconstruct from raw files? If its kTRUE then the TObjArrays have only one entry. |
966f6939 |
95 | AliTRDdigitsParam *fDigitsParam; // Parameters of the digits |
625f5260 |
96 | |
966f6939 |
97 | ClassDef(AliTRDdigitsManager,8) // Manages the TRD digits |
6f1e466d |
98 | |
99 | }; |
6f1e466d |
100 | #endif |