]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/CALO/AliHLTCaloRawAnalyzerComponentv3.h
- cleaning up debug output
[u/mrichter/AliRoot.git] / HLT / CALO / AliHLTCaloRawAnalyzerComponentv3.h
CommitLineData
178dd351 1
2/**************************************************************************
3 * This file is property of and copyright by the ALICE HLT Project *
4 * All rights reserved. *
5 * *
6 * Primary Authors: Per Thomas Hille, Oystein Djuvsland *
7 * *
8 * Permission to use, copy, modify and distribute this software and its *
9 * documentation strictly for non-commercial purposes is hereby granted *
10 * without fee, provided that the above copyright notice appears in all *
11 * copies and that both the copyright notice and this permission notice *
12 * appear in the supporting documentation. The authors make no claims *
13 * about the suitability of this software for any purpose. It is *
14 * provided "as is" without express or implied warranty. *
15 **************************************************************************/
16
17
18#ifndef ALIHLTCALORAWANALYZERCOMPONENTV3_H
19#define ALIHLTCALORAWANALYZERCOMPONENTV3_H
20
21
22/**
23 * Raw data analyzer component base class for PHOS HLT
24 *
25 * @file AliHLTCaloRawAnalyzerComponentv3.h
26 * @author Oystein Djuvsland
27 * @date
28 * @brief A clusterizer component for PHOS HLT
29*/
30
31// see below for class documentation
32// or
33// refer to README to build package
34// or
35// visit http://web.ift.uib.no/~kjeks/doc/alice-hlt
36
3800a654 37//#include "AliHLTCaloRcuProcessor.h"
178dd351 38
39
72a884c8 40class AliCaloRawAnalyzer;
178dd351 41class AliHLTCaloRcuCellEnergyDataStruct;
42class AliHLTCaloMapper;
43class AliHLTCaloSanityInspector;
44class AliHLTCaloDigitMaker;
45class AliHLTCaloDigitContainerDataStruct;
46class AliRawReaderMemory;
47class AliAltroRawStreamV3;
48
72a884c8 49
178dd351 50/**
51 * @class AliHLTCaloRawAnalyzerComponentv3
52 * This the new and fast version of the component taking care of the decoding and energy and timing
53 * extraction of the raw data from PHOS.
54 *
55 * <h2>General properties:</h2>
56 *
57 * Component ID: \b PhosRawAnalyzerv3 <br>
58 * Library: \b libAliHLTCalo.so <br>
59 * Input Data Types: @ref <br>
60 * Output Data Types: @ref AliHLTCaloDefinitions::fgkChannelDataType<br>
61 *
62 * <h2>Mandatory arguments:</h2>
63 * <!-- NOTE: ignore the \li. <i> and </i>: it's just doxygen formatting -->
64 * \li No mandatory arguments for component <br>
65 *
66 * <h2>Optional arguments:</h2>
67 * <!-- NOTE: ignore the \li. <i> and </i>: it's just doxygen formatting -->
68 * \li -offset <i> value </i> <br>
69 * gives the offset added to the data during zero suppression (default value: 0)
70 * \li -bunchsizecut <i> value </i> <br>
71 * minimum number of samples a bunch must contain to be considered (default value: 0)
72 * \li -minpeakposition <i> value </i> <br>
73 * cut on minimum postion of the peak in the bunch (defaul value: 0)
74 * \li -maxpeakposition <i> value </i> <br>
75 * cut on maximum postion of the peak in the bunch (defaul value: 100)
76 *
77 * <h2>Configuration:</h2>
78 * <!-- NOTE: ignore the \li. <i> and </i>: it's just doxygen formatting -->
79 * \li No configuration arguments
80 *
81 * <h2>Default CDB entries:</h2>
82 * \li No CDB entry yet, will come.
83 *
84 * <h2>Performance:</h2>
85 * Pretty good (~ 3 kHz), depends on amount of data...
86 *
87 * <h2>Memory consumption:</h2>
88 * Depends on the amount of data, but pretty godd
89 *
90 * <h2>Output size:</h2>
91 * Depends on the amount of data...
92 *
93 * More detailed description. (Soon)
94 *
95 * @ingroup alihlt_phos
96 */
97
3800a654 98
99#include "AliHLTProcessor.h"
100#include "AliHLTCaloDefinitions.h"
4f4b7ba4 101#include "AliHLTCaloConstantsHandler.h"
c375e15d 102#include "AliHLTCaloRcuProcessor.h"
3800a654 103
178dd351 104class AliHLTCaloMapper;
105
106
4f4b7ba4 107class AliHLTCaloRawAnalyzerComponentv3 : public AliHLTCaloConstantsHandler, public AliHLTCaloRcuProcessor
178dd351 108{
109 public:
110
77f350f7 111 /** Constructor must be initialized to specific calorimeter */
112 AliHLTCaloRawAnalyzerComponentv3(TString det);
113
178dd351 114 /** Destructor */
115 virtual ~AliHLTCaloRawAnalyzerComponentv3();
116
117 // virtual bool CheckInputDataType(const AliHLTComponentDataType &datatype) = 0;
118
119 /** interface function, see @ref AliHLTComponent for description */
120 virtual int DoInit(int argc =0, const char** argv = 0);
121
122 /** interface function, see @ref AliHLTComponent for description */
c375e15d 123 virtual int DoDeinit();
178dd351 124
125 /** interface function, see @ref AliHLTComponent for description */
126 virtual const char* GetComponentID() = 0;
127
128 /** interface function, see @ref AliHLTComponent for description */
72a884c8 129 // virtual void GetInputDataTypes( vector <AliHLTComponentDataType>& list);
130 virtual void GetInputDataTypes( vector <AliHLTComponentDataType>& list) = 0;
131
178dd351 132
133 /** interface function, see @ref AliHLTComponent for description */
72a884c8 134 // virtual AliHLTComponentDataType GetOutputDataType();
135 virtual AliHLTComponentDataType GetOutputDataType() = 0;
178dd351 136
137 /** interface function, see @ref AliHLTComponent for description */
72a884c8 138 // virtual void GetOutputDataSize(unsigned long& constBase, double& inputMultiplier);
139 virtual void GetOutputDataSize(unsigned long& constBase, double& inputMultiplier) = 0 ;
178dd351 140
141 /** interface function, see @ref AliHLTComponent for description */
142 virtual AliHLTComponent* Spawn() = 0;
143
144 protected:
c375e15d 145
146 //virtual bool CheckInputDataType(const AliHLTComponentDataType &datatype) = 0;
178dd351 147 /** interface function, see @ref AliHLTComponent for description */
3800a654 148
c375e15d 149 using AliHLTCaloRcuProcessor::DoEvent;
178dd351 150
151 /** interface function, see @ref AliHLTComponent for description */
152 virtual int DoEvent( const AliHLTComponentEventData& evtData, const AliHLTComponentBlockData* blocks,
153 AliHLTComponentTriggerData& trigData, AliHLTUInt8_t* outputPtr,
c375e15d 154 AliHLTUInt32_t& size, vector<AliHLTComponentBlockData>& outputBlocks ) = 0;
178dd351 155
156 /**
157 * Do the real processing in the component
158 * @param iter is the pointer to the data blocks
159 * @param outputPtr is the pointer to the output buffer
160 * @param size is the available size for output
161 * @param totSize is the total size used for output
162 * @return the size output size used
163 */
164 virtual Int_t DoIt(const AliHLTComponentBlockData* iter, AliHLTUInt8_t* outputPtr, const AliHLTUInt32_t size, UInt_t& totSize);
165
5fc8dce6 166 // unsigned long fCaloEventCount;
178dd351 167
168 /** Pointer to an analyzer object used for raw data anlysis */
72a884c8 169 AliCaloRawAnalyzer *fAnalyzerPtr; //COMMENT
c375e15d 170
4f4b7ba4 171 //** Pointer to a mapper opbject */
172 AliHLTCaloMapper *fMapperPtr; //COMMENT
c375e15d 173
44175a17 174 virtual void InitMapping(const int specification ) = 0;
175
178dd351 176 private:
177
77f350f7 178/** Keep default constructor private since it should not be used */
179 AliHLTCaloRawAnalyzerComponentv3();
180
178dd351 181 /** Keep the copy constructor private since it should not be used */
182 AliHLTCaloRawAnalyzerComponentv3(const AliHLTCaloRawAnalyzerComponentv3 & );
183
184 /** Keep the assignement operator private since it should not be used */
185 AliHLTCaloRawAnalyzerComponentv3 & operator = (const AliHLTCaloRawAnalyzerComponentv3 &);
186
44175a17 187 //virtual void InitMapping(const int specification ) = 0;
c375e15d 188
178dd351 189 /** Mapping from harware address to geometrical address */
190 // AliHLTCaloMapper *fMapperPtr; //!transient
191
c375e15d 192
3800a654 193
178dd351 194 /** Pointer to object which may check the integrity of the data */
195 AliHLTCaloSanityInspector *fSanityInspectorPtr; //!transient
196
197 /** Pointer to the raw data reader which reads from memory */
198 AliRawReaderMemory* fRawReaderMemoryPtr; //!transient
199
200 /** Pointer to the raw stream */
201 AliAltroRawStreamV3* fAltroRawStreamPtr; //!transient
202
203 /** Describing which algorithm we are using */
204 Short_t fAlgorithm; //COMMENT
205
206 /** The offset applied before ZS */
207 Int_t fOffset; //COMMENT
208
209 /** The minimum length a bunch can have to be considered */
210 Int_t fBunchSizeCut; //COMMENT
211
212 /** The lowest position a peak can have to be considered */
213 Int_t fMinPeakPosition; //COMMENT
214
215 /** The maximum position a peak can have to be considered */
216 Int_t fMaxPeakPosition; //COMMENT
217
218 // AliHLTCaloMapper *fMapperPtr;
219
c6d582d5 220 /** Should we push the raw data when the channel is crazy? */
221 Bool_t fDoPushBadRawData; //COMMENT
222
223 /** Should we push all raw data (using the raw data writer) */
224 Bool_t fDoPushRawData; //COMMENT
225
178dd351 226 class RawDataWriter
227 {
228 public:
77f350f7 229 RawDataWriter(AliHLTCaloConstants* cConst);
178dd351 230 ~RawDataWriter();
231 // void WriteChannelId(const UShort_t channeldid );
232 void NewChannel( );
233 void WriteBunchData(const UShort_t *bunchdata, const int length, const UInt_t starttimebin );
234 void ResetBuffer();
235 void SetChannelId( const UShort_t channeldid );
236 //void CopyBufferToSharedMemory(UShort_t *memPtr, const int sizetotal, const int sizeused );
237 int CopyBufferToSharedMemory(UShort_t *memPtr, const int sizetotal, const int sizeused );
238 void NewEvent();
239
240 private:
77f350f7 241
242 //Default constructor, should not be used.
243 RawDataWriter();
178dd351 244 RawDataWriter (const RawDataWriter & );
245 RawDataWriter & operator = (const RawDataWriter &);
246 void Init();
247 // bool fIsFirstChannel;
248 UShort_t* fRawDataBuffer;
249 int fCurrentChannelSize;
250 int fBufferIndex;
251 int fBufferSize;
252 UShort_t *fCurrentChannelIdPtr;
253 UShort_t *fCurrentChannelSizePtr;
254 UShort_t *fCurrentChannelDataPtr;
255 int fTotalSize;
256 };
257
258 RawDataWriter *fRawDataWriter;
259
4f4b7ba4 260 ClassDef(AliHLTCaloRawAnalyzerComponentv3, 1)
261
178dd351 262};
263
264#endif
265