]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HMPID/AliHMPIDRawStream.cxx
Linear gradient inside radiators. Height in the radiator used to find temperature
[u/mrichter/AliRoot.git] / HMPID / AliHMPIDRawStream.cxx
1 /**************************************************************************
2  * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3  *                                                                        *
4  * Author: The ALICE Off-line Project.                                    *
5  * Contributors are mentioned in the code where appropriate.              *
6  *                                                                        *
7  * Permission to use, copy, modify and distribute this software and its   *
8  * documentation strictly for non-commercial purposes is hereby granted   *
9  * without fee, provided that the above copyright notice appears in all   *
10  * copies and that both the copyright notice and this permission notice   *
11  * appear in the supporting documentation. The authors make no claims     *
12  * about the suitability of this software for any purpose. It is          *
13  * provided "as is" without express or implied warranty.                  *
14  **************************************************************************/
15
16 ///////////////////////////////////////////////////////////////////////////////
17 ///
18 /// This is a class for reading the HMPID raw data
19 /// The format of the raw data corresponds to the one
20 /// which was documented by Paolo Martinengo.
21 ///
22 ///////////////////////////////////////////////////////////////////////////////
23
24 #include "AliHMPIDRawStream.h"
25 #include "AliRawReader.h"
26 #include "AliLog.h"
27
28 ClassImp(AliHMPIDRawStream)
29
30 //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
31 AliHMPIDRawStream::AliHMPIDRawStream(AliRawReader* rawReader) :
32   fNPads(0),
33   fCharge(0x0),
34   fPad(0x0),
35   fDDLNumber(-1),
36   fnDDLInStream(0x0),
37   fnDDLOutStream(0x0),
38   fLDCNumber( 0),
39   fTimeStamp( 0),
40   fRawReader(rawReader),
41   fData(0x0),
42   fNumOfErr(0x0),
43   fPosition(-1),
44   fWord(0),
45   fZeroSup(kTRUE),
46   fPos(0x0),
47   fiPos(0),
48   fTurbo(kFALSE),
49   fRawDataSize(0)
50 {
51   //
52   // Constructor
53   //
54   fNumOfErr = new Int_t*[kNDDL];                                 // Store the numner of errors for a given error type and a given DD
55   for(Int_t i=0;i<kNDDL;i++) {
56     fNumOfErr[i] = new Int_t [kSumErr];
57   }
58   
59   fnDDLInStream=new Int_t[kNDDL];
60   fnDDLOutStream=new Int_t[kNDDL];
61   for(Int_t iddl=0;iddl<kNDDL;iddl++) { fnDDLInStream[iddl]=-1;fnDDLOutStream[iddl]=-1;}
62  
63   for(Int_t iddl=0;iddl<kNDDL;iddl++) 
64     for(Int_t ierr=0; ierr < kSumErr; ierr++) fNumOfErr[iddl][ierr]=0;               //reset errors  
65   fRawReader->Reset();
66   fRawReader->Select("HMPID");
67   
68   
69   
70 }
71 //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
72 AliHMPIDRawStream::AliHMPIDRawStream() :
73   fNPads(0),
74   fCharge(0x0),
75   fPad(0x0),
76   fDDLNumber(-1),
77   fnDDLInStream(0x0),
78   fnDDLOutStream(0x0),
79   fLDCNumber( 0),
80   fTimeStamp( 0),
81   fRawReader(0x0),
82   fData(0x0),
83   fNumOfErr(0x0),  
84   fPosition(-1),
85   fWord(0),
86   fZeroSup(kTRUE),
87   fPos(0x0),
88   fiPos(0),
89   fTurbo(kFALSE) ,
90   fRawDataSize(0)
91 {
92   //
93   // Constructor
94   //
95   fNumOfErr = new Int_t*[kNDDL];                                 // Store the numner of errors for a given error type and a given DD
96   for(Int_t i=0;i<kNDDL;i++) {
97     fNumOfErr[i] = new Int_t [kSumErr];
98   }
99   fnDDLInStream=new Int_t[kNDDL];
100   fnDDLOutStream=new Int_t[kNDDL];
101   for(Int_t iddl=0;iddl<kNDDL;iddl++) { fnDDLInStream[iddl]=-1;fnDDLOutStream[iddl]=-1;}
102
103   
104   for(Int_t iddl=0;iddl<kNDDL;iddl++) 
105     for(Int_t ierr=0; ierr < kSumErr; ierr++) fNumOfErr[iddl][ierr]=0;               //reset errors  
106
107 }
108 //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
109 AliHMPIDRawStream::~AliHMPIDRawStream()
110 {
111   //
112   // destructor
113   //
114   DelVars();
115   
116   
117   fDDLNumber=0;
118   fLDCNumber=0;
119   fTimeStamp=0;
120   fPosition=0;
121   fWord=0;
122   fZeroSup=0;
123   fTurbo=0;
124   fRawDataSize=0;
125   for(Int_t i=0;i<kNDDL;i++) delete [] fNumOfErr[i]; 
126   delete [] fNumOfErr; 
127
128   delete [] fnDDLInStream;
129   delete [] fnDDLOutStream;
130 }
131 //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
132 void AliHMPIDRawStream::Reset()
133 {
134   // reset raw stream params
135   // Reinitalize the containers
136   fDDLNumber = -1;
137   fLDCNumber =  0;
138   fTimeStamp =  0;
139   fPosition = -1;
140   fData = NULL;
141   if (fRawReader) fRawReader->Reset();
142 }
143 //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
144 Bool_t AliHMPIDRawStream::Turbo()
145 {
146   
147   Int_t row,dilogic;UInt_t pad;
148   Int_t cntGlob = fRawReader->GetDataSize()/4;
149   fPosition=0;
150   fNPads=0;
151 //  Int_t gw=0;
152   for(Int_t i=1;i<cntGlob;i++) {
153     if(!GetWord(1)) return kFALSE;
154     if (((fWord >> kbit27) & 1)) continue;
155     UInt_t statusControlRow = 0x32a8; 
156     UInt_t rowControlWord = fWord >> kbit0 & 0xfbff;
157     if(rowControlWord == statusControlRow) continue;
158
159     row = (fWord >> kbit22) & 0x1f;
160     dilogic = (fWord >> kbit18) & 0xf;                                              //dilogic info in raw word is between bits: 18...21
161     
162     pad = (fWord >> kbit12) & 0x3f;                                          //pad info in raw word is between bits: 12...17
163     if(!CheckPad(pad)) continue;
164     Int_t charge = fWord & 0xfff;
165     if(GetPad(fDDLNumber,row,dilogic,pad)<0) continue;
166     fPad[fNPads] = GetPad(fDDLNumber,row,dilogic,pad);
167     fCharge[fNPads] = charge; 
168     fNPads++;
169     if(charge==0) fNumOfErr[fDDLNumber][kPedQZero]++;
170   }//word loop
171   //Printf("Size: %i  DDL %i row %i dilogic %i pad %i fPos %i fNPads: %i Charge: %d Word %4.4x GoodW: %i",cntGlob,fDDLNumber,row,dilogic,pad,fPosition,fNPads,fCharge[fNPads-1],fWord,gw++);
172   return kTRUE;
173 }//Turbo()
174 //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
175 Bool_t AliHMPIDRawStream::Next()
176 {
177   // read next DDL raw data from the HMPID raw data stream
178   // return kFALSE in case of error or no data left
179   AliDebug(1,"Start.");
180   do {
181     if (!fRawReader->ReadNextData(fData)) return kFALSE;
182   } while (fRawReader->GetDataSize() == 0);
183   
184      
185   /*
186   Event type is selected as in $ALICE_ROOT/RAW/event.h  
187   #define START_OF_RUN                    ((eventTypeType) 1)
188   #define END_OF_RUN                      ((eventTypeType) 2)
189   #define START_OF_RUN_FILES              ((eventTypeType) 3)
190   #define END_OF_RUN_FILES                ((eventTypeType) 4)
191   #define START_OF_BURST                  ((eventTypeType) 5)
192   #define END_OF_BURST                    ((eventTypeType) 6)
193   #define PHYSICS_EVENT                   ((eventTypeType) 7) <<---------------  
194   #define CALIBRATION_EVENT               ((eventTypeType) 8)
195   #define EVENT_FORMAT_ERROR              ((eventTypeType) 9)
196   #define START_OF_DATA                   ((eventTypeType)10)
197   #define END_OF_DATA                     ((eventTypeType)11)
198   #define SYSTEM_SOFTWARE_TRIGGER_EVENT   ((eventTypeType)12)
199   #define DETECTOR_SOFTWARE_TRIGGER_EVENT ((eventTypeType)13)
200   #define EVENT_TYPE_MIN                  1
201   #define EVENT_TYPE_MAX                  13 
202   */
203
204   fPosition = 0;
205   Bool_t status=kFALSE;
206   fRawDataSize=0;        
207   fDDLNumber = fRawReader->GetDDLID();
208   if(fRawReader->GetType() == 7 || fRawReader->GetType() == 8 )  {           //New: Select Physics events, Old: Raw data size is not 0 and not 47148 (pedestal)
209     fnDDLInStream[fDDLNumber]=1; fnDDLOutStream[fDDLNumber]=0;
210     
211     fLDCNumber = fRawReader->GetLDCId();
212     fTimeStamp = fRawReader->GetTimestamp();
213     
214     AliDebug(1,Form("DDL %i started to be decoded!",fDDLNumber));
215     fRawDataSize=fRawReader->GetDataSize()/4;
216     DelVars();                                         //We have to delete the variables initialized in the InitVars before recall IntiVars!!!
217     InitVars(fRawDataSize);                            //To read the charge and pads we cannot delete before the status return
218     
219     if(fTurbo==kTRUE) status=Turbo();
220     else status = ReadHMPIDRawData();
221    
222     if(status) AliDebug(1,Form("Event DDL %i successfully decoded!.",fDDLNumber));
223     else AliDebug(1,Form("Event DDL %i ERROR in decoding!.",fDDLNumber));
224 //      DumpData(fRawReader->GetDataSize());
225   
226    
227     }
228     if(status==kTRUE) {fnDDLOutStream[fDDLNumber]++; }//Printf("fnDDLOutStream[%d]=%d",fDDLNumber,fnDDLOutStream[fDDLNumber]); } //Count the number of events when the DDL was succesfully decoded
229    
230 //    return status;  // temporary solution...
231    return kTRUE;
232 }
233 //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
234 void AliHMPIDRawStream::InitVars(Int_t n)
235 {
236   //
237   //
238   //
239   fNPads = 0;
240   fCharge = new Int_t[n]; 
241   fPad = new Int_t[n];
242   //for debug purpose
243   fPos = new Int_t[4*n+4];                     //reset debug
244   fiPos = 0;
245 }    
246 //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
247 void AliHMPIDRawStream::DelVars()
248 {
249   //
250   //
251   // 
252   //Clean the initvars!!!!!!!!
253   fNPads = 0; 
254   if (fCharge)     { delete [] fCharge;    fCharge = 0x0; }
255   if (fPad)        { delete [] fPad;       fPad = 0x0;       }   
256   if (fPos)        { delete [] fPos;       fPos = 0x0;       }     
257  
258   fiPos=0;
259   
260      
261 }    
262 //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
263 Bool_t AliHMPIDRawStream::ReadHMPIDRawData()
264 {
265   //Here the loop on the decoding the raw bank 
266   //for one ddl starts.
267   //It returns: kFALSE if any error occurs
268   //            kTRUE  if all OK
269   Int_t cntGlob = fRawReader->GetDataSize()/4;
270   if(cntGlob==0) {fNumOfErr[fDDLNumber][kRawDataSizeErr]++; return kFALSE; }
271   
272   Int_t cnt = cntGlob;
273   Int_t nwSeg;
274   Int_t cntSegment;
275
276   if(!GetWord(cnt)) return kFALSE;
277   cnt--;
278
279   
280   while (cnt>0) {
281     
282     nwSeg = (fWord >> kbit8) & 0xfff;
283     if(!CheckSegment()) return kFALSE;
284     if(!ReadSegment(cntSegment)) return kFALSE;
285
286     if(nwSeg != cntSegment) {AliDebug(1,Form("Error in Segment counters: %i different wrt %i",nwSeg,cntSegment)); return kFALSE;}
287     if(!GetWord(cntSegment+1,kBwd)) return kFALSE;
288     cnt-=cntSegment+1;
289   }
290   
291   return kTRUE;
292   
293 }
294 //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
295 Bool_t AliHMPIDRawStream::ReadSegment(Int_t &cntSegment)
296 {
297   //Read the segment
298   //It returns: kFALSE if any error occurs
299   //            kTRUE  if all OK
300   cntSegment = (fWord >> kbit8) & 0xfff;
301   Int_t cnt = cntSegment;
302   Int_t cntRow;
303   Int_t nwRow;
304
305   if(!GetWord(cnt,kBwd)) return kFALSE;
306   
307   while (cnt>0) {
308
309     cntRow  = (fWord >> kbit16) & 0xfff;
310     if(!CheckRowMarker()) return kFALSE;
311     if(!ReadRow(nwRow)) return kFALSE;
312
313     if(nwRow != cntRow) {AliDebug(1,Form("Error in Row counters: %i different wrt %i",nwRow,cntRow)); return kFALSE;}
314     if(!GetWord(cntRow+1)) return kFALSE;
315     cnt -= cntRow+1;
316     
317   }
318
319   cntSegment -= cnt;
320   
321   return kTRUE;
322     
323 }    
324 //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
325 Bool_t AliHMPIDRawStream::ReadRow(Int_t &cntRow)
326 {
327   // Read the row
328   //It returns: kFALSE if any error occurs
329   //            kTRUE  if all OK
330
331   Int_t cnt;
332   Int_t cntDilogic;
333   Int_t nwDil;
334   
335   cntRow  = (fWord >> kbit16) & 0xfff;
336   cnt = cntRow;  
337   
338   if(!GetWord(cntRow)) return kFALSE;
339   
340   while (cnt>0) {
341     
342     if(!CheckEoE(nwDil)) return kFALSE;
343     if(!ReadDilogic(cntDilogic)) return kFALSE;
344     
345     if(nwDil != cntDilogic) {AliDebug(1,Form("Error in Dilogic counters: %i different wrt %i",nwDil,cntDilogic));return kFALSE;}
346     cnt -= cntDilogic;
347     if(!GetWord(1,kBwd)) return kFALSE; // go to next Dilogic bank...
348     cnt--;
349 //    Printf(" cnt %i cntDilogic %i ",cnt,cntDilogic);
350   }
351   
352   cntRow -= cnt;  
353   
354   return kTRUE;
355   
356 }
357 //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
358 Bool_t AliHMPIDRawStream::ReadDilogic(Int_t &cntDilogic)
359 {
360   // Read the dilogic bank
361   //It returns: kFALSE if any error occurs
362   //            kTRUE  if all OK
363
364   cntDilogic = fWord & 0x7f;
365   
366   Int_t cnt = cntDilogic;
367   
368 //  Printf(" cnt DILOGIC %i at %i word %08X",cnt,fPosition,fWord);
369
370   for(Int_t iDil=0;iDil<cntDilogic;iDil++) {
371     UInt_t dilogic = 0, row = 0;
372     if(!GetWord(1,kBwd)) return kFALSE;
373 //check on row number      
374     cnt--;
375     row = (fWord >> kbit22) & 0x1f;
376     if(!CheckRow(row)) continue;
377 //check dilogic number     
378     dilogic = (fWord >> kbit18) & 0xf;                                              //dilogic info in raw word is between bits: 18...21
379     if(!CheckDilogic(dilogic)) continue;
380 //check pad number
381     UInt_t pad = (fWord >> kbit12) & 0x3f;                                          //pad info in raw word is between bits: 12...17
382     if(!CheckPad(pad)) continue;
383     Int_t charge = fWord & 0xfff;
384     if(GetPad(fDDLNumber,row,dilogic,pad)<0) continue;
385     fPad[fNPads] = GetPad(fDDLNumber,row,dilogic,pad);
386     fCharge[fNPads] = charge; 
387     fNPads++;
388     
389     if(charge==0) 
390     {
391       AliDebug(1,Form("If PEDESTAL run -> WARNING: ZERO charge is read from DDL: %d row: %d dil: %d pad: %d",fDDLNumber,row,dilogic,pad));
392       fNumOfErr[fDDLNumber][kPedQZero]++;
393     }
394     
395   }//iDil
396
397   cntDilogic -= cnt;  
398   return kTRUE;  
399 }
400 //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
401 Bool_t AliHMPIDRawStream::CheckSegment()
402 {
403   // Check the segment marker
404   //It returns: kFALSE if any error occurs
405   //            kTRUE  if all OK
406
407   UInt_t markSegment = 0xAB0;
408   /*
409   if (iRow%8 == 0) {
410     UInt_t segWord = GetWord();          
411     if ((segWord >> 20) != statusSegWord) {
412       fRawReader->AddMajorErrorLog(kBadSegWordErr);
413       AliDebug(1,Form("Wrong segment word signature: %x, expected 0xab0!",(segWord >> 20)));
414       fNumOfErr[kBadSegWordErr]++;
415       return kTRUE;
416     }
417 */
418   UInt_t segMarker = (fWord >> kbit20) & 0xfff;
419   if (segMarker != markSegment ) {
420     //fRawReader->AddMajorErrorLog(kWrongSegErr,Form("Segment marker %0X wrong (expected %0X) at %i in word %0X!",segMarker,markSegment,fPosition,fWord));
421     AliDebug(1,Form("Segment marker %X wrong (expected %0X)! at %i in word %0X!",segMarker,markSegment,fPosition,fWord));
422     fNumOfErr[fDDLNumber][kWrongSegErr]++;
423     return kFALSE;
424   }
425   
426   UInt_t segAddress = fWord & 0xff;
427   if (segAddress<1 ||segAddress>3) {
428     //fRawReader->AddMajorErrorLog(kWrongSegErr,Form("Segment address %d not in the valid range [1-3] at %i in word %0X",segAddress,fPosition,fWord));
429     AliDebug(1,Form("Segment address %d not in the valid range [1-3]",segAddress));
430     fNumOfErr[fDDLNumber][kWrongSegErr]++;
431     return kFALSE;
432   }
433 //  Printf("Segment Marker found at %i! Number of segment is %i",fPosition,segAddress);
434   return kTRUE;
435 }
436 //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
437 Bool_t AliHMPIDRawStream::CheckRow(UInt_t row)
438 {
439   //check on row number      
440   //It returns: kFALSE if any error occurs
441   //            kTRUE  if all OK
442 //  Printf("ROW %i word %0X",row,fWord);
443   if(row>=1 && row <=kNRows) return kTRUE;
444   
445   //fRawReader->AddMajorErrorLog(kWrongRowErr,Form("row %d",row));
446   AliDebug(1,Form("Wrong row index: %d, expected (1 -> %d) word %0X at %i...",row,kNRows,fWord,fPosition));
447   fNumOfErr[fDDLNumber][kWrongRowErr]++;
448   return kFALSE;
449 }
450 //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
451 Bool_t AliHMPIDRawStream::CheckDilogic(UInt_t dilogic)
452 {
453 //check dilogic number     
454   //It returns: kFALSE if any error occurs
455   //            kTRUE  if all OK
456   if (dilogic>= 1 && dilogic <=kNDILOGICAdd) return kTRUE;
457
458   //fRawReader->AddMajorErrorLog(kWrongDilogicErr,Form("dil %d",dilogic));
459   AliDebug(1,Form("Wrong DILOGIC index: %d, expected (1 -> %d)!",dilogic,kNDILOGICAdd));
460   fNumOfErr[fDDLNumber][kWrongDilogicErr]++;
461   //dilogic = iDILOGIC;
462   return kFALSE;
463 }      
464 //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
465 Bool_t AliHMPIDRawStream::CheckPad(UInt_t pad)
466 {
467 //check pad number     
468   //It returns: kFALSE if any error occurs
469   //            kTRUE  if all OK
470   if (pad < kNPadAdd) return kTRUE;
471   
472   //fRawReader->AddMajorErrorLog(kWrongPadErr,Form("pad %d",pad));
473   AliDebug(1,Form("Wrong pad index: %d, expected (0 -> %d)!",pad,kNPadAdd));
474   fNumOfErr[fDDLNumber][kWrongPadErr]++;
475   return kFALSE;
476 }    
477 //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
478 Bool_t AliHMPIDRawStream::CheckEoE(Int_t &nDil)
479 {
480   //check the End of Event
481   //It returns: kFALSE if any error occurs
482   //            kTRUE  if all OK
483   if (!((fWord >> kbit27) & 0x1)) {                                                //check 27th bit in EoE. It must be 1!
484     //fRawReader->AddMajorErrorLog(kEoEFlagErr);
485     AliDebug(1,Form("Missing end-of-event flag! (%08X) at %i",fWord,fPosition));
486     fNumOfErr[fDDLNumber][kEoEFlagErr]++;
487     return kFALSE;
488   }
489   nDil = fWord & 0x7f;                                               //nDil=EoE word count
490   if(nDil < 0 || nDil > 48 ) { 
491
492     //fRawReader->AddMajorErrorLog(kEoESizeErr,Form("EoE size=%d",nDil));
493     AliDebug(1,Form("Wrong end-of-event word-count: %08X",fWord));
494     fNumOfErr[fDDLNumber][kEoESizeErr]++;
495     return kFALSE;
496   }
497 //  UInt_t da = (eOfEvent >> 18) & 0xf;
498 //  if (cntData!=0 && da != dilogic) {
499 //    fRawReader->AddMajorErrorLog(kEoEDILOGICErr,Form("eoe dil %d != %d",da,dilogic));
500 //    AliDebug(1,Form("Wrong DILOGIC address found in end-of-event: %d, expected %d!",da,dilogic));
501 //    fNumOfErr[kEoEDILOGICErr]++;
502 //    return kFALSE;  AliQAChecker::Instance()->Run(AliQAv1::kHMPID, task, obj) ;  
503
504 //  }
505 //  UInt_t ca = (eOfEvent >> 22) & 0x1f;
506 //  if (cntData!=0 &&  ca != row) {
507 //    fRawReader->AddMajorErrorLog(kEoERowErr,Form("eoe row %d != %d",ca,row));
508 //    AliDebug(1,Form("Wrong row index found in end-of-event: %d, expected %d!",ca,row));
509 //    fNumOfErr[kEoERowErr]++;
510 //    return kFALSE;
511 //  }
512   return kTRUE;
513 }
514 //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
515 Bool_t AliHMPIDRawStream::CheckRowMarker()
516 {
517   //check the row marker
518   //It returns: kFALSE if any error occurs
519   //            kTRUE  if all OK
520   UInt_t nMAXwordsInRow = 0x1EA;
521   UInt_t statusControlRow = 0x32a8; // 0x36a8 for zero suppression
522 //First check on row marker    
523   UInt_t rowControlWord = fWord >> kbit0 & 0xfbff;
524   
525   if(rowControlWord != statusControlRow) {
526     //fRawReader->AddMajorErrorLog(kRowMarkerErr);
527     AliDebug(1,Form("Wrong row marker %x expected 0x32a8!",rowControlWord));
528               fNumOfErr[fDDLNumber][kRowMarkerErr]++;
529               return kFALSE;
530    }
531 //Second check on row marker    
532    UInt_t wordsInRow = fWord >> kbit16 & 0x0fff;                // Number of words after the row marker, bit 10 is skipped in this check
533   
534   if (wordsInRow > nMAXwordsInRow) {
535     //fRawReader->AddMajorErrorLog(kRowMarkerSizeErr);
536     AliDebug(1,Form(" FATAL: Number of words %x in a row exceeds the expected value: 0x1EA !",wordsInRow));
537     fNumOfErr[fDDLNumber][kRowMarkerSizeErr]++;
538     return kFALSE;
539   }
540   
541   return kTRUE;
542 }
543 //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
544 Bool_t AliHMPIDRawStream::GetWord(Int_t n,EDirection dir)
545 {
546   // This method returns the n-th 32 bit word
547   // inside the raw data payload.
548   // The method is supposed to be endian (platform)
549   // independent.
550   
551   fWord = 0;
552   if (fPosition < 0) {
553     AliError("fPosition < 0 !!! Event skipped.");
554     fRawReader->AddMajorErrorLog(kRawDataSizeErr,"fPosition<0");
555     return kFALSE;
556   }
557
558   if(dir==kBwd) n = -n; 
559   fPosition+=4*n-4;
560
561   if(fPosition==-4) return kTRUE;
562   
563   if(fPosition<0 || fPosition > fRawReader->GetDataSize()) {
564     AliWarning(Form("fPosition out of boundaries %i",fPosition));
565     return kFALSE;
566   }
567     
568   StorePosition();
569   
570   fWord |= fData[fPosition++];
571   fWord |= fData[fPosition++] << 8;
572   fWord |= fData[fPosition++] << 16;
573   fWord |= fData[fPosition++] << 24;
574
575   return kTRUE;
576 }
577 //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
578 void AliHMPIDRawStream::DumpData(Int_t nw)
579 {
580   //just a simple raw data dump
581   // in () is the position in bytes
582   //--
583    for(Int_t i=0;i<nw;i+=4) {
584      if(!(i%16)) printf(" \n %8i) ",i);
585      printf("%02X%02X%02X%02X [ %06i ] ",fData[i+3],fData[i+2],fData[i+1],fData[i+0],fPos[i]);
586    }
587    Printf(" \n -----end of dump ----------- ");
588 }
589 //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
590 void AliHMPIDRawStream::StorePosition()
591 {
592   //just for debug purpose
593   // it stores the position
594   //read for the first time
595 //  Printf("@@@@@@@@@ fPos: %x fPosition: %d",fPos,fPosition);
596   if(fPos[fPosition]!=0) {
597 //    Printf("Position already stored!!! Value %i at address %i",fPos[fPosition],fPosition); 
598     return;
599   }
600   fiPos++;
601   fPos[fPosition] = fiPos;
602 //  if(stDeb)Printf("%i - Actual position %i",iPos,fPosition); 
603 }
604 //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++