]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HMPID/AliHMPIDRawStream.h
avoid compilation warnings when adding selection macros
[u/mrichter/AliRoot.git] / HMPID / AliHMPIDRawStream.h
CommitLineData
d2e2f542 1#ifndef ALIHMPIDRAWSTREAM_H
2#define ALIHMPIDRAWSTREAM_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6///////////////////////////////////////////////////////////////////////////////
7///
8/// This is a class for reading raw data digits for HMPID.
9/// The data format is taken from the document provided by Paolo Martinengo.
10///
11/// cvetan.cheshkov@cern.ch 19/07/2007
12///
13///////////////////////////////////////////////////////////////////////////////
14
15#include <TObject.h>
2ac899f2 16#include <TH1F.h>
17#include <TH2F.h>
18#include <TFile.h>
21f61e25 19#include "AliHMPIDParam.h"
20#include <AliBitPacking.h>
21#include <AliFstream.h>
22#include "AliHMPIDDigit.h"
23#include "AliDAQ.h"
f7ee745b 24#include "AliRawDataHeaderSim.h"
2ac899f2 25
d2e2f542 26class AliRawReader;
27
28class AliHMPIDRawStream: public TObject {
29 public :
30 AliHMPIDRawStream(AliRawReader* rawReader);
21f61e25 31 AliHMPIDRawStream();
32
d2e2f542 33 virtual ~AliHMPIDRawStream();
34
21f61e25 35 virtual void Reset();
36 virtual Bool_t Next();
56c73976 37 void InitVars(Int_t n);
38 void DelVars();
21f61e25 39
2ac899f2 40 static inline Int_t GetPad(Int_t ddl,Int_t row,Int_t dil,Int_t pad); //get absolute pad number
41 static inline Int_t GetFee(Int_t ddl,Int_t row); //get the FEE number
42 static Int_t GetNDDL() { return kNDDL;} //return the number of max # of DDLs
43 static Int_t GetNErrors() { return kSumErr;} //return the number of max # of Error Types
3c8e86a0 44
0cd503a3 45 Int_t GetNPads() const { return fNPads;} //Get number of pads present in the stream
46 Int_t* GetPadArray() const { return fPad;} //Get pad array from stream decoded
47 Int_t* GetChargeArray() const { return fCharge;} //Get the charge of the pads from dedcoded stream
48 Int_t* GetnDDLInStream() const { return fnDDLInStream;} //Get the DDL input check array
49 Int_t* GetnDDLOutStream() const { return fnDDLOutStream;} //Get the DDL output check array
56c73976 50 Int_t Pc ( Int_t ddl,Int_t row,Int_t dil,Int_t pad ) {return AliHMPIDParam::A2P(GetPad(ddl,row,dil,pad));} //PC position number
51 Int_t PadPcX ( Int_t ddl,Int_t row,Int_t dil,Int_t pad ) {return AliHMPIDParam::A2X(GetPad(ddl,row,dil,pad));} //pad pc x # 0..79
52 Int_t PadPcY ( Int_t ddl,Int_t row,Int_t dil,Int_t pad ) {return AliHMPIDParam::A2Y(GetPad(ddl,row,dil,pad));} //pad pc y # 0..47
3c8e86a0 53
a6e0ebfe 54 static inline const Char_t* GetErrName(Int_t eType);
3c8e86a0 55 inline Bool_t SetZeroSup (Bool_t isSup);
606697a8 56 inline Bool_t GetZeroSup()const;
57 inline Int_t GetErrors(Int_t ddl,Int_t eType)const; //Get errors and occurance
58 Int_t GetDDLNumber() const{ return fDDLNumber;} //return the number of DDL actually being decoded
59 UInt_t GetLDCNumber() const{ return fLDCNumber;} //return the number of LDC actually being decoded
60 UInt_t GetTimeStamp() const{ return fTimeStamp;} //return the time stamp of the event actually being decoded
3c8e86a0 61
cb9b108e 62 void SetTurbo(Bool_t isTurbo){fTurbo=isTurbo;} // Enable/Disable Turbo
63 Bool_t GetTurbo(){ return fTurbo;} // Enable Turbo
64 Bool_t Turbo(); // Read HMPID Raw data without error checks
fd8bfa30 65 Bool_t ReadHMPIDRawData(); // Read HMPID Raw data
56c73976 66 Bool_t ReadSegment(Int_t &cntSegment); // Read Segment
67 Bool_t ReadRow(Int_t &cntRow); // Read Row
68 Bool_t ReadDilogic(Int_t &cntDilogic); // Read Dilogic
fd8bfa30 69
56c73976 70 Bool_t CheckRow(UInt_t row); // Check Row
71 Bool_t CheckDilogic(UInt_t dilogic); // Check Dilogic
72 Bool_t CheckPad(UInt_t pad); // Check pad
73 Bool_t CheckEoE(Int_t &nDil); // Check EoE
74 Bool_t CheckRowMarker(); // Check RowMarker
75 Bool_t CheckSegment(); // Check Segment
76 void DumpData(Int_t nw); // Dump Data
77 void StorePosition(); //Debug purpose
fd8bfa30 78
56c73976 79// inline void Raw (UInt_t &w32,Int_t &ddl,Int_t &r,Int_t &d,Int_t &a); //digit->(w32,ddl,r,d,a)
80// inline void Raw (Int_t ddl,Int_t r,Int_t d,Int_t a); //raw->abs pad number
81// inline Bool_t Raw (UInt_t w32,Int_t ddl,AliRawReader *pRR); //(w32,ddl)->digit
2ac899f2 82
83 inline void WriteRaw (TObjArray *pDigLst ); //write as raw stream
84 inline void WriteRowMarker (AliFstream *ddl,UInt_t size); //write row marker in simulation
85 inline void WriteEoE (AliFstream *ddl,UInt_t row,UInt_t dil,UInt_t wordCnt); //write Enf Of Event word in simulation
86 inline void WriteSegMarker (AliFstream *ddl,UInt_t row, Int_t nwInSeg); //write Segment Marker word in simulation
87 inline void Write5FirmwareWords(AliFstream *ddl); //write the firmware control words in simulation
21f61e25 88
89// inline TClonesArray ReMap(TClonesArray *pDigIn);
fd8bfa30 90enum EDirection {kFwd,kBwd};
91
92enum Ebits {kbit0,kbit1 , kbit2, kbit3, kbit4, kbit5, kbit6, kbit7, kbit8,
93 kbit9 ,kbit10,kbit11,kbit12,kbit13,kbit14,kbit15,kbit16,
94 kbit17,kbit18,kbit19,kbit20,kbit21,kbit22,kbit23,kbit24,
95 kbit25,kbit26,kbit27,kbit28,kbit29,kbit30,kbit31,kbit32};
21f61e25 96
3c8e86a0 97 enum EHMPIDRawStreamError { kRawDataSizeErr = 0, kRowMarkerErr = 1, kWrongRowErr = 2, kWrongDilogicErr = 3,
98 kWrongPadErr = 4, kEoEFlagErr = 5, kEoESizeErr = 6, kEoEDILOGICErr = 7,
99 kEoERowErr = 8, kBadSegWordErr = 9, kWrongSegErr = 10, kRowMarkerSizeErr = 11,
0cd503a3 100 kPedQZero =12, kSumErr = 13 //This is always the last one, to retreive the number of errors
3c8e86a0 101 }; //Always check the updated list of names in the .cxx file for print-out!
102
103 enum {
21f61e25 104 kNRows = 24, // Number of rows (starting from 1 !)//was25
105 kNDILOGICAdd = 10, // Number of DILOGIC addresses in a row (starting from 1 !) //was11
106 kNPadAdd = 48, // Number of pad row
107 kNRowsPerSegment = 8, // Number of rows per segment
108 kNDDL = 14
d2e2f542 109 };
3c8e86a0 110 enum EHMPIDRawError {
21f61e25 111 kInvalidRawDataWord = 1
112 };
d2e2f542 113
21f61e25 114
d2e2f542 115 private :
116
117 AliHMPIDRawStream& operator = (const AliHMPIDRawStream& stream);
118 AliHMPIDRawStream(const AliHMPIDRawStream& stream);
119
3c8e86a0 120 Bool_t GetWord(Int_t n=1,EDirection dir=kFwd); // Get n-th word
fd8bfa30 121 UInt_t GetNextWord(); // Get next word
56c73976 122 Int_t fNPads; // counter of pads in one DDL
e96561a3 123 Int_t *fCharge; // Array for charge values for all channels in one DDL
124 Int_t *fPad; // Array for abs pad values for all channels in one DDL
fd8bfa30 125 Int_t fDDLNumber; // index of current DDL number
0cd503a3 126 Int_t *fnDDLInStream; // if the DDL is in the raw data
127 Int_t *fnDDLOutStream; // if the DDL is in the raw data
3c8e86a0 128 UInt_t fLDCNumber; // index of current LDC number
129 UInt_t fTimeStamp; // TimeStamp
e96561a3 130 AliRawReader *fRawReader; // object for reading the raw data
131 UChar_t *fData; // raw data
132 Int_t **fNumOfErr; // Store the numner of errors for a given error type and a given DDL
56c73976 133 Int_t fPosition; // current word
134 UInt_t fWord; // current position in fData
e96561a3 135 Bool_t fZeroSup; // set if zero suppression is applied
136 Int_t *fPos; // for debug purposes
0cd503a3 137 Int_t fiPos; // counter for debug
cb9b108e 138 Bool_t fTurbo; // kTRUE = Turbo decoding is called. DEFAULT: kFALSE = normal decoding is called
2ac899f2 139 ClassDef(AliHMPIDRawStream, 3) // base class for reading HMPID raw digits
d2e2f542 140};
21f61e25 141//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
56c73976 142 /*
21f61e25 143void AliHMPIDRawStream::Raw(UInt_t &w32,Int_t &ddl,Int_t &r,Int_t &d,Int_t &a)
144{
145// Convert raw stream word to raw word format
146// Arguments: w32,ddl,r,d,a where to write the results
147// Returns: none
148 Int_t y2a[6]={5,3,1,0,2,4};
149
150 ddl=2*Ch(ddl,r,d,a)+Pc(ddl,r,d,a)%2; //DDL# 0..13
151 Int_t tmp=1+Pc(ddl,r,d,a)/2*8+PadPcY(ddl,r,d,a)/6; r=(Pc(ddl,r,d,a)%2)? 25-tmp:tmp; //row r=1..24
152 d=1+PadPcX(ddl,r,d,a)/8; //DILOGIC# 1..10
153 a=y2a[PadPcY(ddl,r,d,a)%6]+6*(PadPcX(ddl,r,d,a)%8); //ADDRESS 0..47
154
155 w32=0;
56c73976 156 AliBitPacking::PackWord((fCharge[fNPads]>4095)?4095:(UInt_t)fCharge[fNPads],w32, 0,11); // 0000 0rrr rrdd ddaa aaaa qqqq qqqq qqqq Qdc bits (00..11) counts (0..4095)
21f61e25 157 //molnarl: Since in simulation the the charge can be > than 4095 but not in real life we need to protect. If fQ>4095 after packing we will get 0 for the charge!
158 assert(0<=a&&a<=47);AliBitPacking::PackWord( a ,w32,12,17); // 3322 2222 2222 1111 1111 1000 0000 0000 DILOGIC address bits (12..17) counts (0..47)
159 assert(1<=d&&d<=10);AliBitPacking::PackWord( d ,w32,18,21); // 1098 7654 3210 9876 5432 1098 7654 3210 DILOGIC number bits (18..21) counts (1..10)
160 assert(1<=r&&r<=24);AliBitPacking::PackWord( r ,w32,22,26); // Row number bits (22..26) counts (1..24)
161}
56c73976 162*/
21f61e25 163//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
56c73976 164 /*
165Int_t AliHMPIDRawStream::Raw(Int_t ddl,Int_t r,Int_t d,Int_t a)
21f61e25 166{
167 //Assign absolute pad ID based on ddl,row,dil,pad
168 //Arguments: DDL, row number, dilogic number, dilogic address(pad)
169 //Returns : nothing
170
171 assert(0<=ddl&&ddl<=13); assert(1<=r&&r<=24); assert(1<=d&&d<=10); assert(0<=a&&a<=47);
172 Int_t a2y[6]={3,2,4,1,5,0};//pady for a given address (for single DILOGIC chip)
173 Int_t ch=ddl/2;
174 Int_t tmp=(r-1)/8; Int_t pc=(ddl%2)? 5-2*tmp:2*tmp;
175 Int_t px=(d-1)*8+a/6;
176 tmp=(ddl%2)?(24-r):r-1; Int_t py=6*(tmp%8)+a2y[a%6];
56c73976 177 return AliHMPIDParam::Abs(ch,pc,px,py);
21f61e25 178}
179//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
180Bool_t AliHMPIDRawStream::Raw(UInt_t w32,Int_t ddl, AliRawReader *pRR)
181{
182// Converts a given raw data word to a digit
183// Arguments: w32 - 32 bits raw data word
184// ddl - DDL idx 0 1 2 3 4 ... 13
185// Returns: none
186 Int_t r = AliBitPacking::UnpackWord(w32,22,26); assert(1<=r&&r<=24); // Row number (1..24)
187 Int_t d = AliBitPacking::UnpackWord(w32,18,21); assert(1<=d&&d<=10); // 3322 2222 2222 1111 1111 1000 0000 0000 DILOGIC number (1..10)
188 Int_t a = AliBitPacking::UnpackWord(w32,12,17); assert(0<=a&&a<=47); // 1098 7654 3210 9876 5432 1098 7654 3210 DILOGIC address (0..47)
189 Int_t q = AliBitPacking::UnpackWord(w32, 0,11); assert(0<=q&&q<=4095); // 0000 0rrr rrdd ddaa aaaa qqqq qqqq qqqq Qdc (0..4095)
190 if (r<1 || r>24 || d<1 || d>10 || a<0 || a>47 || q<0 || q>4095) {
191 AliWarning(Form("Invalid raw data word %x",w32));
192 pRR->AddMajorErrorLog(kInvalidRawDataWord,Form("w=%x",w32));
193 return kFALSE;
194 }
195 Raw(ddl,r,d,a);
196 fCharge[ddl][r][d][a]=q;
197 return kTRUE;
198}
56c73976 199*/
21f61e25 200//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
201Int_t AliHMPIDRawStream::GetPad(Int_t ddl,Int_t row,Int_t dil,Int_t pad)
202{
203 // The method returns the absolute pad number or -1
204 // in case the charge from the channels
205 // has not been read or invalid arguments
206
2ac899f2 207
df8ff88a 208 if(ddl<0 || ddl >13 || row<1 || row >25 || dil<1 || dil >10 || pad<0 || pad >47 ) return -1;
21f61e25 209 Int_t a2y[6]={3,2,4,1,5,0}; //pady for a given padress (for single DILOGIC chip)
08801509 210 Int_t ch=ddl/2;
0cd503a3 211 Int_t tmp=(24-row)/8;
212 Int_t pc=(ddl%2)?5-2*tmp:2*tmp;
32e04cc3 213 Int_t px=(kNDILOGICAdd+1 - dil)*8-pad/6-1; //flip according to Paolo (2-9-2008)
0cd503a3 214
215 tmp=(ddl%2)?row-1:(24-row);
216 Int_t py=6*(tmp%8)+a2y[pad%6];
217
56c73976 218 return AliHMPIDParam::Abs(ch,pc,px,py);
21f61e25 219}//GetPad()
220//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
2ac899f2 221Int_t AliHMPIDRawStream::GetFee(Int_t ddl,Int_t row)
222{
223 // The method returns the FEE number or -1
224 // in case of invalid argument(s)
225
226 if(ddl<0 || ddl >13 || row<1 || row >25 ) return -1;
227 Int_t fee=-1, kLeft=0, kRight=0;
228 if(ddl%2==0) {kLeft=1;kRight=0;}
229 if(ddl%2!=0) {kLeft=0;kRight=1;}
230 if((kLeft==1 && row<=24 && row>=21) || (kRight==1 && row<=4 && row>=1)) fee=0; //calculation of FEE values based on Giacomos pedestal macro
231 if((kLeft==1 && row<=20 && row>=17) || (kRight==1 && row<=8 && row>=5)) fee=1;
232 if((kLeft==1 && row<=16 && row>=13) || (kRight==1 && row<=12 && row>=9)) fee=2;
233 if((kLeft==1 && row<=12 && row>=9) || (kRight==1 && row<=16 && row>=13))fee=3;
234 if((kLeft==1 && row<=8 && row>=5) || (kRight==1 && row<=20 && row>=17))fee=4;
235 if((kLeft==1 && row<=4 && row>=1) || (kRight==1 && row<=24 && row>=21))fee=5;
236 return fee;
237}
238//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
21f61e25 239void AliHMPIDRawStream::WriteRowMarker(AliFstream *ddl,UInt_t size)
240{
241 //Writes the row marker for real data and pedestal into the ddl stream
242 //Arguments: ddl stream and the size of the block of the given row, the siye is at least the 10 EoE words!
243 //Returns: nothing
244 UInt_t w32=0;
91f2bfe5 245 UInt_t marker=13992; //for pedestal=12968 == 32a8 for zero suppressed 36a8
21f61e25 246 AliBitPacking::PackWord(size, w32, 16,31); //number of roaw written after row marker (digits and EoE)
91f2bfe5 247 AliBitPacking::PackWord(marker,w32,0,15); //the marker word
21f61e25 248 ddl->WriteBuffer((char*)&w32,sizeof(w32));
249}
250//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
251void AliHMPIDRawStream::WriteEoE(AliFstream *ddl,UInt_t row,UInt_t dil,UInt_t wordCnt )
252{
253 //Writes the EoE word from real data and pedestals into the ddl stream
254 //Arguments: ddl stream, row number, dilogic number and the number of words before the EoE
255 //Retursns: nothing
256 UInt_t e=1;
257 UInt_t w32=0;
258 assert(1<=row&&row<=24); AliBitPacking::PackWord((UInt_t)row ,w32,22,26); // row number (1...24)
259 assert(1<=dil&&dil<=10); AliBitPacking::PackWord((UInt_t)dil ,w32,18,21); // DILOGIC number (1...10)
260 AliBitPacking::PackWord( e ,w32, 7,17); // event number -- not used
261 AliBitPacking::PackWord((UInt_t)wordCnt ,w32, 0, 6); // word counter (0...47) AliBitPacking::PackWord((UInt_t)1 ,w32,27,27); // bit 27 is always 1 by definition of EoE
262 AliBitPacking::PackWord((UInt_t)1 ,w32,27,27); // bit 27 is always 1 by definition of EoE
263 ddl->WriteBuffer((char*)&w32,sizeof(w32));
264}
265//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
91f2bfe5 266void AliHMPIDRawStream::WriteSegMarker(AliFstream *ddl,UInt_t row, Int_t nwInSeg)
21f61e25 267{
268 //Writes the segment marker (after 8 rows) into the ddl stream
91f2bfe5 269 //Arguments: ddl stream and the segment: row 8 -> 0x5800, row 16 -> 5801, row 24 -> 5802 for pedestal
21f61e25 270 //Retruns: nothing
271 UInt_t w32=0;
e96561a3 272
91f2bfe5 273 //Segment marker: 2736 == ab0
e96561a3 274 //AliBitPacking::PackWord((UInt_t)0 ,w32,27,31); //zero out the rest of the bits, since they are not needed
91f2bfe5 275 AliBitPacking::PackWord((UInt_t)2736 ,w32,20,31); //ab0 the segment marker word
276 AliBitPacking::PackWord((UInt_t)nwInSeg,w32, 8,19); //number of words in the segment
277 AliBitPacking::PackWord((UInt_t)(row/8),w32, 0, 7); //segment 0,1,2
278 ddl->WriteBuffer((char*)&w32,sizeof(w32));
e96561a3 279 //Printf("Segment word created is: %x",w32);
21f61e25 280}
281//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
2ac899f2 282void AliHMPIDRawStream::Write5FirmwareWords(AliFstream *ddl)
283{
284 //Before each DDL payload 5 words are written:
285 // 1.) Firmware version, for sim = 999
286 // 2.) Status and error bits from CD, for sim = 0
287 // 3.) # FEE RESET received , for sim = 0
288 // 4.) # TTC READY , for sim = 0
289 // 5.) Spare/Reserved , for sim = 0
290 //Returns: nothing
291 UInt_t w32=0;
292 AliBitPacking::PackWord((UInt_t)999,w32,0,31); ddl->WriteBuffer((char*)&w32,sizeof(w32));
293 AliBitPacking::PackWord((UInt_t) 10,w32,0,31); ddl->WriteBuffer((char*)&w32,sizeof(w32));
294 AliBitPacking::PackWord((UInt_t) 11,w32,0,31); ddl->WriteBuffer((char*)&w32,sizeof(w32));
295 AliBitPacking::PackWord((UInt_t) 12,w32,0,31); ddl->WriteBuffer((char*)&w32,sizeof(w32));
296 AliBitPacking::PackWord((UInt_t) 13,w32,0,31); ddl->WriteBuffer((char*)&w32,sizeof(w32));
297
298}
299//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
21f61e25 300Bool_t AliHMPIDRawStream::SetZeroSup (Bool_t isSup)
301{
302 //Prevision to turn OFF zero suppression
303 //Arguments: setter
304 //Returns: switch
305 fZeroSup=isSup;
306 return fZeroSup;
307}
308//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
606697a8 309Bool_t AliHMPIDRawStream::GetZeroSup()const
21f61e25 310{
311 if(fZeroSup==kTRUE) return kTRUE;
312 else return kFALSE;
313}
314//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
315void AliHMPIDRawStream::WriteRaw(TObjArray *pDigAll)
316{
317// Write a list of digits for a given chamber in raw data stream
318// Arguments: pDigAll- list of digits
319// Returns: none
320 Int_t ddl,r,d,a; //32 bits data word
321 Int_t cntLpad,cntRpad;
322 Int_t cntLrow,cntRrow;
323 Int_t cntL=0,cntR=0; //data words counters for DDLs
324 Int_t cntLeoe,cntReoe;
325 UInt_t posL,posR;
326 UInt_t cntLseg,cntRseg;
91f2bfe5 327 UInt_t cntwInLseg=0,cntwInRseg=0;
21f61e25 328 Int_t cntRdig=0,cntLdig=0;
329
330 UInt_t posLmarker,posRmarker;
331 Int_t digcnt=0;
332
333 Int_t isDigThere[14][25][11][48];
334
335 for(Int_t iCh=AliHMPIDParam::kMinCh;iCh<=AliHMPIDParam::kMaxCh;iCh++){//chambers loop
336 cntL=0;cntR=0;
337 for(Int_t iddl=0;iddl<14;iddl++){
338 for(Int_t irow=1;irow<=24;irow++){
339 for(Int_t idil=1;idil<=10;idil++){
340 for(Int_t ipad=0;ipad<48;ipad++){
341 isDigThere[iddl][irow][idil][ipad]=-1;
342 }
343 }
344 }
345 }
346
347 AliFstream* ddlL; //output streams, 2 per chamber
348 AliFstream* ddlR;
349
f7ee745b 350 AliRawDataHeaderSim header; header.SetAttribute(0); //empty DDL header
21f61e25 351
352 ddlL = new AliFstream(AliDAQ::DdlFileName("HMPID",2*iCh+1)); //left and right looking at the IP
353 ddlR = new AliFstream(AliDAQ::DdlFileName("HMPID",2*iCh)); //open both DDL of this chamber in parallel
354
355 ddlL->WriteBuffer((char*)&header,sizeof(header)); //write dummy header as place holder, actual
356 ddlR->WriteBuffer((char*)&header,sizeof(header)); //will be rewritten later when total size of DDL is known
357
358 UInt_t w32=0; //32 bits data word
359 digcnt=0;
360
2ac899f2 361 //added frimware control words
362 Write5FirmwareWords(ddlL); cntL+=5;
363 Write5FirmwareWords(ddlR); cntR+=5;
364
365
21f61e25 366 TClonesArray *pDigCh=(TClonesArray *)pDigAll->At(iCh); //list of digits for current chamber
91f2bfe5 367
21f61e25 368 for(Int_t iDig=0;iDig<pDigCh->GetEntriesFast();iDig++){//digits loop
369 AliHMPIDDigit *pDig1=(AliHMPIDDigit*)pDigCh->At(iDig);
0cd503a3 370 pDig1->Raw(w32,ddl,r,d,a); //??????????
21f61e25 371 isDigThere[ddl][r][d][a]=iDig;
372 }
373
374 for(Int_t row = 1; row <= AliHMPIDRawStream::kNRows; row++){ //AliHMPIDRawStream::kNRows=25!
375 cntRrow=0;cntLrow=0;cntLseg=0;cntRseg=0;//
376 cntLeoe=0;cntReoe=0;
91f2bfe5 377 posLmarker=ddlL->Tellp(); WriteRowMarker(ddlL,(UInt_t)1); cntL++; cntRrow++; cntwInRseg++;
378 posRmarker=ddlR->Tellp(); WriteRowMarker(ddlR,(UInt_t)1); cntR++; cntLrow++; cntwInLseg++;
21f61e25 379 for(Int_t dil = 1; dil <= AliHMPIDRawStream::kNDILOGICAdd; dil++){ //AliHMPIDRawStream::kNDILOGICAdd = 11!
380 cntLpad=0;cntRpad=0;
381 for(Int_t pad = 0; pad < AliHMPIDRawStream::kNPadAdd; pad++){ //AliHMPIDRawStream::kNPadAdd = 48
382 for ( Int_t iddl=2*iCh; iddl<=2*iCh+1;iddl++){
383 if (isDigThere[iddl][row][dil][pad]!=-1) {
384 AliHMPIDDigit *pDig=(AliHMPIDDigit*)pDigCh->At(isDigThere[iddl][row][dil][pad]);
385 pDig->Raw(w32,ddl,r,d,a);
386 if(pDig->Q() < 0 ) continue; //We can turn of the zero sup for pedestal simulation
3c8e86a0 387 if(ddl%2){ //write raw digit selecting on DDL
91f2bfe5 388 ddlL->WriteBuffer((char*)&w32,sizeof(w32)); cntL++; cntLpad++; cntLrow++; cntLdig++; cntwInLseg++;//Printf(" WL: %x isDig: %d",w32,isDigThere[iddl][row][dil][pad]);
21f61e25 389 }else{
91f2bfe5 390 ddlR->WriteBuffer((char*)&w32,sizeof(w32)); cntR++; cntRpad++; cntRrow++; cntRdig++;cntwInRseg++;//Printf(" WR: %x isDig: %d",w32,isDigThere[iddl][row][dil][pad]);
21f61e25 391 }
392 }//ddl
393 }//isDig
394 }//pad
91f2bfe5 395 WriteEoE(ddlL,row,dil,cntLpad); cntL++; cntLrow++; cntLeoe++; cntwInLseg++; //molnarl: write EoE markers
396 WriteEoE(ddlR,row,dil,cntRpad); cntR++; cntRrow++; cntReoe++; cntwInRseg++;
21f61e25 397 }//dil
398 if(row%8==0){
91f2bfe5 399 WriteSegMarker(ddlL,row,cntwInLseg); cntL++; cntLseg++; cntwInLseg=0;
400 WriteSegMarker(ddlR,row,cntwInRseg); cntR++; cntRseg++; cntwInRseg=0;
21f61e25 401 }
402 posL=ddlL->Tellp(); ddlL->Seekp(posLmarker); WriteRowMarker(ddlL,(UInt_t)(cntLrow-1)); ddlL->Seekp(posL); //find the marker position write and go back to the actual position to continue writing
403 posR=ddlR->Tellp(); ddlR->Seekp(posRmarker); WriteRowMarker(ddlR,(UInt_t)(cntRrow-1)); ddlR->Seekp(posR);
404 }//row
405 header.fSize=sizeof(header)+cntL*sizeof(w32); ddlL->Seekp(0); ddlL->WriteBuffer((char*)&header,sizeof(header)); delete ddlL; //rewrite header with size set to
406 header.fSize=sizeof(header)+cntR*sizeof(w32); ddlR->Seekp(0); ddlR->WriteBuffer((char*)&header,sizeof(header)); delete ddlR; //number of bytes and close file
407
408 //Printf("In Ch %d # digits written to LDD %d RDDL %d",iCh,cntLdig,cntRdig);
409
410 }//chambers loop
411}//WriteRaw()
412//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
606697a8 413Int_t AliHMPIDRawStream::GetErrors(Int_t ddl,Int_t eType)const
843bde9a 414{
415// Return the number of errors for a given error tye during raw data reading
416// Arguments: errorType
3c8e86a0 417// Returns: error or -999 if error Type does not exist
843bde9a 418
3c8e86a0 419 if(eType < 0 || eType> kSumErr || ddl < 0 || ddl > kNDDL-1 ) return -999;
a66fe5e5 420 else return fNumOfErr[ddl][eType];
843bde9a 421} //GetErrors()
422//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
a6e0ebfe 423const Char_t* AliHMPIDRawStream::GetErrName(Int_t eType)
3c8e86a0 424{
425 // Return the name of the error for a given error tye during raw data reading
426 // Arguments: errorType
427 // Returns: error or -999 if error Type does not exist
a6e0ebfe 428 const Char_t *eName[]={ "kRawDataSizeErr", "kRowMarkerErr" , "kWrongRowErr" , "kWrongDilogicErr",
3c8e86a0 429 "kWrongPadErr" , "kEoEFlagErr" , "kEoESizeErr" , "kEoEDILOGICErr",
430 "kEoERowErr" , "kBadSegWordErr", "kWrongSegErr" , "kRowMarkerSizeErr",
0cd503a3 431 "kPedQZero" , "kSumErr" };
a6e0ebfe 432 const Char_t *eNoErr="NotDefinedErrorType";
3c8e86a0 433 if(eType<0 || eType>kSumErr) return eNoErr;
434 else return eName[eType];
435}//GetErrName()
436//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
437
438
439
d2e2f542 440#endif