]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONRawWriter.cxx
Taken the scaler trigger informations from CDH
[u/mrichter/AliRoot.git] / MUON / AliMUONRawWriter.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 /* $Id$ */
17
18 //-----------------------------------------------------------------------------
19 /// \class AliMUONRawWriter
20 /// MUON Raw Data generaton in ALICE-MUON
21 /// Raw data structure could be found in Alice-note.
22 ///
23 /// Implemented non-constant buspatch numbers for tracking
24 /// with correct DDL id (first guess)
25 /// (Ch. Finck, dec 2005)
26 ///
27 /// Digits2Raw:
28 /// Generates raw data for MUON tracker and finally for trigger
29 /// Using real mapping (inverse) for tracker
30 /// For trigger there is no mapping (mapping could be found in AliMUONTriggerCircuit)
31 /// Ch. Finck, July 04
32 /// Use memcpy instead of assignment elt by elt
33 /// Introducing variable DSP numbers, real manu numbers per buspatch for st12
34 /// Implemented scaler event for Trigger
35 /// Ch. Finck, Jan. 06
36 /// Using bus itr in DDL instead of simple incrementation
37 /// treat correctly the DDL & buspatch for station 3.
38 /// Using informations from AliMUONTriggerCrateStore for 
39 /// empty slots and non-notified cards in trigger crates.
40 /// Ch. Finck, August 06.
41 /// Using AliMpDDLStore::GetBusPatchId.
42 ///
43 /// \author Ch. Finck, Feb. 07.
44 //-----------------------------------------------------------------------------
45
46
47 #include "AliMUONRawWriter.h"
48
49 #include "AliMUONBlockHeader.h"
50 #include "AliMUONBusStruct.h"
51 #include "AliMUONConstants.h"
52 #include "AliMUONDarcHeader.h"
53 #include "AliMUONVDigit.h"
54 #include "AliMUONVDigitStore.h"
55 #include "AliMUONDspHeader.h"
56 #include "AliMUONGlobalTrigger.h"
57 #include "AliMUONLocalStruct.h"
58 #include "AliMUONLocalTrigger.h"
59 #include "AliMUONLocalTriggerBoard.h"
60 #include "AliMUONRegionalTrigger.h"
61 #include "AliMUONRegHeader.h"
62
63 #include "AliMUONVTriggerStore.h"
64 #include "AliCodeTimer.h"
65
66 #include "AliMpDDLStore.h"
67 #include "AliMpDDL.h"
68 #include "AliMpTriggerCrate.h"
69 #include "AliMpLocalBoard.h"
70 #include "AliMpDetElement.h"
71 #include "AliMpDEManager.h"
72 #include "AliMpExMap.h"
73 #include "AliMpConstants.h"
74 #include "AliMpPlaneType.h"
75 #include "AliMpSegmentation.h"
76 #include "AliMpStationType.h"
77 #include "AliMpVSegmentation.h"
78
79 #include "AliRawReader.h"
80 #include "AliRawDataHeaderSim.h"
81 #include "AliBitPacking.h" 
82 #include "AliDAQ.h"
83 #include "AliLog.h"
84
85 #include "TObjArray.h"
86 #include "TStopwatch.h"
87 #include <Riostream.h>
88
89 /// \cond CLASSIMP
90 ClassImp(AliMUONRawWriter) // Class implementation in ROOT context
91 /// \endcond
92
93 //__________________________________________________________________________
94 AliMUONRawWriter::AliMUONRawWriter()
95   : TObject(),
96     fBlockHeader(new AliMUONBlockHeader()),
97     fDspHeader(new AliMUONDspHeader()),
98     fDarcHeader(new AliMUONDarcHeader()),
99     fRegHeader(new AliMUONRegHeader()),
100     fLocalStruct(new AliMUONLocalStruct()),
101     fDDLStore(AliMpDDLStore::Instance()),
102     fScalerEvent(kFALSE),
103     fHeader(0x0),
104     fBufferSize((((43*AliMpConstants::ManuNofChannels() + 4)*5 + 10)*5 + 8)*2),
105     fBuffer(new Int_t [fBufferSize])
106 {
107   /// Standard Constructor
108
109   AliDebug(1,"Standard ctor");
110
111   // setting data key to default value (only for writting)
112   fBlockHeader->SetDataKey(fBlockHeader->GetDefaultDataKey());
113   fDspHeader->SetDataKey(fDspHeader->GetDefaultDataKey());
114
115 }
116
117 //__________________________________________________________________________
118 AliMUONRawWriter::~AliMUONRawWriter(void)
119 {
120   /// Destructor
121
122   AliDebug(1,"dtor");
123   
124   delete fBlockHeader;
125   delete fDspHeader;
126   delete fDarcHeader;
127   delete fRegHeader;
128   delete fLocalStruct;
129   delete[] fBuffer;
130 }
131
132 //____________________________________________________________________
133 void  AliMUONRawWriter::LocalWordPacking(UInt_t& word, UInt_t locId, UInt_t locDec, 
134                                          UInt_t trigY, UInt_t posY, UInt_t posX, 
135                                          UInt_t sdevX, UInt_t devX)
136 {
137 /// pack local trigger word
138
139     AliBitPacking::PackWord(locId,word,19,22); //card id number in crate
140     AliBitPacking::PackWord(locDec,word,15,18);
141     AliBitPacking::PackWord(trigY,word,14,14);
142     AliBitPacking::PackWord(posY,word,10,13);
143     AliBitPacking::PackWord(sdevX,word,9,9);
144     AliBitPacking::PackWord(devX,word,5,8);
145     AliBitPacking::PackWord(posX,word,0,4);
146
147 }
148
149 //____________________________________________________________________
150 Int_t AliMUONRawWriter::Digits2Raw(AliMUONVDigitStore* digitStore,
151                                    AliMUONVTriggerStore* triggerStore)
152 {
153   /// convert digits of the current event to raw data
154
155   AliCodeTimerAuto("")
156   
157   Int_t idDDL;
158   Char_t name[255];
159
160   // tracking chambers
161   
162   if ( digitStore ) 
163   {
164     AliCodeTimerAuto("for Tracker")
165
166     AliMpExMap busPatchMap(true);
167
168     Int_t nDDLs = AliDAQ::NumberOfDdls("MUONTRK");
169     
170     Int_t nofBusPatches(0);
171     
172     for (Int_t iDDL = 0; iDDL < nDDLs; ++iDDL ) 
173     {
174       AliMpDDL* ddl = fDDLStore->GetDDL(iDDL);
175       nofBusPatches += ddl->GetNofBusPatches();
176     }
177     
178     busPatchMap.SetSize(nofBusPatches);
179     
180     Digits2BusPatchMap(*digitStore,busPatchMap);
181
182     for (Int_t iDDL = 0; iDDL < nDDLs; ++iDDL ) 
183     {
184       WriteTrackerDDL(busPatchMap,iDDL);
185     }
186     AliDebug(1,"Tracker written");
187   }
188  
189   if ( triggerStore )
190   {
191     AliCodeTimerAuto("for Trigger")
192
193     // trigger chambers
194     
195     AliFstream* file[2];
196     
197     // open files
198     idDDL = 0;// MUTR
199     strcpy(name,AliDAQ::DdlFileName("MUONTRG",idDDL));
200     file[0] = new AliFstream(name);
201     
202     idDDL = 1;// MUTR
203     strcpy(name,AliDAQ::DdlFileName("MUONTRG",idDDL));
204     file[1] = new AliFstream(name);
205       
206     WriteTriggerDDL(*triggerStore,file);
207       
208     // reset and close
209     delete file[0];
210     delete file[1];
211       
212     AliDebug(1,"Trigger written");
213   }
214   
215   return kTRUE;
216 }
217
218 //______________________________________________________________________________
219 void 
220 AliMUONRawWriter::Digits2BusPatchMap(const AliMUONVDigitStore& digitStore,
221                                      AliMpExMap& busPatchMap)
222 {
223   /// Create bus patch structures corresponding to digits in the store
224   
225   AliCodeTimerAuto("")
226   
227   static const Int_t kMAXADC = (1<<12)-1; // We code the charge on a 12 bits ADC.
228     
229   // DDL event one per half chamber
230   
231   // raw data
232   Char_t parity = 0x4;
233   UShort_t manuId = 0;
234   UChar_t channelId = 0;
235   UShort_t charge = 0;
236   Int_t busPatchId = 0;
237   UInt_t word;
238   
239   TIter next(digitStore.CreateTrackerIterator());
240   AliMUONVDigit* digit;
241   
242   while ( ( digit = static_cast<AliMUONVDigit*>(next()) ) )
243   {
244     charge = digit->ADC();
245     if ( charge > kMAXADC )
246     {
247       // This is most probably an error in the digitizer (which should insure
248       // the adc is below kMAXADC), so make it a (non-fatal) error indeed.
249       AliError(Form("adc value %d above 0x%x for DE %d . Setting to 0x%x. Digit is:",
250                     charge,kMAXADC,digit->DetElemId(),kMAXADC));
251       StdoutToAliError(digit->Print());
252       charge = kMAXADC;
253     }
254     
255     // inverse mapping
256     busPatchId = GetBusPatch(*digit);
257
258     if (busPatchId<0) continue;
259     
260     if ( digit->ManuId() > 0x7FF ||
261          digit->ManuChannel() > 0x3F )
262     {
263       StdoutToAliError(digit->Print(););
264       AliFatal("ManuId,ManuChannel are invalid for the digit above.");
265     }
266     
267     manuId = ( digit->ManuId() & 0x7FF ); // 11 bits
268     channelId = ( digit->ManuChannel() & 0x3F ); // 6 bits
269     
270     //packing word
271     word = 0;
272     AliBitPacking::PackWord((UInt_t)manuId,word,18,28);
273     AliBitPacking::PackWord((UInt_t)channelId,word,12,17);
274     AliBitPacking::PackWord((UInt_t)charge,word,0,11);
275     
276     // parity word
277     parity = word & 0x1;
278     for (Int_t i = 1; i <= 30; ++i) 
279     {
280       parity ^=  ((word >> i) & 0x1);
281     }
282     AliBitPacking::PackWord((UInt_t)parity,word,31,31);
283     
284     AliMUONBusStruct* busStruct = 
285       static_cast<AliMUONBusStruct*>(busPatchMap.GetValue(busPatchId));
286     
287     if (!busStruct)
288     {
289       busStruct = new AliMUONBusStruct;
290       busStruct->SetDataKey(busStruct->GetDefaultDataKey());
291       busStruct->SetBusPatchId(busPatchId);
292       busStruct->SetLength(0);
293       busPatchMap.Add(busPatchId,busStruct);
294     }
295     
296     // set sub Event
297     busStruct->AddData(word);
298   }
299 }
300
301 //______________________________________________________________________________
302 void
303 AliMUONRawWriter::WriteTrackerDDL(AliMpExMap& busPatchMap, Int_t iDDL)
304 {
305   /// Write DDL file for one tracker DDL
306   
307   // buffer size (max'ed out)
308   // (((43 manus max per bus patch *64 channels + 4 bus patch words) * 5 bus patch 
309   //   + 10 dsp words)*5 dsps + 8 block words)*2 blocks 
310  
311   AliCodeTimerAuto("")
312
313   if (fHeader == 0x0) {
314     AliError("Raw data header must be set");
315     return;
316   }
317   memset(fBuffer,0,fBufferSize*sizeof(Int_t));
318   
319   AliMpDDL* ddl = fDDLStore->GetDDL(iDDL);
320   Int_t iDspMax = ddl->GetMaxDsp();
321   Int_t iBusPerDSP[5]; //number of bus patches per DSP
322   ddl->GetBusPerDsp(iBusPerDSP);
323   Int_t busIter = 0;
324   
325   Int_t totalDDLLength = 0;
326   
327   Int_t index = 0;
328   
329   // two blocks A and B per DDL
330   for (Int_t iBlock = 0; iBlock < 2; ++iBlock) 
331   {
332     // block header
333     Int_t length = fBlockHeader->GetHeaderLength();
334     memcpy(&fBuffer[index],fBlockHeader->GetHeader(),length*4);
335     Int_t indexBlk = index;
336     index += length; 
337     
338     // 5 DSP's max per block
339     for (Int_t iDsp = 0; iDsp < iDspMax; ++iDsp) 
340     {
341       // DSP header
342       Int_t length = fDspHeader->GetHeaderLength();
343       memcpy(&fBuffer[index],fDspHeader->GetHeader(),length*4);
344       Int_t indexDsp = index;
345       index += length; 
346       
347       // 5 buspatches max per DSP
348       for (Int_t i = 0; i < iBusPerDSP[iDsp]; ++i) 
349       {
350         Int_t iBusPatch = ddl->GetBusPatchId(busIter++);
351         
352         // iteration over bus patch in DDL
353         if (iBusPatch == -1) 
354         {
355           AliWarning(Form("Error in bus itr in DDL %d\n", iDDL));
356           continue;
357         }
358         
359         AliMUONBusStruct* busStructPtr = static_cast<AliMUONBusStruct*>(busPatchMap.GetValue(iBusPatch));
360         
361         // check if buspatchid has digit
362         if (busStructPtr) 
363         {
364           // add bus patch structure header
365           Int_t length = busStructPtr->GetHeaderLength();
366           memcpy(&fBuffer[index],busStructPtr->GetHeader(),length*4);
367           index += length;
368           
369           // add bus patch data
370           length = busStructPtr->GetLength();
371           memcpy(&fBuffer[index],busStructPtr->GetData(),length*4);
372           index += length;
373         } 
374         else 
375         {
376           // writting anyhow buspatch structure (empty ones)
377           fBuffer[index++] = busStructPtr->GetDefaultDataKey(); // fill it also for empty data size
378           fBuffer[index++] = busStructPtr->GetHeaderLength(); // header length
379           fBuffer[index++] = 0; // raw data length
380           fBuffer[index++] = iBusPatch; // bus patch
381         }
382       } // bus patch
383       
384       // check if totalLength even
385       // set padding word in case
386       // Add one word 0xBEEFFACE at the end of DSP structure
387       Int_t totalDspLength  = index - indexDsp;
388       if ((totalDspLength % 2) == 1) 
389       { 
390         fBuffer[indexDsp + fDspHeader->GetHeaderLength() - 2] = 1;
391         fBuffer[index++] = fDspHeader->GetDefaultPaddingWord();
392         totalDspLength++;
393       }
394       
395       Int_t dspLength          = totalDspLength - fDspHeader->GetHeaderLength();
396       
397       fBuffer[indexDsp+1] = totalDspLength; // dsp total length
398       fBuffer[indexDsp+2] = dspLength; // data length  
399       
400     } // dsp
401     
402     Int_t totalBlkLength  = index - indexBlk;
403     Int_t blkLength       = totalBlkLength - fBlockHeader->GetHeaderLength();
404     totalDDLLength += totalBlkLength;
405     
406     fBuffer[indexBlk+1] = totalBlkLength; // total block length
407     fBuffer[indexBlk+2] = blkLength;
408     
409   } // block
410   
411   // writting onto disk
412   // total length in bytes
413   // DDL header
414
415   Int_t headerSize = sizeof(AliRawDataHeader)/4;
416   
417   fHeader->fSize = (totalDDLLength + headerSize) * 4;
418   
419   AliFstream* file = new AliFstream(AliDAQ::DdlFileName("MUONTRK",iDDL));
420   
421   file->WriteBuffer((char*)fHeader,headerSize*4);
422   file->WriteBuffer((char*)fBuffer,sizeof(int)*index);
423   delete file;
424 }
425
426 //______________________________________________________________________________
427 Int_t AliMUONRawWriter::GetBusPatch(const AliMUONVDigit& digit) const
428 {
429   /// Determine the BusPatch this digit belongs to.
430
431     return fDDLStore->GetBusPatchId(digit.DetElemId(),digit.ManuId());
432 }
433
434 //______________________________________________________________________________
435 Int_t AliMUONRawWriter::WriteTriggerDDL(const AliMUONVTriggerStore& triggerStore, AliFstream* file[2])
436 {
437   /// Write trigger DDL
438   
439   AliCodeTimerAuto("")
440
441   if (fHeader == 0x0) {
442     AliError("Raw data header must be set");
443     return 0;
444   }
445
446  // DDL event one per half chamber
447
448  // DDL header size
449   Int_t headerSize = sizeof(AliRawDataHeader)/4;
450
451   // global trigger for trigger pattern
452   AliMUONGlobalTrigger* gloTrg = triggerStore.Global();
453   if (!gloTrg) 
454   {
455     return 0;
456   }
457   
458   Int_t gloTrigResp = gloTrg->GetGlobalResponse();
459
460   UInt_t word;
461   Int_t* buffer = 0;
462   Int_t index;
463   Int_t locCard;
464   UChar_t locDec, trigY, posY, posX, regOut;
465   UInt_t regInpLpt;
466   UInt_t regInpHpt;
467
468   UInt_t devX;
469   UChar_t sdevX;
470   UInt_t version = 1; // software version
471   UInt_t eventPhys = 1; // trigger type: 1 for physics, 0 for software
472   UInt_t serialNb = 0xF; // serial nb of card: all bits on for the moment
473   Int_t globalFlag = 0; // set to 1 if global info present in DDL else set to 0
474
475   // size of headers
476   static const Int_t kDarcHeaderLength   = fDarcHeader->GetDarcHeaderLength();
477   static const Int_t kGlobalHeaderLength = fDarcHeader->GetGlobalHeaderLength();
478   static const Int_t kDarcScalerLength   = fDarcHeader->GetDarcScalerLength();
479   static const Int_t kGlobalScalerLength = fDarcHeader->GetGlobalScalerLength();
480   static const Int_t kRegHeaderLength    = fRegHeader->GetHeaderLength();
481   static const Int_t kRegScalerLength    = fRegHeader->GetScalerLength();
482   static const Int_t kLocHeaderLength    = fLocalStruct->GetLength();
483   static const Int_t kLocScalerLength    = fLocalStruct->GetScalerLength();
484
485   // [16(local)*6 words + 6 words]*8(reg) + 8 words = 824 
486   static const Int_t kBufferSize = (16 * (kLocHeaderLength+1) +  (kRegHeaderLength+1))* 8 
487       +  kDarcHeaderLength + kGlobalHeaderLength + 2;
488
489   // [16(local)*51 words + 16 words]*8(reg) + 8 + 10 + 8 words scaler event 6682 words
490   static const Int_t kScalerBufferSize = (16 * (kLocHeaderLength +  kLocScalerLength +1) +  
491                                          (kRegHeaderLength + kRegScalerLength +1))* 8 +
492                                          (kDarcHeaderLength + kDarcScalerLength + 
493                                           kGlobalHeaderLength + kGlobalScalerLength + 2);
494   if(fScalerEvent) {
495     eventPhys = 0; //set to generate scaler events
496     fHeader->fWord2 |= 0x1; // set L1SwC bit on
497   }
498   if(fScalerEvent)
499     buffer = new Int_t [kScalerBufferSize];
500   else
501     buffer = new Int_t [kBufferSize];
502
503   // reset crate
504
505   // open DDL file, on per 1/2 chamber
506   for ( Int_t iDDL = 0; iDDL < 2; ++iDDL ) 
507   {
508     index = 0; 
509
510     if (iDDL == 0) // suppose global info in DDL one
511       globalFlag = 1;
512     else 
513       globalFlag = 0;
514
515     word = 0;
516     // set darc status word
517     // see AliMUONDarcHeader.h for details
518     AliBitPacking::PackWord((UInt_t)eventPhys,word,30,30);
519     AliBitPacking::PackWord((UInt_t)serialNb,word,20,23);
520     AliBitPacking::PackWord((UInt_t)globalFlag,word,10,10);
521     AliBitPacking::PackWord((UInt_t)version,word,12,19);
522     fDarcHeader->SetWord(word);
523
524     memcpy(&buffer[index], fDarcHeader->GetHeader(), (kDarcHeaderLength)*4); 
525     index += kDarcHeaderLength;
526
527     // no global input for the moment....
528     if (iDDL == 0)
529      fDarcHeader->SetGlobalOutput(gloTrigResp);
530     else 
531      fDarcHeader->SetGlobalOutput(0);
532
533     if (fScalerEvent) {
534       // 6 DARC scaler words
535       memcpy(&buffer[index], fDarcHeader->GetDarcScalers(),kDarcScalerLength*4);
536       index += kDarcScalerLength;
537     }
538     // end of darc word
539     buffer[index++] = fDarcHeader->GetEndOfDarc();
540
541     // 4 words of global board input + Global board output
542     memcpy(&buffer[index], fDarcHeader->GetGlobalInput(), (kGlobalHeaderLength)*4); 
543     index += kGlobalHeaderLength; 
544
545     if (fScalerEvent) {
546       // 10 Global scaler words
547       memcpy(fDarcHeader->GetGlobalScalers(), &buffer[index], kGlobalScalerLength*4);
548       index += kGlobalScalerLength;
549     }
550
551     // end of global word
552     buffer[index++] = fDarcHeader->GetEndOfGlobal();
553
554     // 8 regional cards per DDL
555     for (Int_t iReg = 0; iReg < 8; ++iReg) {
556
557         // crate info
558       AliMpTriggerCrate* crate = AliMpDDLStore::Instance()->GetTriggerCrate(iDDL, iReg);
559
560       if (!crate) 
561         AliWarning(Form("Missing crate number %d in DDL %d\n", iReg, iDDL));
562
563       // regional info tree, make sure that no reg card missing
564       AliMUONRegionalTrigger* regTrg  = triggerStore.FindRegional(iReg+iDDL*8);
565
566       // Regional card header
567       word = 0;
568
569       // set darc status word
570       fRegHeader->SetDarcWord(word);
571
572       regOut    = regTrg->GetOutput();
573       regInpHpt = regTrg->GetLocalOutput(0);
574       regInpLpt = regTrg->GetLocalOutput(1);
575
576       // fill darc word, not darc status for the moment (empty)
577       //see  AliMUONRegHeader.h for details
578       AliBitPacking::PackWord((UInt_t)eventPhys,word,31,31); 
579       AliBitPacking::PackWord((UInt_t)serialNb,word,19,24); 
580       AliBitPacking::PackWord((UInt_t)version,word,7,14);
581       AliBitPacking::PackWord((UInt_t)iReg,word,15,18);
582       AliBitPacking::PackWord((UInt_t)regOut,word,0,7); 
583       fRegHeader->SetWord(word);
584
585
586       // fill header later, need local response
587       Int_t indexReg = index;
588       index += kRegHeaderLength;
589
590       // 11 regional scaler word
591       if (fScalerEvent) {
592         memcpy(&buffer[index], fRegHeader->GetScalers(), kRegScalerLength*4);
593         index += kRegScalerLength;
594       }
595
596       // end of regional word
597       buffer[index++] = fRegHeader->GetEndOfReg();
598       
599       // 16 local card per regional board
600       //      UShort_t localMask = 0x0;
601       
602       for (Int_t iLoc = 0; iLoc < 16; iLoc++) {
603           
604         // slot zero for Regional card
605         Int_t localBoardId = crate->GetLocalBoardId(iLoc);
606
607         if (localBoardId) { // if not empty slot
608           AliMpLocalBoard* localBoard = AliMpDDLStore::Instance()->GetLocalBoard(localBoardId);
609
610           if (localBoard->IsNotified()) {// if notified board 
611             AliMUONLocalTrigger* locTrg = triggerStore.FindLocal(localBoardId);
612
613             locCard = locTrg->LoCircuit();
614             locDec  = locTrg->GetLoDecision();
615             trigY   = locTrg->LoTrigY();
616             posY    = locTrg->LoStripY();
617             posX    = locTrg->LoStripX();
618             devX    = locTrg->LoDev();
619             sdevX   = locTrg->LoSdev();
620                   
621             AliDebug(4,Form("loctrg %d, posX %d, posY %d, devX %d\n", 
622                             locTrg->LoCircuit(),locTrg->LoStripX(),locTrg->LoStripY(),locTrg->LoDev()));  
623             //packing word
624             word = 0;
625             LocalWordPacking(word, (UInt_t)iLoc, (UInt_t)locDec, (UInt_t)trigY, (UInt_t)posY, 
626                              (UInt_t)posX, (UInt_t)sdevX, (UInt_t)devX);
627
628             buffer[index++] = (locTrg->GetX1Pattern() | (locTrg->GetX2Pattern() << 16));
629             buffer[index++] = (locTrg->GetX3Pattern() | (locTrg->GetX4Pattern() << 16));
630             buffer[index++] = (locTrg->GetY1Pattern() | (locTrg->GetY2Pattern() << 16));
631             buffer[index++] = (locTrg->GetY3Pattern() | (locTrg->GetY4Pattern() << 16));
632             buffer[index++] = (Int_t)word; // data word
633                       
634                 
635           }
636           // fill copy card X-Y inputs from the notified cards 
637           if (localBoard->GetInputXfrom() && localBoard->GetInputYfrom()) 
638           {
639             // not triggered
640             locDec = 0; trigY = 1; posY = 15;    
641             posX   = 0; devX  = 0; sdevX = 1;
642             LocalWordPacking(word, (UInt_t)iLoc, (UInt_t)locDec, (UInt_t)trigY, (UInt_t)posY, 
643                              (UInt_t)posX, (UInt_t)sdevX, (UInt_t)devX);
644
645             Int_t localFromId = localBoard->GetInputXfrom();
646             AliMUONLocalTrigger* locTrgfrom  = triggerStore.FindLocal(localFromId);
647
648             buffer[index++] = 0; // copy only X3-4 & Y1-4
649             buffer[index++] = (locTrgfrom->GetX3Pattern() | (locTrgfrom->GetX4Pattern() << 16));
650             buffer[index++] = (locTrgfrom->GetY1Pattern() | (locTrgfrom->GetY2Pattern() << 16));
651             buffer[index++] = (locTrgfrom->GetY3Pattern() | (locTrgfrom->GetY4Pattern() << 16));
652             buffer[index++] = word;
653           }
654
655         } else { 
656           // fill with 10CDEAD word for empty slots
657           for (Int_t i = 0; i < fLocalStruct->GetLength(); i++)
658               buffer[index++] = fLocalStruct->GetDisableWord(); 
659         }// condition localBoard
660           
661         // 45 regional scaler word
662         if (fScalerEvent) {
663           memcpy(&buffer[index], fLocalStruct->GetScalers(), kLocScalerLength*4);
664           index += kLocScalerLength;
665         }
666           
667         // end of local structure words
668         buffer[index++] = fLocalStruct->GetEndOfLocal();
669           
670       } // local card 
671       // fill regional header with local output
672       fRegHeader->SetInput(regInpHpt, 0);
673       fRegHeader->SetInput(regInpHpt, 1);
674       memcpy(&buffer[indexReg],fRegHeader->GetHeader(),kRegHeaderLength*4);
675       
676     } // Regional card
677     
678
679     // writting onto disk
680     // write DDL's
681     fHeader->fSize = (index + headerSize) * 4;// total length in bytes
682     file[iDDL]->WriteBuffer((char*)fHeader,headerSize*4);
683     file[iDDL]->WriteBuffer((char*)buffer,sizeof(int)*index);
684   
685   }
686   delete[] buffer;
687
688   return kTRUE;
689 }
690
691 //____________________________________________________________________
692 void AliMUONRawWriter::SetScalersNumbers()
693 {
694   /// set numbers for scaler events for trigger headers
695   /// since this is provided by the experiment
696   /// put dummy numbers to check the monitoring
697
698   fDarcHeader->SetScalersNumbers();
699   fRegHeader->SetScalersNumbers();
700   fLocalStruct->SetScalersNumbers();
701  
702   fScalerEvent = kTRUE;
703 }
704