From 5e8a9344ee011c3883a5c44ddc415205cbae1a35 Mon Sep 17 00:00:00 2001 From: hadaq Date: Mon, 28 Nov 2011 11:52:08 +0000 Subject: [PATCH] JAM: added log output of first subevents of each stream in eventbuilder. Disable this by commenting define TRIGNO_DEBUG --- hadaq/evtbuild.c | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/hadaq/evtbuild.c b/hadaq/evtbuild.c index d6feb25..2a40d0b 100644 --- a/hadaq/evtbuild.c +++ b/hadaq/evtbuild.c @@ -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, " 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 */ -- 2.43.0