-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
/* 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 */
#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;
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 */