]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Wrong segment word signature fixed (5800->5900)
authordibari <dibari@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 6 Nov 2007 08:40:46 +0000 (08:40 +0000)
committerdibari <dibari@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 6 Nov 2007 08:40:46 +0000 (08:40 +0000)
HMPID/AliHMPIDRawStream.h

index b2e69450c27c01b0506c79be3d49df9cefd3e85f..6f1b4b8728267f22e6a15e4d3ca33caddcf1405f 100644 (file)
@@ -253,12 +253,11 @@ void AliHMPIDRawStream::WriteEoE(AliFstream *ddl,UInt_t row,UInt_t dil,UInt_t wo
 void AliHMPIDRawStream::WriteSegMarker(AliFstream *ddl,UInt_t row)
 {
   //Writes the segment marker (after 8 rows) into the ddl stream
-  //Arguments: ddl stream and the segment: row 8 -> 0x5800, row 16 -> 5801, row 24 -> 5802
+  //Arguments: ddl stream and the segment: row 8 -> 0x5900, row 16 -> 5901, row 24 -> 5902
   //Retruns:   nothing
     UInt_t w32=0;
                                 AliBitPacking::PackWord((UInt_t)43791,        w32,16,31);       //43791==AB0F
-                                AliBitPacking::PackWord((UInt_t)(22528+row/8),w32, 0,15);       //22528==5800
-    
+                                AliBitPacking::PackWord((UInt_t)(22784+row/8),w32, 0,15);       //22784==5900    
     ddl->WriteBuffer((char*)&w32,sizeof(w32)); 
 }      
 //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++