]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - RAW/dateStream.cxx
Add-on by F. Blanco: code to manage leading particle and cuts with respect to that
[u/mrichter/AliRoot.git] / RAW / dateStream.cxx
index 006d14a78d917134c4bd08a8d79f6aa1a8cd35f1..ca1cfc1f30a06dbef7ef9d888461d81637c83b92 100644 (file)
@@ -20,7 +20,7 @@
 #include <assert.h>
 #include <ctype.h>
 #include <time.h>
-
+#include <cassert>
 #include "event.h"
 
 #define DESCRIPTION "DATE raw data stream simulator"
@@ -45,8 +45,10 @@ char fileHandlerIdent[]= "@(#)""" __FILE__ """: """ DESCRIPTION \
 const char *myName;
 int debug;
 FILE *outF;
-enum { unknown, ldc, gdc } workingAs;
-enum { collider, fixedTarget } workingMode;
+typedef enum { unknown, ldc, gdc } workingAsType;
+typedef enum { collider, fixedTarget } workingModeType;
+workingAsType workingAs;
+workingModeType workingMode;
 struct ldcDescriptorStruct {
   eventLdcIdType id;
   struct ldcDescriptorStruct *next;
@@ -82,6 +84,7 @@ struct payloadDescriptorStruct {
 } *payloadsHead, *payloadsTail;
 int lineNo;
 eventGdcIdType currGdcId;
+unsigned long32 currDetPattern; 
 eventLdcIdType currLdcId;
 equipmentIdType currEquipmentId;
 int currRunNb;
@@ -94,6 +97,8 @@ eventIdType currEventId;
 int gotAliceTrigger;
 int bufferData;
 
+struct commonDataHeaderStruct *cdhRef = NULL;
+
 void dumpPayload( const struct payloadDescriptorStruct *p ) {
   char *c;
   int i;
@@ -126,7 +131,7 @@ void dumpPayload( const struct payloadDescriptorStruct *p ) {
       }
       if ( i < p->size ) {
        int j = 0;
-      
+
        printf( "\n       " );
        while ( i != p->size ) {
          printf( "%02x ", *((char *)p->data + p->size - j - 1) & 0xff );
@@ -151,16 +156,16 @@ void dumpEvents() {
            gdc = gdc->next ) {
        struct ldcEventDescriptorStruct *ldc;
 
-       printf( " GDC (%p)\n", gdc );
+       printf( " GDC (%p)\n", (void*)gdc );
        for ( ldc = gdc->head; ldc != NULL; ldc = ldc->next ) {
          struct equipmentEventDescriptorStruct *eq;
            
-         printf( "   LDC (%p): %d\n", ldc, ldc->id );
+         printf( "   LDC (%p): %d\n", (void*)ldc, ldc->id );
          for ( eq = ldc->head; eq != NULL; eq = eq->next ) {
            printf( "     EQUIPMENT (%p): %d PAYLOAD (%p):",
-                   eq,
+                   (void*)eq,
                    eq->id,
-                   eq->payload );
+                   (void*)eq->payload );
            fflush( stdout );
            printf( "\"%s\" (%d bytes)\n",
                    eq->payload->fileName,
@@ -181,9 +186,9 @@ void dumpEvents() {
        printf( "   LDC\n" );
        for ( eq = ldc->head; eq != NULL; eq = eq->next ) {
          printf( "     EQUIPMENT (%p): %d PAYLOAD (%p):",
-                 eq,
+                 (void*)eq,
                  eq->id,
-                 eq->payload );
+                 (void*)eq->payload );
          fflush( stdout );
          printf( "\"%s\" (%d bytes)\n",
                  eq->payload->fileName,
@@ -200,7 +205,7 @@ void dumpEvents() {
 void getLine( char *line, const int maxSize ) {
   int read;
   int c;
-  
+
   for ( read = 0; !feof( stdin ) && !ferror( stdin ) && read != maxSize; read++ ) {
     if ( (line[read] = getchar()) == '\n' ) break;
   }
@@ -289,7 +294,7 @@ void createNewEvent() {
     } else {
       struct ldcEventDescriptorStruct *q =
        (struct ldcEventDescriptorStruct *)eventsTail;
-      
+
       q->next = p;
       eventsTail = p;
     }
@@ -314,7 +319,7 @@ void createNewEvent() {
     } else {
       struct gdcEventDescriptorStruct *q =
        (struct gdcEventDescriptorStruct *)eventsTail;
-      
+
       q->next = p;
       eventsTail = p;
     }
@@ -349,7 +354,7 @@ void createNewLdcEvent() {
 void loadBuffer( struct payloadDescriptorStruct * const payload ) {
   FILE *f;
   int bytesRead;
-  
+
   if ( (f = fopen( payload->fileName, "r" )) == NULL ) {
     fprintf( stderr,
             "%s: line:%d payload file \"%s\" not found or not readable, errno:%d. ",
@@ -417,7 +422,7 @@ void loadPayload( const char *fileName ) {
   }
   if ( payload == NULL ) {
     FILE *f;
-    
+
     if ( (payload = (struct payloadDescriptorStruct *)malloc( sizeof( *payload ) ))
           == NULL ) {
       fprintf( stderr,
@@ -467,7 +472,7 @@ void loadPayload( const char *fileName ) {
     payload->fileSize = payload->size;
     while ( (payload->size & 3) != 0 ) payload->size++;
     fclose( f );
-    
+
     if ( bufferData ) {
       loadBuffer( payload );
     } else {
@@ -483,21 +488,23 @@ void loadPayload( const char *fileName ) {
     }
     DBG_VERBOSE {
       int b, n;
-      
+
       printf( "%d)       Payload \"%s\" loaded at %p\n",
              lineNo,
              fileName,
-             payload );
+             (void*)payload );
       if ( bufferData ) {
-       if ( handleCDH ) {
+       if ( handleCDH &&
+            strncmp(fileName,"TRG_",4) != 0 ) {
          struct commonDataHeaderStruct *cdh =
            (struct commonDataHeaderStruct *)payload->data;
 
          printf( " CDH: blockLenght:%d=0x%08x ",
                  cdh->cdhBlockLength, cdh->cdhBlockLength );
          if ( cdh->cdhBlockLength < sizeof( *cdh ) ) {
-           printf( "TOO SMALL (minimum:%d=0x%08x)\n",
-                   sizeof( *cdh ), sizeof( *cdh ) );
+           printf( "TOO SMALL (minimum:%ld=0x%08lx)\n",
+                  (unsigned long)sizeof( *cdh ),
+                  (unsigned long)sizeof( *cdh ) );
          } else {
            printf( "version:%d=0x%x ", cdh->cdhVersion, cdh->cdhVersion );
            if ( cdh->cdhVersion != CDH_VERSION ) {
@@ -645,7 +652,7 @@ void loadPayload( const char *fileName ) {
       printf( "%d)       Payload \"%s\" already loaded at %p\n",
              lineNo,
              fileName,
-             payload );
+             (void*)payload );
   }
 
   currEvent->payload = payload;
@@ -747,7 +754,7 @@ void parseEquipment( char * const line ) {
 void parseGdc( char * const line ) {
   char *p;
   char *keyword;
-  
+
   p = line;
   while ( (keyword = strtok_r( p, " \t", &p )) != NULL ) {
     if ( strcasecmp( "id", keyword ) == 0 ) {
@@ -760,7 +767,7 @@ void parseGdc( char * const line ) {
                 lineNo );
        exit( 1 );
       }
-      if ( sscanf( idNum, "%d", &currGdcId ) != 1 ) {
+      if ( sscanf( idNum, "%d", (int*)&currGdcId ) != 1 ) {
        fprintf( stderr,
                 "%s: line:%d GDC declaration, numeric ID needed (%s)",
                 myName,
@@ -771,6 +778,27 @@ void parseGdc( char * const line ) {
       DBG_VERBOSE printf( "%d)     GDC - ID:%d\n",
                          lineNo,
                          currGdcId );
+    } else if ( strcasecmp( "DetectorPattern", keyword ) == 0 ) {
+      char *detPattern;
+
+      if ( (detPattern = strtok_r( p, " \t", &p )) == NULL ) {
+       fprintf( stderr,
+                "%s: line:%d GDC declaration, DetectorPattern needed",
+                myName,
+                lineNo );
+       exit( 1 );
+      }
+      if ( sscanf( detPattern, "%u", &currDetPattern ) != 1 ) {
+       fprintf( stderr,
+                "%s: line:%d GDC declaration, numeric DetectorPattern needed (%s)",
+                myName,
+                lineNo,
+                detPattern );
+       exit( 1 );
+      }
+      DBG_VERBOSE printf( "%d)     GDC - DetectorPattern:%u\n",
+                         lineNo,
+                         currDetPattern );
     } else {
       fprintf( stderr,
               "%s: line:%d GDC declaration, unknown keyword \"%s\"\n",
@@ -785,7 +813,7 @@ void parseGdc( char * const line ) {
 void parseLdc( char * const line ) {
   char *p;
   char *keyword;
-  
+
   p = line;
   while ( (keyword = strtok_r( p, " \t", &p )) != NULL ) {
     if ( strcasecmp( "id", keyword ) == 0 ) {
@@ -798,7 +826,7 @@ void parseLdc( char * const line ) {
                 lineNo );
        exit( 1 );
       }
-      if ( sscanf( idNum, "%d", &currLdcId ) != 1 ) {
+      if ( sscanf( idNum, "%d", (int*)&currLdcId ) != 1 ) {
        fprintf( stderr,
                 "%s: line:%d LDC declaration, numeric ID needed (%s)",
                 myName,
@@ -825,6 +853,7 @@ void parseRules() {
 
   currLdcId = HOST_ID_MIN;
   currGdcId = HOST_ID_MIN;
+  currDetPattern = 0;
 
   for ( lineNo = 1; !feof( stdin ); lineNo++ ) {
     getLine( line, sizeof(line) );
@@ -887,7 +916,7 @@ void parseRules() {
        }
       }
     }
-  } while ( !feof( stdin ) );
+  } while ( !feof( stdin ) ) {}
   lineNo -= 2;
 
   DBG_VERBOSE {
@@ -900,7 +929,7 @@ void parseRules() {
              "UNKNOWN" );
     if ( workingAs == gdc ) {
       struct ldcDescriptorStruct *ldc;
-      
+
       printf( "LDCs (%d):", numOfLdcs );
       for ( ldc = ldcsHead; ldc != NULL; ldc = ldc->next ) {
        printf( " %d", ldc->id );
@@ -917,11 +946,11 @@ void parseRules() {
 
   if ( workingAs == gdc ) {
     struct ldcDescriptorStruct *ldc;
-    
+
     assert( ldcsHead != NULL );
     assert( ldcsTail != NULL );
     assert( ldcsTail->next == NULL );
-    for ( ldc = ldcsHead; ldc->next != NULL; ldc = ldc->next );
+    for ( ldc = ldcsHead; ldc->next != NULL; ldc = ldc->next ) {}
     assert ( ldc == ldcsTail );
   }
 
@@ -936,7 +965,7 @@ void parseRules() {
 
 void loadTimestamp( struct eventHeaderStruct * const ev ) {
   time_t t;
-  
+
   if ( time( &t ) == (time_t)-1 ) {
     fprintf( stderr,
             "%s: failed to get system time errno:%d (%s)\n",
@@ -964,20 +993,64 @@ void initEvent( struct eventHeaderStruct * const ev ) {
   loadTimestamp( ev );
 } /* End of initEvent */
 
+int Swap(int x)
+{
+   // Swap the endianess of the integer value 'x'
+
+   return (((x & 0x000000ffU) << 24) | ((x & 0x0000ff00U) <<  8) |
+           ((x & 0x00ff0000U) >>  8) | ((x & 0xff000000U) >> 24));
+}
+
 void outputEvent( const void * const ev,
                  const int size ) {
   int done;
 
   DBG_VERBOSE {
-    const long32 * const v = (long32 *)ev;
+    const long32 * const v = (long32 *)ev; 
     printf( "Writing %d bytes @ %p (%d)\n", size, ev, *v );
   }
-  
-  if ( (done = fwrite( ev, size, 1, outF )) != 1 ) {
-    fprintf( stderr,
-            "%s: failed to write event size:%d bytes, errno:%d (%s)\n",
-            myName, size, errno, strerror( errno ) );
-    exit( 1 );
+
+  // .............................Test endianess..............................
+  int temp = 1;
+  char* ptemp = (char*) &temp;
+
+  if (ptemp[0]!=1) { // Mac platform: ptemp != 1..............................................................................
+     int  bufSize= size; if (bufSize > (int) sizeof(eventHeaderStruct)) { bufSize = sizeof(eventHeaderStruct); }
+     char* evTemp = (char*) malloc (bufSize);
+     memcpy(evTemp, ev, bufSize);
+
+     if ((bufSize % sizeof(int)) != 0) {
+            fprintf( stderr, "%s: size of the input buffer ev is not multiple of 4 (size = %d)\n", myName, bufSize);
+            exit( 1 );
+          }
+     else {
+            // Invert header to evTemp.....................................................
+            int* buf = (int*) evTemp; 
+            for (int i=0; i < (int) (bufSize / sizeof(int)); i++, buf++) {
+                 int value = Swap(*buf); 
+                 memcpy(evTemp + (i * sizeof(int)), &value, sizeof(int)); 
+            }
+
+            // Write inverted header to file...............................................
+            if ((done = fwrite( evTemp, bufSize, 1, outF )) != 1 ) {
+                 fprintf( stderr, "%s: failed to write inverted header. event size:%d bytes, errno:%d (%s)\n", myName, size, errno, strerror( errno ) );
+                 exit( 1 );
+            }
+
+            if (size > bufSize) {  // Still theraw-data payload to write (but not inverted, since it is inverted eariler).............
+                if ((done = fwrite( (char*)ev + bufSize, size - bufSize, 1, outF )) != 1 ) {
+                    fprintf( stderr, "%s: failed to write additional event size:%d bytes, errno:%d (%s)\n", myName, size, errno, strerror( errno ) );
+                    exit( 1 );
+               }
+            }
+     }
+     free(evTemp);
+  }
+  else {             // Intel platform: ptemp == 1............................................................................
+     if ((done = fwrite( ev, size, 1, outF )) != 1 ) {
+          fprintf( stderr, "%s: failed to write event size:%d bytes, errno:%d (%s)\n", myName, size, errno, strerror( errno ) );
+          exit( 1 );
+     }
   }
 } /* End of outputEvent */
 
@@ -987,7 +1060,7 @@ void createSorAndEor( const int sor ) {
   struct eventHeaderStruct sev;
 
   assert( workingAs == ldc || workingAs == gdc );
-  
+
   if ( !createSorEor ) return;
   ev = (struct eventHeaderStruct *)event;
   initEvent( ev );
@@ -1010,7 +1083,7 @@ void createSorAndEor( const int sor ) {
     currLdc = currGdc->head;
   }
   ev->eventLdcId = currLdc->id;
-  
+
   if ( workingAs == ldc ) {
     loadTimestamp( ev );
     outputEvent( ev, ev->eventSize );
@@ -1019,7 +1092,7 @@ void createSorAndEor( const int sor ) {
     struct ldcDescriptorStruct *ldc;
 
     loadTimestamp( ev );
-    
+
     sev.eventSize = sizeof( sev ) + numOfLdcs * ev->eventSize;
     sev.eventType = sor ? START_OF_RUN : END_OF_RUN ;
     COPY_EVENT_ID( ev->eventId, sev.eventId );
@@ -1034,7 +1107,7 @@ void createSorAndEor( const int sor ) {
       outputEvent( ev, ev->eventSize );
     }
   }
-  
+
   ADD_EVENT_ID( ev->eventId, oneEventDelta );
   ev->eventSize = ev->eventSize / 2;
   ev->eventType = sor ? START_OF_RUN_FILES : END_OF_RUN_FILES;
@@ -1047,7 +1120,7 @@ void createSorAndEor( const int sor ) {
     struct ldcDescriptorStruct *ldc;
 
     loadTimestamp( ev );
-    
+
     sev.eventSize = ev->eventSize;
     sev.eventType = sor ? START_OF_RUN_FILES : END_OF_RUN_FILES;
     COPY_EVENT_ID( ev->eventId, sev.eventId );
@@ -1061,7 +1134,7 @@ void createSorAndEor( const int sor ) {
     COPY_EVENT_ID( ev->eventId, sev.eventId );
     COPY_SYSTEM_ATTRIBUTES( ev->eventTypeAttribute, sev.eventTypeAttribute );
     SET_SYSTEM_ATTRIBUTE( sev.eventTypeAttribute, ATTR_SUPER_EVENT );
-    
+
     loadTimestamp( &sev );
 
     ev->eventGdcId = currGdcId;
@@ -1092,7 +1165,7 @@ void createSorAndEor( const int sor ) {
     COPY_SYSTEM_ATTRIBUTES( ev->eventTypeAttribute, sev.eventTypeAttribute );
     SET_SYSTEM_ATTRIBUTE( sev.eventTypeAttribute, ATTR_SUPER_EVENT );
     loadTimestamp( &sev );
-    
+
     outputEvent( &sev, sizeof( sev ) );
 
     for ( ldc = ldcsHead; ldc != NULL; ldc = ldc->next ) {
@@ -1111,9 +1184,13 @@ void createEor() {
 } /* End of createEor */
 
 void loadCdh( struct commonDataHeaderStruct * const cdh,
-                    eventIdType            * const eventId ) {
+                    eventIdType            * const eventId,
+                    equipmentIdType id ) {
   if ( !handleCDH ) return;
 
+  // CTP raw-data does not contain CDH
+  if ( id == 4352) return;
+
   if ( gotAliceTrigger ) {
     cdh->cdhEventId1 = EVENT_ID_GET_BUNCH_CROSSING( *eventId );
     cdh->cdhEventId2 = EVENT_ID_GET_ORBIT( *eventId );
@@ -1124,7 +1201,8 @@ void loadCdh( struct commonDataHeaderStruct * const cdh,
   cdh->cdhMiniEventId = cdh->cdhEventId1;
 }
 void decodeCDH( struct ldcEventDescriptorStruct       * const ldc,
-               const struct payloadDescriptorStruct  * const payloadDesc );
+               const struct payloadDescriptorStruct  * const payloadDesc,
+               equipmentIdType id );
 
 void createEvent( void ) {
   assert( workingAs == ldc || workingAs == gdc );
@@ -1132,14 +1210,14 @@ void createEvent( void ) {
   /* Step 1: load all buffers (if needed) and compose the GDC/LDC headers */
   if ( workingAs == gdc ) {
     struct ldcEventDescriptorStruct *ldc;
-    
+
     for( ldc = currGdc->head; ldc != NULL; ldc = ldc->next ) {
       COPY_EVENT_ID( currEventId, ldc->header.eventId );
       loadTimestamp( &ldc->header );
     }
     COPY_EVENT_ID( currEventId, currGdc->header.eventId );
     loadTimestamp( &currGdc->header );
-    
+
     for( ldc = currGdc->head; ldc != NULL; ldc = ldc->next ) {
       struct equipmentEventDescriptorStruct *eq;
       int n;
@@ -1147,10 +1225,11 @@ void createEvent( void ) {
       for ( eq = ldc->head; eq != NULL; eq = eq->next ) {
        if ( !bufferData ) {
          loadBuffer( eq->payload );
-         if ( !currGdc->loaded ) decodeCDH( ldc, eq->payload );
+         decodeCDH( ldc, eq->payload, eq->id );
        }
        loadCdh( (struct commonDataHeaderStruct*)eq->payload->data,
-                &currEventId );
+                &currEventId,
+                eq->id);
       }
 
       if ( !currGdc->loaded ) {
@@ -1163,6 +1242,7 @@ void createEvent( void ) {
        currGdc->loaded = TRUE;
       }
     }
+    cdhRef = NULL;
   } else if ( workingAs == ldc ) {
     struct equipmentEventDescriptorStruct *eq;
 
@@ -1172,24 +1252,26 @@ void createEvent( void ) {
     for ( eq = currLdc->head; eq != NULL; eq = eq->next ) {
       if ( !bufferData ) {
        loadBuffer( eq->payload );
-       if ( !currLdc->loaded ) decodeCDH( currLdc, eq->payload );
+       decodeCDH( currLdc, eq->payload, eq->id );
       }
       loadCdh( (struct commonDataHeaderStruct*)eq->payload->data,
-              &currEventId );
+              &currEventId,
+              eq->id);
       currLdc->loaded = TRUE;
     }
+    cdhRef = NULL;
   }
   ADD_EVENT_ID( currEventId, oneEventDelta );
 
   /* Step 2: output the event */
   if ( workingAs == gdc ) {
     struct ldcEventDescriptorStruct *ldc;
-    
+
     outputEvent( &currGdc->header, sizeof( currGdc->header ) );
 
     for( ldc = currGdc->head; ldc != NULL; ldc = ldc->next ) {
       struct equipmentEventDescriptorStruct *eq;
-      
+
       outputEvent( &ldc->header, sizeof( ldc->header ) );
 
       for ( eq = ldc->head; eq != NULL; eq = eq->next ) {
@@ -1202,9 +1284,9 @@ void createEvent( void ) {
       currGdc = (struct gdcEventDescriptorStruct *)eventsHead;
   } else if ( workingAs == ldc ) {
     struct equipmentEventDescriptorStruct *eq;
-    
+
     outputEvent( &currLdc->header, sizeof( currLdc->header ) );
-      
+
     for ( eq = currLdc->head; eq != NULL; eq = eq->next ) {
       outputEvent( &eq->header, sizeof( eq->header ) );
       outputEvent( eq->payload->data, eq->payload->size );
@@ -1277,7 +1359,7 @@ void parseArgs( int argc, char **argv ) {
       outFileName = arg;
     } else if ( strcmp( "-#", argv[ arg ] ) == 0 ) {
       int n;
-      
+
       if ( ++arg == argc ) exit( usage() );
       if ( sscanf( argv[ arg ], "%d", &n ) != 1 ) exit( usage() );
       if ( n < 0 ) exit( usage() );
@@ -1294,6 +1376,12 @@ void parseArgs( int argc, char **argv ) {
       handleCDH = TRUE;
     } else if ( strcmp( "-D", argv[ arg ] ) == 0 ) {
       bufferData = FALSE;
+    } else if ( strcmp( "-run", argv[ arg ] ) == 0 ) {
+      int runnumber;
+      if ( ++arg == argc ) exit( usage() );
+      if ( sscanf( argv[ arg ], "%d", &runnumber ) != 1 ) exit( usage() );
+      if ( runnumber < 0 ) exit( usage() );
+      currRunNb = runnumber;
     } else {
       fprintf( stderr, "%s: Unknown switch \"%s\"\n", myName, argv[argc] );
       exit( usage() );
@@ -1352,14 +1440,15 @@ void initEquipment( struct equipmentHeaderStruct * const eq ) {
 } /* End of initEquipment */
 
 void decodeCDH(       struct ldcEventDescriptorStruct * const ldc,
-               const struct payloadDescriptorStruct  * const payloadDesc ) {
-  if ( handleCDH ) {
-    static struct commonDataHeaderStruct *cdhRef = NULL;
+               const struct payloadDescriptorStruct  * const payloadDesc,
+                     equipmentIdType id ) {
+  if ( handleCDH && 
+       id != 4352 ) {
     struct commonDataHeaderStruct *cdh;
     static int softwareTriggerIndicator = FALSE;
     int attr;
     int trig;
-    
+
     if ( payloadDesc->size < CDH_SIZE ) {
       fprintf( stderr,
               "%s: payload too small got:%d CDH:%d\n",
@@ -1532,12 +1621,13 @@ void initEvents() {
          gdc != NULL;
          gdc = gdc->next ) {
       struct ldcEventDescriptorStruct *ldc;
-      
+
       initEvent( &gdc->header );
       gdc->header.eventSize = gdc->header.eventHeadSize;
       gdc->header.eventType = PHYSICS_EVENT;
       SET_SYSTEM_ATTRIBUTE( gdc->header.eventTypeAttribute, ATTR_SUPER_EVENT );
       gdc->header.eventGdcId = currGdcId;
+      COPY_DETECTOR_PATTERN(&currDetPattern, gdc->header.eventDetectorPattern);
       for ( ldc = gdc->head; ldc != NULL; ldc = ldc->next ) {
        struct equipmentEventDescriptorStruct *eq;
 
@@ -1545,6 +1635,7 @@ void initEvents() {
        ldc->header.eventSize = ldc->header.eventHeadSize;
        ldc->header.eventType = PHYSICS_EVENT;
        ldc->header.eventGdcId = currGdcId;
+       COPY_DETECTOR_PATTERN(&currDetPattern, ldc->header.eventDetectorPattern);
        ldc->header.eventLdcId = ldc->id;
        for ( eq = ldc->head; eq != NULL; eq = eq->next ) {
          initEquipment( &eq->header );
@@ -1554,7 +1645,7 @@ void initEvents() {
                                  ATTR_ORBIT_BC );
          eq->header.equipmentSize = eq->payload->size + sizeof( eq->header );
          ldc->header.eventSize += eq->header.equipmentSize;
-         decodeCDH( ldc, eq->payload );
+         decodeCDH( ldc, eq->payload, eq->id );
          OR_ALL_ATTRIBUTES( eq->header.equipmentTypeAttribute,
                             ldc->header.eventTypeAttribute );
          OR_ALL_ATTRIBUTES( eq->header.equipmentTypeAttribute,
@@ -1562,6 +1653,7 @@ void initEvents() {
        }
        gdc->header.eventSize += ldc->header.eventSize;
       }
+      cdhRef = NULL;
     }
 
     DBG_VERBOSE {
@@ -1594,7 +1686,7 @@ void initEvents() {
     }
   } else if ( workingAs == ldc ) {
     struct ldcEventDescriptorStruct *ldc;
-      
+
     for ( ldc = (struct ldcEventDescriptorStruct *)eventsHead;
          ldc != NULL;
          ldc = ldc->next ) {
@@ -1613,10 +1705,11 @@ void initEvents() {
                                ATTR_ORBIT_BC );
        eq->header.equipmentSize = eq->payload->size + sizeof( eq->header );
        ldc->header.eventSize += eq->header.equipmentSize;
-       decodeCDH( ldc, eq->payload );
+       decodeCDH( ldc, eq->payload, eq->id );
        OR_ALL_ATTRIBUTES( eq->header.equipmentTypeAttribute,
                           ldc->header.eventTypeAttribute );
       }
+      cdhRef = NULL;
     }
     DBG_VERBOSE {
       printf( "Headers:\n" );
@@ -1651,7 +1744,7 @@ void initVars() {
   currLdc = NULL;
   currEvent = NULL;
   payloadsHead = payloadsTail = NULL;
-  currRunNb = 1;
+  currRunNb = -1;
   numOfLdcs = 0;
   numOfEvents = 1;
   createSorEor = TRUE;