]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/CALO/AliHLTCaloRawAnalyzerComponentv3.h
1) Removed some #include directives that was not needed
[u/mrichter/AliRoot.git] / HLT / CALO / AliHLTCaloRawAnalyzerComponentv3.h
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 Extraction of Amplitude and Peak position for PHOS/EMCAL 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
37
38 class AliCaloRawAnalyzer;
39 class AliHLTCaloRcuCellEnergyDataStruct;
40 class AliHLTCaloMapper;
41 class AliHLTCaloSanityInspector;
42 class AliHLTCaloDigitMaker;
43 class AliHLTCaloDigitContainerDataStruct;
44 class AliRawReaderMemory;
45 class AliAltroRawStreamV3;
46
47
48 /**
49  * @class AliHLTCaloRawAnalyzerComponentv3
50  * This the new and fast version of the component taking care of the decoding and energy and timing 
51  * extraction of the raw data from PHOS.
52  *
53  * <h2>General properties:</h2>
54  *
55  * Component ID: \b PhosRawAnalyzerv3 <br>
56  * Library: \b libAliHLTCalo.so     <br>
57  * Input Data Types: @ref <br>
58  * Output Data Types: @ref AliHLTCaloDefinitions::fgkChannelDataType<br>
59  *
60  * <h2>Mandatory arguments:</h2>
61  * <!-- NOTE: ignore the \li. <i> and </i>: it's just doxygen formatting -->
62  * \li No mandatory arguments for component                           <br>
63  *
64  * <h2>Optional arguments:</h2>
65  * <!-- NOTE: ignore the \li. <i> and </i>: it's just doxygen formatting -->
66  * \li -offset      <i> value </i> <br>
67  *      gives the offset added to the data during zero suppression (default value: 0)
68  * \li -bunchsizecut <i> value </i> <br>
69  *      minimum number of samples a bunch must contain to be considered  (default value: 0)
70  * \li -minpeakposition <i> value </i> <br>
71  *      cut on minimum postion of the peak in the bunch (defaul value: 0)
72  * \li -maxpeakposition <i> value </i> <br>
73  *      cut on maximum postion of the peak in the bunch (defaul value: 100)
74  *
75  * <h2>Configuration:</h2>
76  * <!-- NOTE: ignore the \li. <i> and </i>: it's just doxygen formatting -->
77  * \li No configuration arguments 
78  *
79  * <h2>Default CDB entries:</h2>
80  * \li No CDB entry yet, will come.
81  *
82  * <h2>Performance:</h2>
83  * Pretty good (~ 3 kHz), depends on amount of data...
84  *
85  * <h2>Memory consumption:</h2>
86  * Depends on the amount of data, but pretty godd
87  *
88  * <h2>Output size:</h2>
89  * Depends on the amount of data...
90  *
91  * More detailed description. (Soon)
92  *
93  * @ingroup alihlt_phos
94  */ 
95
96
97 #include "AliHLTProcessor.h"
98 #include "AliHLTCaloDefinitions.h"
99 #include "AliHLTCaloConstantsHandler.h"
100 #include "AliHLTCaloProcessor.h"
101
102
103 class AliHLTCaloMapper;
104
105
106 class AliHLTCaloRawAnalyzerComponentv3 :  public AliHLTCaloProcessor, protected AliHLTCaloConstantsHandler
107 {
108  public:
109
110   /** Constructor must be initialized to specific calorimeter */
111   AliHLTCaloRawAnalyzerComponentv3(TString det);
112   virtual ~AliHLTCaloRawAnalyzerComponentv3();
113   virtual int DoInit(int argc =0, const char** argv  = 0) ;
114   virtual int DoDeinit();
115   virtual const char* GetComponentID() = 0;
116   virtual void GetInputDataTypes( vector <AliHLTComponentDataType>& list) = 0; 
117   virtual AliHLTComponentDataType GetOutputDataType() = 0;
118   virtual void GetOutputDataSize(unsigned long& constBase, double& inputMultiplier) = 0 ;
119   virtual AliHLTComponent* Spawn() = 0; 
120
121  protected:
122   bool CheckInputDataType(const AliHLTComponentDataType &datatype);
123   virtual int DoEvent( const AliHLTComponentEventData& evtData, const AliHLTComponentBlockData* blocks, 
124                        AliHLTComponentTriggerData& trigData, AliHLTUInt8_t* outputPtr, 
125                        AliHLTUInt32_t& size, vector<AliHLTComponentBlockData>& outputBlocks );  
126
127
128   /** 
129    * Do the real processing in the component 
130    * @param iter is the pointer to the data blocks
131    * @param outputPtr is the pointer to the output buffer
132    * @param size is the available size for output
133    * @param totSize is the total size used for output
134    * @return the size output size used
135    */
136   virtual Int_t DoIt(const AliHLTComponentBlockData* iter, AliHLTUInt8_t* outputPtr, 
137                      const AliHLTUInt32_t size, UInt_t& totSize); 
138
139   
140  protected:
141   virtual void InitMapping(const int specification ) = 0;
142   void PrintDebugInfo();
143   /** Pointer to an analyzer object used for raw data anlysis */ 
144   AliCaloRawAnalyzer *fAnalyzerPtr;   //COMMENT
145   //** Pointer to a mapper opbject */
146   AliHLTCaloMapper *fMapperPtr;          //COMMENT
147   AliHLTUInt32_t fCurrentSpec;
148   bool fDebug;
149
150  private:
151   AliHLTCaloRawAnalyzerComponentv3();
152   AliHLTCaloRawAnalyzerComponentv3(const AliHLTCaloRawAnalyzerComponentv3 & );
153   AliHLTCaloRawAnalyzerComponentv3 & operator = (const AliHLTCaloRawAnalyzerComponentv3 &);
154   AliHLTCaloSanityInspector *fSanityInspectorPtr;     //!transient  /** Pointer to object which may check the integrity of the data */
155
156   /** Pointer to the raw data reader which reads from memory */
157   AliRawReaderMemory* fRawReaderMemoryPtr;            //!transient
158   
159   /** Pointer to the raw stream */
160   AliAltroRawStreamV3* fAltroRawStreamPtr;              //!transient
161
162   /** Describing which algorithm we are using */
163   Short_t fAlgorithm;                                 //COMMENT
164
165   /** The offset applied before ZS */
166   Int_t fOffset;                                      //COMMENT
167
168   /** The minimum length a bunch can have to be considered */
169   Int_t fBunchSizeCut;                                //COMMENT
170
171   /** The lowest position a peak can have to be considered */
172   Int_t fMinPeakPosition;                             //COMMENT
173   
174   /** The maximum position a peak can have to be considered */
175   Int_t fMaxPeakPosition;                             //COMMENT
176   
177    /** Should we push the raw data when the channel is crazy? */
178   Bool_t fDoPushBadRawData;                             //COMMENT
179       
180   /** Should we push all raw data (using the raw data writer) */
181   Bool_t fDoPushRawData; //COMMENT 
182   
183   class RawDataWriter 
184   {
185   public:
186     RawDataWriter(AliHLTCaloConstants* cConst);
187     virtual ~RawDataWriter();
188     void NewChannel( );
189     void WriteBunchData(const UShort_t *bunchdata,  const int length,   const UInt_t starttimebin );
190     void ResetBuffer();
191     void SetChannelId( const UShort_t channeldid );
192     int CopyBufferToSharedMemory(UShort_t *memPtr, const int sizetotal, const int sizeused );
193     void NewEvent();
194  
195   private:
196     RawDataWriter();    
197     RawDataWriter (const RawDataWriter  & );
198     RawDataWriter & operator = (const RawDataWriter &);
199     void Init();
200     UShort_t* fRawDataBuffer;
201     int fCurrentChannelSize;
202     int fBufferIndex;
203     int fBufferSize;
204     UShort_t *fCurrentChannelIdPtr;
205     UShort_t *fCurrentChannelSizePtr; 
206     UShort_t *fCurrentChannelDataPtr; 
207     int fTotalSize;
208   };
209
210   RawDataWriter *fRawDataWriter; 
211   ClassDef(AliHLTCaloRawAnalyzerComponentv3, 1)
212
213 };
214
215 #endif
216