]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/TPCLib/AliHLTTPCDigitReaderPacked.h
added new helper components to libAliHLTUtil (EsdCollector and AliHLTOUTPublisher...
[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
21 class AliRawReaderMemory;
22 class AliTPCRawStream;
23
24 /**
25  * @class AliHLTTPCDigitReaderPacked
26  * A digit reader implementation for simulated, packed TPC 'raw' data.
27  * Includes reordering of the pads by default, sorting (and time and
28  * memory consuming intermediate storing of the data) can be disabled
29  * by @ref SetUnsorted() with argument <b>kTRUE</b>.
30  *
31  * @ingroup alihlt_tpc
32  */
33 class AliHLTTPCDigitReaderPacked : public AliHLTTPCDigitReader{
34 public:
35   /** standard constructor */
36   AliHLTTPCDigitReaderPacked(); 
37   /** destructor */
38   virtual ~AliHLTTPCDigitReaderPacked();
39   
40   /**
41    * Init the reader with a data block.
42    * The function fetches the first and last row for the readout partition
43    * from @ref AliHLTTPCTransform.
44    * @param ptr     pointer to data buffer
45    * @param size    size of the data buffer
46    * @param patch   patch (readout partition) number within the slice
47    * @param slice   sector no (0 to 35)
48    */
49   Int_t InitBlock(void* ptr,ULong_t size, Int_t patch, Int_t slice);
50   void SetUnsorted(bool unsorted){fUnsorted=unsorted;}
51   Bool_t NextSignal();
52   Int_t GetRow();
53   Int_t GetPad();
54   Int_t GetSignal();
55   Int_t GetTime();
56   AliHLTUInt32_t GetAltroBlockHWaddr() const;
57     
58 protected:
59     
60 private:
61   /** copy constructor prohibited */
62   AliHLTTPCDigitReaderPacked(const AliHLTTPCDigitReaderPacked&);
63   /** assignment operator prohibited */
64   AliHLTTPCDigitReaderPacked& operator=(const AliHLTTPCDigitReaderPacked&);
65
66   // Initialize AliROOT TPC raw stream parsing class
67   AliRawReaderMemory *fRawMemoryReader; //!transient
68
69   AliTPCRawStream *fTPCRawStream; //!transient
70     
71   //#if ENABLE_PAD_SORTING 
72   Int_t fCurrentRow; //!transient
73   Int_t fCurrentPad; //!transient
74   Int_t fCurrentBin; //!transient
75  
76   Int_t fRowOffset; //!transient
77   Int_t fNRows; //!transient
78
79   Int_t fNMaxRows; //!transient
80   Int_t fNMaxPads; //!transient
81   Int_t fNTimeBins; //!transient
82
83   Int_t *fData; //!transient
84   //#endif // ENABLE_PAD_SORTING
85
86   Bool_t fUnsorted; //!transient
87
88   ClassDef(AliHLTTPCDigitReaderPacked, 2)
89         
90 };
91
92 #endif