]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSDDLRawData.cxx
reading RAW without data
[u/mrichter/AliRoot.git] / ITS / AliITSDDLRawData.cxx
CommitLineData
2e9f335b 1/**************************************************************************
2 * Copyright(c) 1998-2003, 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 **************************************************************************/
9f992f70 15
30c1018e 16/* $Id$ */
a79660fb 17
9f992f70 18
a79660fb 19//This class contains all the necessary methods to create the Raw Data
20//files (slides) for the ITS data challenges for:
21//SPD
22//SDD
23//SSD
2e9f335b 24
25#include <stdlib.h>
5dfa68c5 26//#include <Riostream.h>
2e9f335b 27#include <TClonesArray.h>
28#include <TTree.h>
7d62fb64 29#include "AliITSdigit.h"
2e9f335b 30#include "AliITSDDLRawData.h"
f7ee745b 31#include "AliRawDataHeaderSim.h"
0421c3d1 32#include "AliITSRawStreamSPD.h"
33#include "AliITSRawStreamSDD.h"
979b5a5f 34#include "AliITSDDLModuleMapSDD.h"
0421c3d1 35#include "AliITSRawStreamSSD.h"
3f917533 36#include "AliITSIntMap.h"
113c12f1 37#include "AliBitPacking.h"
362c9d61 38#include "AliDAQ.h"
08f92f14 39#include "AliFstream.h"
2e9f335b 40
41ClassImp(AliITSDDLRawData)
42
43////////////////////////////////////////////////////////////////////////////////////////
e56160b8 44AliITSDDLRawData::AliITSDDLRawData():
45fVerbose(0),
46fIndex(-1),
47fHalfStaveModule(-1){
a79660fb 48 //Default constructor
e56160b8 49
2e9f335b 50}
51
52////////////////////////////////////////////////////////////////////////////////////////
53
ac74f489 54AliITSDDLRawData::AliITSDDLRawData(const AliITSDDLRawData &source) :
e56160b8 55 TObject(source),
56fVerbose(source.fVerbose),
57fIndex(source.fIndex),
58fHalfStaveModule(source.fHalfStaveModule){
a79660fb 59 //Copy Constructor
2e9f335b 60}
61
62////////////////////////////////////////////////////////////////////////////////////////
63
64AliITSDDLRawData& AliITSDDLRawData::operator=(const AliITSDDLRawData &source){
65 //Assigment operator
66 this->fIndex=source.fIndex;
67 this->fHalfStaveModule=source.fHalfStaveModule;
9f992f70 68 this->fVerbose=source.fVerbose;
2e9f335b 69 return *this;
70}
71
72////////////////////////////////////////////////////////////////////////////////////////
73//STRIP
74//
75
0b3c7dfc 76void AliITSDDLRawData::GetDigitsSSD(TClonesArray *ITSdigits,Int_t mod,Int_t modR,Int_t ddl,UInt_t *buf){
a79660fb 77 //This method packs the SSD digits in a proper 32 bits structure
532a132e 78 // Revised by Enrico Fragiacomo
2e9f335b 79 Int_t ix;
80 Int_t iz;
81 Int_t is;
0b3c7dfc 82 UInt_t word;
83 UInt_t baseWord;
2e9f335b 84 Int_t ndigits = ITSdigits->GetEntries();
85 AliITSdigit *digs;
9f992f70 86 ofstream ftxt;
2e9f335b 87 if(ndigits){
9f992f70 88 if (fVerbose==2){
89 ftxt.open("SSDdigits.txt",ios::app);
90 }
2e9f335b 91 for (Int_t digit=0;digit<ndigits;digit++) {
92 digs = (AliITSdigit*)ITSdigits->UncheckedAt(digit);
532a132e 93 iz=digs->GetCoord1(); // If iz==0, O side and if iz=1 N side
94 ix=digs->GetCoord2(); // Strip Number
7f1a504b 95 is=digs->GetCompressedSignal(); // ADC Signal
2e9f335b 96 // cout<<" Module:"<<mod-500<<" N/P side:"<<iz<<" Strip Number:"<<ix<<" Amplidute:"<<is-1<<endl;
532a132e 97 if(is<0) is = 4096 + is;
9f992f70 98 if (fVerbose==2)
99 ftxt<<"DDL:"<<ddl<<" Mod: "<<modR<<" N/P: "<<iz<<" Strip: "<<ix<<" Value: "<<is-1<<endl;
532a132e 100
a79660fb 101 baseWord=0;
532a132e 102
103 word=is;
104 AliBitPacking::PackWord(word,baseWord,0,11);//ADC data
105
106 word = (iz==0) ? ix : 1535-ix ; // on N-side 1535-768 -> 0-767
107 AliBitPacking::PackWord(word,baseWord,12,22);//Strip Number
108
109 word = mod%12; // ADC-number (12 ADCs per AD module)
110 word += ( word<6 ) ? 0 : 2; // ADC range 0-5 and 8-13
111 AliBitPacking::PackWord(word,baseWord,24,27);//ADC Channel
112
113 word = mod/12+1; // AD-number (AD module index ranges 1-9)
114 AliBitPacking::PackWord(word,baseWord,28,31);//AD slot
2e9f335b 115 fIndex++;
a79660fb 116 buf[fIndex]=baseWord;
2e9f335b 117 }//end for
118 }//end if
9f992f70 119 if (fVerbose==2)
120 ftxt.close();
2e9f335b 121 return;
122}//end GetDigitsSSD
123
124////////////////////////////////////////////////////////////////////////////////////////
125//Silicon Drift Detector
126//
127
0b3c7dfc 128void AliITSDDLRawData::GetDigitsSDD(TClonesArray *ITSdigits,Int_t mod,Int_t modR,Int_t ddl,UInt_t *buf){
a97b3678 129 //This method packs the SDD digits in a proper 32 bits structure
2e9f335b 130 Int_t ix;
131 Int_t iz;
132 Int_t is;
a97b3678 133 UInt_t word=0;
134 UInt_t baseWord=0;
2e9f335b 135 Int_t ndigits = ITSdigits->GetEntries();
136 AliITSdigit *digs;
9f992f70 137 ofstream ftxt;
a97b3678 138 Int_t digarr[512][256];
139 for(Int_t i=0;i<512;i++){
140 for(Int_t j=0;j<256;j++){
141 digarr[i][j]=0;
142 }
143 }
144 //word to select the 12 carlos for the 12 modules
14dceddf 145 UInt_t carlosid=0x30000000+mod;
a97b3678 146
147 fIndex++;
148 buf[fIndex]=carlosid;
149 Int_t first=0;
150 Int_t last=0;
151 Int_t diff=0;
152 Int_t nbit=0;
153 UInt_t word2=0;
154 Bool_t flag = kFALSE;
155 baseWord=0;
156 Int_t bitinfo1[4] = {3,8,3,7}; //vector with info on bit for timebin info
157 Int_t wordinfo1[4]= {0,0,0,0}; //vector with word info for timebin info
158 Int_t bitinfo2[2] = {3,18}; //vector with info on bit for EOR (end of row) info
159 Int_t wordinfo2[3]= {1,65593}; //vector with word info for anode info
160
161 /* for time bin info: word n bits meaning
162 0 3 next info is timebin
163 8 3 next word is 8 bit long
164 tb value 8 timebin value
165 n (2->7) 3 next info is n bit long
166 signal n signal value
167
168 for anode info: 1 3 next 18 bits are for EOR
169 increments the anode value
170
171 EOR 18 error codes + other info
172 */
173
2e9f335b 174 if(ndigits){
9f992f70 175 if (fVerbose==2)
176 ftxt.open("SDDdigits.txt",ios::app);
2e9f335b 177 for (Int_t digit=0;digit<ndigits;digit++) {
178 digs = (AliITSdigit*)ITSdigits->UncheckedAt(digit);
ecee53fc 179 iz=digs->GetCoord1(); // Anode
180 ix=digs->GetCoord2(); // Time
7f1a504b 181 is=digs->GetCompressedSignal(); // ADC Signal
a97b3678 182 digarr[iz][ix]=is;
14dceddf 183 if (fVerbose==2)
9f992f70 184 ftxt<<"DDL:"<<ddl<<" MID:"<<modR<<" An:"<<iz<<" T:"<<ix<<" A:"<<is<<endl;
0421c3d1 185 if (is>255){Error("GetDigitsSDD", "bits words is needed)!!!");}
a97b3678 186 }
2e9f335b 187
a97b3678 188 for(Int_t anode=0;anode<512;anode++){
14dceddf 189 if(flag){
a97b3678 190 last = first+diff-1;
191 AliBitPacking::PackWord(word2,baseWord,first,last);
192 flag = kFALSE;
193 first = last+1;
194 diff=0;
195 }
a97b3678 196 if(anode == 256){
197 last = 0;
198 first = 0;
199 flag = kFALSE;
200 diff = 0;
201 word2=0;
a97b3678 202 }
203
204 for(Int_t tb=0;tb<256;tb++){
205 if(digarr[anode][tb]!=0){
206 if(flag){
207 last = first+diff-1;
208 AliBitPacking::PackWord(word2,baseWord,first,last);
209 flag = kFALSE;
210 first = last+1;
211 diff=0;
212 }
213 wordinfo1[1] = tb;
214 //non lossy compression as it is done in Carlos
215 //(data are already 10to8bit compressed by AMBRA
216
217 /* if value < 8 value = value - (1 << 2) (word is 2 bit long)
218 if value < 16 value = value - (1 << 3) (word is 3 bit long)
219 if value < 32 value = value - (1 << 4) (word is 4 bit long)
220 if value < 64 value = value - (1 << 5) (word is 5 bit long)
221 if value <128 value = value - (1 << 6) (word is 6 bit long)
222 if value >=128value = value - (1 << 7) (word is 7 bit long)
223
224 */
225 if(digarr[anode][tb]<8){
226 bitinfo1[3] = 2;
227 wordinfo1[2] = 2;
228 wordinfo1[3] = digarr[anode][tb]-(1 << bitinfo1[3]);
229 }
230 if(digarr[anode][tb]>=8 && digarr[anode][tb]<16){
231 bitinfo1[3] = 3;
232 wordinfo1[2] = 3;
233 wordinfo1[3] = digarr[anode][tb]-(1 << bitinfo1[3]);
234 }
235 if(digarr[anode][tb]>=16 && digarr[anode][tb]<32){
236 bitinfo1[3] = 4;
237 wordinfo1[2] = 4;
238 wordinfo1[3] = digarr[anode][tb]-(1 << bitinfo1[3]);
239 }
240 if(digarr[anode][tb]>=32 && digarr[anode][tb]<64){
241 bitinfo1[3] = 5;
242 wordinfo1[2] = 5;
243 wordinfo1[3] = digarr[anode][tb]-(1 << bitinfo1[3]);
244 }
245 if(digarr[anode][tb]>=64 && digarr[anode][tb]<128){
246 bitinfo1[3] = 6;
247 wordinfo1[2] = 6;
248 wordinfo1[3] = digarr[anode][tb]-(1 << bitinfo1[3]);
249 }
250 if(digarr[anode][tb]>=128){
251 bitinfo1[3] = 7;
252 wordinfo1[2] = 7;
253 wordinfo1[3] = digarr[anode][tb]-(1 << bitinfo1[3]);
254 }
255
256 for(Int_t ie=0;ie<4;ie++){
257
258 if(flag){
259 last = first+diff-1;
260 AliBitPacking::PackWord(word2,baseWord,first,last);
261 flag = kFALSE;
262 first = last+1;
263 diff=0;
264 }
265 last = first+bitinfo1[ie]-1;
266 if(first < 30 && last < 30){
267 AliBitPacking::PackWord(wordinfo1[ie],baseWord,first,last);
268 first = last+1;
269 }
270 else{
271 if(first<=29){
272 UInt_t w = AliBitPacking::UnpackWord(wordinfo1[ie],0,29-first);
273 AliBitPacking::PackWord(w,baseWord,first,29);
274 Int_t lb = 29-first+1;
275 diff = bitinfo1[ie]-lb;
276 word2 = AliBitPacking::UnpackWord(wordinfo1[ie],lb,lb+diff-1);
277 flag = kTRUE;
278 if(anode<256) word = 2;//channel 0 of carlos
279 else word = 3; //channel 1 of carlos
280 AliBitPacking::PackWord(word,baseWord,30,31);
281 fIndex++;
282 buf[fIndex]=baseWord;
283 first=0;
284 last = 0;
285 baseWord=0;
286 word = 0;
287 }
288 else{
289 word2 = wordinfo1[ie];
290 diff = bitinfo1[ie];
291 flag = kTRUE;
292 if(anode<256) word = 2; //channel 0 of carlos
293 else word = 3; //channel 1 of carlos
294 AliBitPacking::PackWord(word,baseWord,30,31);
295 fIndex++;
296 buf[fIndex]=baseWord;
297 first=0;
298 last=0;
299 baseWord=0;
300 word = 0;
301 }
302 }
303 }
304
305 }//END IF
306
307 }//end loop on tb
308
309 for(Int_t i=0;i<2;i++){
310 if(flag){
311 last = first+diff-1;
312 AliBitPacking::PackWord(word2,baseWord,first,last);
313 flag = kFALSE;
314 first = last+1;
315 diff=0;
316 }
317
318 word = wordinfo2[i];
319 nbit = bitinfo2[i];
320 last = first+nbit-1;
321 if(first < 30 && last < 30){
322 AliBitPacking::PackWord(word,baseWord,first,last); //3 bit code =1 -> next 18 bits for EOR
323 first = last+1;
324 }
325
326 else{
327 if(first<=29){
328 UInt_t w = AliBitPacking::UnpackWord(word,0,29-first);
329 AliBitPacking::PackWord(w,baseWord,first,29);
330 Int_t lb = 29-first+1;
331 diff = nbit-lb;
332 word2 = AliBitPacking::UnpackWord(word,lb,lb+diff-1);
333 flag = kTRUE;
334 if(anode<256) word = 2;
335 else word = 3;
336 AliBitPacking::PackWord(word,baseWord,30,31);
337 fIndex++;
338 buf[fIndex]=baseWord;
339 first=0;
340 last = 0;
341 baseWord=0;
342 if(anode==255){
343 flag=kFALSE;
344 word2=0;
345 }
346 }
347 else{
348 word2 = word;
349 diff = nbit;
350 flag = kTRUE;
351 if(anode<256) word = 2;
352 else word = 3;
353 AliBitPacking::PackWord(word,baseWord,30,31);
354 fIndex++;
355 buf[fIndex]=baseWord;
356 first=0;
357 last=0;
358 baseWord=0;
359 if(anode==255){
360 flag=kFALSE;
361 word2=0;
362 }
363 }
364 }
365 }
366 } //end for
367
368 }
9f992f70 369 if(fVerbose==2)
370 ftxt.close();
2e9f335b 371 return;
372}//end GetDigitsSDD
373
374////////////////////////////////////////////////////////////////////////////////////////
375//PIXEL
376//
377
0b3c7dfc 378void AliITSDDLRawData::GetDigitsSPD(TClonesArray *ITSdigits,Int_t mod,Int_t ddl, UInt_t *buf){
9f992f70 379 //This method packs the SPD digits in a proper 32 structure
380 //Since data is zero suppressed,the coordinates for the chip having zero digits
381 //doesn't get listed in the galice.root file. However the SPD format requires
382 //the empty chip to be written with chip header and chip trailer.
3f917533 383
384 Int_t chipLow = AliITSRawStreamSPD::GetOnlineChipFromOffline(mod,0);
385 Int_t chipHigh = AliITSRawStreamSPD::GetOnlineChipFromOffline(mod,159);
386 if (chipLow>chipHigh) {chipLow -= 4; chipHigh += 4;}
387 UInt_t hs = AliITSRawStreamSPD::GetOnlineHSFromOffline(mod);
388
389 // create int map to later hold all digits sorted
390 AliITSIntMap* digMap = new AliITSIntMap();
391
0b3c7dfc 392 UInt_t baseWord=0;
a79660fb 393 Int_t chipHitCount=0; //Number of Hit in the current chip
394 Int_t previousChip=-1; //Previuos chip respect to the actual aone
2e9f335b 395 Int_t ndigits = ITSdigits->GetEntries(); //number of digits in the current module
396 //cout<<" Number of digits in the current module:"<<ndigits<<" module:"<<mod<<endl;
3f917533 397
2e9f335b 398 AliITSdigit *digs;
9f992f70 399 ofstream ftxt;
2e9f335b 400 if(ndigits){
401 //loop over digits
9f992f70 402 if (fVerbose==2)
403 ftxt.open("SPDdigits.txt",ios::app);
2e9f335b 404 for (Int_t digit=0;digit<ndigits;digit++){
405 digs = (AliITSdigit*)ITSdigits->UncheckedAt(digit);
406 /*---------------------------------------------------------------------------
407 * Each module contains 5 read out chips of 256 rows and 32 columns.
3f917533 408 * So, the cell number in Z direction varies from 0 to 159.
2e9f335b 409 * ---------------------------------------------------------------------*/
3f917533 410 Int_t iz=digs->GetCoord1(); // Cell number in Z direction
411 Int_t ix=digs->GetCoord2(); // Cell number in X direction
412
9f992f70 413 if(fVerbose==2)
414 ftxt<<"DDL:"<<ddl<<" Mod:"<<mod<<" Row:"<<ix<<" Col:"<<iz<<endl;
3f917533 415 UInt_t dummyDDL,dummyHS,chip,col,row;
416 AliITSRawStreamSPD::OfflineToOnline(mod,iz,ix,dummyDDL,dummyHS,chip,col,row);
417
418 // insert digit into map...
419 // (reverse order of cols and rows as in real raw data)
420 digMap->Insert(chip*256*32+(32-col)*256+(256-row),row);
421 }
422 }
423
424 UInt_t nrHits = digMap->GetNrEntries();
425 if (nrHits>0) {
426 Int_t chip = 0;
427 for (UInt_t nHit=0; nHit<nrHits; nHit++) {
428 Int_t key = digMap->GetKeyIndex(nHit);
429 chip = key/(256*32);
430 Int_t col = 32 - (key%(256*32))/256;
431 Int_t row = digMap->GetValIndex(nHit);
432
433 if(previousChip==-1) { // first hit
2e9f335b 434 //loop over chip without digits
435 //Even if there aren't digits for a given chip
436 //the chip header and the chip trailer are stored
3f917533 437 for (Int_t i=chipLow; i<chip; i++) {
438 WriteChipHeader(i,hs,baseWord);
439 WriteChipTrailer(buf,0,baseWord);
440 }
441 WriteChipHeader(chip,hs,baseWord);
442 WriteHit(buf,row,col,baseWord);
a79660fb 443 chipHitCount++;
3f917533 444 previousChip=chip;
2e9f335b 445 }//end if
446 else{
3f917533 447 if(previousChip!=(Int_t)chip) {
9f992f70 448 WriteChipTrailer(buf,chipHitCount,baseWord);
449 chipHitCount=0;
3f917533 450 for(Int_t i=previousChip+1; i<chip; i++) {
451 WriteChipHeader(i,hs,baseWord);
a79660fb 452 WriteChipTrailer(buf,0,baseWord);
2e9f335b 453 }//end for
3f917533 454 WriteChipHeader(chip,hs,baseWord);
455 previousChip=chip;
2e9f335b 456 }//end if
9f992f70 457 chipHitCount++;
3f917533 458 WriteHit(buf,row,col,baseWord);
2e9f335b 459 }//end else
460 }//end for
461 //Even if there aren't digits for a given chip
462 //the chip header and the chip trailer are stored
a79660fb 463 WriteChipTrailer(buf,chipHitCount,baseWord);
9f992f70 464 chipHitCount=0;
3f917533 465 for(Int_t i=chip+1;i<=chipHigh;i++){
466 WriteChipHeader(i,hs,baseWord);
a79660fb 467 WriteChipTrailer(buf,0,baseWord);
2e9f335b 468 }//end for
469 }//end if
470 else{
471 //In this module there aren't digits but
3f917533 472 //the chip header and chip trailer are stored anyway
473 for(Int_t i=chipLow; i<=chipHigh; i++){
474 WriteChipHeader(i,hs,baseWord);
475 WriteChipTrailer(buf,0,baseWord);
2e9f335b 476 }//end for
477 }//end else
3f917533 478
479 delete digMap;
480
9f992f70 481 if(fVerbose==2)
482 ftxt.close();
2e9f335b 483 return;
484}//end GetDigitsSPD
485
2e9f335b 486/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
487
0421c3d1 488Int_t AliITSDDLRawData::RawDataSPD(TBranch* branch){
a79660fb 489 //This method creates the Raw data files for SPD detectors
a79660fb 490 const Int_t kSize=21000; //256*32*5=40960 max number of digits per module
0b3c7dfc 491 UInt_t buf[kSize]; //One buffer cell can contain 2 digits
2e9f335b 492 fIndex=-1;
2e9f335b 493
0421c3d1 494 TClonesArray*& digits = * (TClonesArray**) branch->GetAddress();
2e9f335b 495 char fileName[15];
08f92f14 496 AliFstream* outfile; // logical name of the output file
f7ee745b 497 AliRawDataHeaderSim header;
0421c3d1 498
499 //loop over DDLs
362c9d61 500 for(Int_t i=0;i<AliDAQ::NumberOfDdls("ITSSPD");i++){
501 strcpy(fileName,AliDAQ::DdlFileName("ITSSPD",i)); //The name of the output file.
08f92f14 502 outfile = new AliFstream(fileName);
0421c3d1 503 //write Dummy DATA HEADER
08f92f14 504 UInt_t dataHeaderPosition=outfile->Tellp();
505 outfile->WriteBuffer((char*)(&header),sizeof(header));
2e9f335b 506 //Loops over Modules of a particular DDL
0421c3d1 507 for (Int_t mod=0; mod<AliITSRawStreamSPD::kModulesPerDDL; mod++){
508 Int_t moduleNumber = AliITSRawStreamSPD::GetModuleNumber(i, mod);
509 digits->Clear();
510 branch->GetEvent(moduleNumber);
2e9f335b 511 //For each Module, buf contains the array of data words in Binary format
512 //fIndex gives the number of 32 bits words in the buffer for each module
a643f6be 513 GetDigitsSPD(digits,mod,i,buf);
08f92f14 514 outfile->WriteBuffer((char *)buf,((fIndex+1)*sizeof(UInt_t)));
2e9f335b 515 for(Int_t i=0;i<(fIndex+1);i++){
516 buf[i]=0;
517 }//end for
518 fIndex=-1;
519 }//end for
520
0421c3d1 521 //Write REAL DATA HEADER
08f92f14 522 UInt_t currentFilePosition=outfile->Tellp();
523 outfile->Seekp(dataHeaderPosition);
0421c3d1 524 header.fSize=currentFilePosition-dataHeaderPosition;
08f92f14 525 outfile->WriteBuffer((char*)(&header),sizeof(header));
526 delete outfile;
2e9f335b 527 }//end for
0421c3d1 528
2e9f335b 529 return 0;
530}
531
532/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
533
0421c3d1 534Int_t AliITSDDLRawData::RawDataSSD(TBranch* branch){
a97b3678 535
532a132e 536 //This method creates the Raw data files for SSD detectors
a79660fb 537 const Int_t kSize=1536;//768*2 Number of stripe * number of sides(N and P)
0b3c7dfc 538 UInt_t buf[kSize];
2e9f335b 539 fIndex=-1;
0421c3d1 540
541 TClonesArray*& digits = * (TClonesArray**) branch->GetAddress();
2e9f335b 542 char fileName[15];
08f92f14 543 AliFstream* outfile; // logical name of the output file
f7ee745b 544 AliRawDataHeaderSim header;
2e9f335b 545
0421c3d1 546 //loop over DDLs
362c9d61 547 for(Int_t i=0;i<AliDAQ::NumberOfDdls("ITSSSD");i++){
548 strcpy(fileName,AliDAQ::DdlFileName("ITSSSD",i)); //The name of the output file.
08f92f14 549 outfile = new AliFstream(fileName);
0421c3d1 550 //write Dummy DATA HEADER
08f92f14 551 UInt_t dataHeaderPosition=outfile->Tellp();
552 outfile->WriteBuffer((char*)(&header),sizeof(header));
2e9f335b 553
554 //Loops over Modules of a particular DDL
0421c3d1 555 for (Int_t mod=0; mod<AliITSRawStreamSSD::kModulesPerDDL; mod++){
556 Int_t moduleNumber = AliITSRawStreamSSD::GetModuleNumber(i, mod);
557 if(moduleNumber!=-1){
558 digits->Clear();
559 branch->GetEvent(moduleNumber);
2e9f335b 560 //For each Module, buf contains the array of data words in Binary format
561 //fIndex gives the number of 32 bits words in the buffer for each module
0421c3d1 562 GetDigitsSSD(digits,mod,moduleNumber,i,buf);
08f92f14 563 outfile->WriteBuffer((char *)buf,((fIndex+1)*sizeof(UInt_t)));
2e9f335b 564 fIndex=-1;
565 }//end if
566 }//end for
0421c3d1 567
568 //Write REAL DATA HEADER
08f92f14 569 UInt_t currentFilePosition=outfile->Tellp();
570 outfile->Seekp(dataHeaderPosition);
0421c3d1 571 header.fSize=currentFilePosition-dataHeaderPosition;
572 header.SetAttribute(0); // valid data
08f92f14 573 outfile->WriteBuffer((char*)(&header),sizeof(header));
574 delete outfile;
2e9f335b 575 }//end for
0421c3d1 576
2e9f335b 577 return 0;
578}
579
580/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
581
979b5a5f 582Int_t AliITSDDLRawData::RawDataSDD(TBranch* branch, AliITSDDLModuleMapSDD* ddlsdd){
a79660fb 583 //This method creates the Raw data files for SDD detectors
a79660fb 584 const Int_t kSize=131072; //256*512
0b3c7dfc 585 UInt_t buf[kSize];
2e9f335b 586 fIndex=-1;
2e9f335b 587
0421c3d1 588 TClonesArray*& digits = * (TClonesArray**) branch->GetAddress();
589 char fileName[15];
08f92f14 590 AliFstream* outfile; // logical name of the output file
f7ee745b 591 AliRawDataHeaderSim header;
5dfa68c5 592 UInt_t skippedword, carlosFooterWord,fifoFooterWord,jitterWord;
593 Bool_t retcode;
594 retcode = AliBitPacking::PackWord(0x3FFFFFFF,carlosFooterWord,0,31);
595 retcode = AliBitPacking::PackWord(0x3F1F1F1F,fifoFooterWord,0,31);
14dceddf 596 retcode = AliBitPacking::PackWord(0x7F00000E,jitterWord,0,31);
0421c3d1 597
598 //loop over DDLs
362c9d61 599 for(Int_t i=0;i<AliDAQ::NumberOfDdls("ITSSDD");i++){
600 strcpy(fileName,AliDAQ::DdlFileName("ITSSDD",i)); //The name of the output file.
08f92f14 601 outfile = new AliFstream(fileName);
0421c3d1 602 //write Dummy DATA HEADER
08f92f14 603 UInt_t dataHeaderPosition=outfile->Tellp();
604 outfile->WriteBuffer((char*)(&header),sizeof(header));
0421c3d1 605
5dfa68c5 606
8345a1cf 607 //first 1 "dummy" word to be skipped
608 retcode = AliBitPacking::PackWord(0xFFFFFFFF,skippedword,0,31);
609 outfile->WriteBuffer((char*)(&skippedword),sizeof(skippedword));
610
2e9f335b 611 //Loops over Modules of a particular DDL
0421c3d1 612 for (Int_t mod=0; mod<AliITSRawStreamSDD::kModulesPerDDL; mod++){
979b5a5f 613 Int_t moduleNumber = ddlsdd->GetModuleNumber(i, mod);
0421c3d1 614 if(moduleNumber!=-1){
615 digits->Clear();
616 branch->GetEvent(moduleNumber);
a97b3678 617
2e9f335b 618 //For each Module, buf contains the array of data words in Binary format
619 //fIndex gives the number of 32 bits words in the buffer for each module
a79660fb 620 // cout<<"MODULE NUMBER:"<<mapSDD[i][mod]<<endl;
0421c3d1 621 GetDigitsSDD(digits,mod,moduleNumber,i,buf);
08f92f14 622 outfile->WriteBuffer((char *)buf,((fIndex+1)*sizeof(UInt_t)));
5dfa68c5 623 for(Int_t iw=0;iw<3;iw++) outfile->WriteBuffer((char*)(&carlosFooterWord),sizeof(carlosFooterWord));
2e9f335b 624 fIndex=-1;
625 }//end if
626 }//end for
5dfa68c5 627 // 12 words with FIFO footers (=4 FIFO x 3 3F1F1F1F words per DDL)
628 for(Int_t iw=0;iw<12;iw++) outfile->WriteBuffer((char*)(&fifoFooterWord),sizeof(fifoFooterWord));
629
630 outfile->WriteBuffer((char*)(&jitterWord),sizeof(jitterWord));
2e9f335b 631
0421c3d1 632 //Write REAL DATA HEADER
08f92f14 633 UInt_t currentFilePosition=outfile->Tellp();
634 outfile->Seekp(dataHeaderPosition);
0421c3d1 635 header.fSize=currentFilePosition-dataHeaderPosition;
636 header.SetAttribute(0); // valid data
08f92f14 637 outfile->WriteBuffer((char*)(&header),sizeof(header));
638 delete outfile;
2e9f335b 639 }//end for
0421c3d1 640
2e9f335b 641 return 0;
642}
643
644/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
645
a643f6be 646void AliITSDDLRawData::WriteChipHeader(Int_t ChipAddr,Int_t halfStave,UInt_t &BaseWord){
a79660fb 647 //This method writes a chip header
a643f6be 648 //cout<<"Chip: "<<ChipAddr<<" Half Stave module:"<<halfStave<<endl;
2e9f335b 649 BaseWord=0;
a643f6be 650 AliBitPacking::PackWord(ChipAddr,BaseWord,16,19);
651 // At the moment the event count is always 0 (bits 20-26)
652 AliBitPacking::PackWord(0,BaseWord,20,26);
653 AliBitPacking::PackWord(halfStave,BaseWord,27,29);
654 AliBitPacking::PackWord(0x1,BaseWord,30,31);
2e9f335b 655 return;
656}//end WriteChipHeader
657
658/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
659
0b3c7dfc 660void AliITSDDLRawData::WriteChipTrailer(UInt_t *buf,Int_t ChipHitCount,UInt_t &BaseWord){
a79660fb 661 //This method writes a chip trailer
2e9f335b 662 //pixel fill word
663 if((ChipHitCount%2)!=0){
a643f6be 664 AliBitPacking::PackWord(0xC000,BaseWord,16,31);
2e9f335b 665 }
a643f6be 666 AliBitPacking::PackWord(ChipHitCount,BaseWord,0,13);
667 AliBitPacking::PackWord(0x0,BaseWord,14,15);
2e9f335b 668 fIndex++;
669 buf[fIndex]=BaseWord;
670 BaseWord=0;
671 return;
672}//end WriteChipTrailer
673
674/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
675
0b3c7dfc 676void AliITSDDLRawData::WriteHit(UInt_t *buf,Int_t RowAddr,Int_t HitAddr,UInt_t &BaseWord){
a79660fb 677 //This method writs an hit
2e9f335b 678 if(!BaseWord){
113c12f1 679 AliBitPacking::PackWord(HitAddr,BaseWord,16,20);
680 AliBitPacking::PackWord(RowAddr,BaseWord,21,28);
681 AliBitPacking::PackWord(2,BaseWord,30,31);
a643f6be 682 }//end if
683 else{
684 AliBitPacking::PackWord(HitAddr,BaseWord,0,4);
685 AliBitPacking::PackWord(RowAddr,BaseWord,5,12);
686 AliBitPacking::PackWord(2,BaseWord,14,15);
2e9f335b 687 fIndex++;
688 buf[fIndex]=BaseWord;
689 BaseWord=0;
690 }//end else
691 return;
692}//end WriteHit
693