]> jspc29.x-matter.uni-frankfurt.de Git - daqdata.git/commitdiff
JAM: added log output of first subevents of each stream in eventbuilder.
authorhadaq <hadaq>
Mon, 28 Nov 2011 11:52:08 +0000 (11:52 +0000)
committerhadaq <hadaq>
Mon, 28 Nov 2011 11:52:08 +0000 (11:52 +0000)
Disable this by commenting define TRIGNO_DEBUG

hadaq/evtbuild.c

index d6feb25543504b7bbd873695da76ed41fe76c05d..2a40d0bbf1c506c1cbe0ebd45d36905ea598e7d4 100644 (file)
@@ -1,4 +1,4 @@
-static char *rcsId = "$Header: /misc/hadesprojects/daq/cvsroot/eventbuilder/hadaq/evtbuild.c,v 6.156 2011-11-25 09:00:33 hadaq Exp $";
+static char *rcsId = "$Header: /misc/hadesprojects/daq/cvsroot/eventbuilder/hadaq/evtbuild.c,v 6.157 2011-11-28 11:52:08 hadaq Exp $";
 
 #define _POSIX_C_SOURCE 199309L
 #define SYSLOG_NAMES
@@ -60,6 +60,9 @@ static RFILE *fRemote = NULL;
 /* define this to test fast flushing of queues by double buffer switch*/
 #define QUEUE_FLUSH_FAST 1
 
+/*define this to get log output of first 10 triggernumbers*/
+#define TRIGNO_DEBUG 1
+
 #define NEVTIDS 64UL                   /* must be 2^n */
 #define NEVTIDS_IN_FILE 0UL            /* must be 2^n */
 
@@ -1108,7 +1111,9 @@ int main(int argc, char *argv[])
 #ifdef RFIO
        rfio_openConnection(theArgs, theStats);
 #endif
-
+#ifdef TRIGNO_DEBUG
+       static unsigned trigdbgCnt[100] = { 0 };
+#endif
        int brokenEvtCnt = 0;
        unsigned long popCnt = 0;
        unsigned long popTermCnt = 0;
@@ -1266,11 +1271,18 @@ int main(int argc, char *argv[])
                                currId = currId | (DAQVERSION << 12);
 
                                syslog(LOG_DEBUG, "currTrigNr: 0x%06x, currTrigTag 0x%02x, currId 0x%08x", currTrigNr, currTrigTag, currId);
+
                        }
 
                        trigNr = SubEvt_trigNr(subEvt) >> 8;
                        trigTag = SubEvt_trigNr(subEvt) & 0xff;
-
+#ifdef TRIGNO_DEBUG
+                       if (trigdbgCnt[i]++ < 10) {
+                               sprintf(msglog, "<I> Stream %d initial subevent %d has TrigNr: 0x%06x, TrigTag 0x%02x, currId 0x%08x", i,
+                                               trigdbgCnt[i], trigNr, trigTag, currId);
+                               storeLogInfo(theArgs, msglog);
+                       }
+#endif
                        if (trigNr == currTrigNr) {
                                if (SubEvt_size(subEvt) > SubEvt_hdrSize()) {
                                        /* sub evt is not empty */