]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/TPCLib/AliHLTTPCDigitReaderPacked.h
first steps to set the covariance matrix from the errors calculated in conformal...
[u/mrichter/AliRoot.git] / HLT / TPCLib / AliHLTTPCDigitReaderPacked.h
1 // XEmacs -*-C++-*-
2 // @(#) $Id$
3
4 #ifndef ALIHLTTPCDIGITREADERPACKED_H
5 #define ALIHLTTPCDIGITREADERPACKED_H
6
7 //* This file is property of and copyright by the ALICE HLT Project        * 
8 //* ALICE Experiment at CERN, All rights reserved.                         *
9 //* See cxx source for full Copyright notice                               *
10
11 /** @file   AliHLTTPCDigitReaderPacked.h
12     @author Timm Steinbeck, Jochen Thaeder, Matthias Richter, Kenneth Aamodt
13     @date   
14     @brief  A digit reader implementation for simulated, packed TPC 'raw' data.
15 */
16
17 //#define ENABLE_PAD_SORTING 1
18
19 #include "AliHLTTPCDigitReader.h"
20 #include <vector>
21
22 class AliRawReaderMemory;
23 class AliTPCRawStream;
24
25 /**
26  * @class AliHLTTPCDigitReaderPacked
27  * A digit reader implementation for simulated, packed TPC 'raw' data.
28  * Includes reordering of the pads by default, sorting (and time and
29  * memory consuming intermediate storing of the data) can be disabled
30  * by @ref SetUnsorted() with argument <b>kTRUE</b>.
31  *
32  * @ingroup alihlt_tpc
33  */
34 class AliHLTTPCDigitReaderPacked : public AliHLTTPCDigitReader{
35 public:
36   /** standard constructor */
37   AliHLTTPCDigitReaderPacked(); 
38   /** destructor */
39   virtual ~AliHLTTPCDigitReaderPacked();
40   
41   /**
42    * Init the reader with a data block.
43    * The function fetches the first and last row for the readout partition
44    * from @ref AliHLTTPCTransform.
45    * @param ptr     pointer to data buffer
46    * @param size    size of the data buffer
47    * @param patch   patch (readout partition) number within the slice
48    * @param slice   sector no (0 to 35)
49    */
50   Int_t InitBlock(void* ptr,ULong_t size, Int_t patch, Int_t slice);
51   void SetUnsorted(bool unsorted){fUnsorted=unsorted;}
52   Bool_t NextSignal();
53   Int_t GetRow();
54   Int_t GetPad();
55   Int_t GetSignal();
56   Int_t GetTime();
57   bool NextChannel();
58   int NextBunch();
59   AliHLTUInt32_t GetAltroBlockHWaddr() const;
60   int GetBunchSize();
61   const UInt_t* GetSignals();
62   Int_t GetTimeOfUnsortedSignal();    
63     
64 protected:
65     
66 private:
67   /** copy constructor prohibited */
68   AliHLTTPCDigitReaderPacked(const AliHLTTPCDigitReaderPacked&);
69   /** assignment operator prohibited */
70   AliHLTTPCDigitReaderPacked& operator=(const AliHLTTPCDigitReaderPacked&);
71
72   // Initialize AliROOT TPC raw stream parsing class
73   AliRawReaderMemory *fRawMemoryReader; //!transient
74
75   AliTPCRawStream *fTPCRawStream; //!transient
76     
77   //#if ENABLE_PAD_SORTING 
78   Int_t fCurrentRow; //!transient
79   Int_t fCurrentPad; //!transient
80   Int_t fCurrentBin; //!transient
81  
82   Int_t fRowOffset; //!transient
83   Int_t fNRows; //!transient
84
85   Int_t fNMaxRows; //!transient
86   Int_t fNMaxPads; //!transient
87   Int_t fNTimeBins; //!transient
88
89   Int_t *fData; //!transient
90   //#endif // ENABLE_PAD_SORTING
91
92   Bool_t fUnsorted; //!transient
93
94   vector<UInt_t> fDataBunch;
95   Bool_t fNextChannelFlag;
96   Int_t fCurrentPatch;
97   ClassDef(AliHLTTPCDigitReaderPacked, 3)
98         
99 };
100
101 #endif