From cc3b9a9e18d7b7940d9591c35cb0981c43db607d Mon Sep 17 00:00:00 2001 From: hadaq Date: Sun, 14 Aug 2011 14:18:39 +0000 Subject: [PATCH] small adjustments of termination condition in case of too many lost subevents. JAM --- hadaq/evtbuild.c | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/hadaq/evtbuild.c b/hadaq/evtbuild.c index 05cd5c6..d8efa84 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.152 2011-08-12 20:49:45 hadaq Exp $"; +static char *rcsId = "$Header: /misc/hadesprojects/daq/cvsroot/eventbuilder/hadaq/evtbuild.c,v 6.153 2011-08-14 14:18:39 hadaq Exp $"; #define _POSIX_C_SOURCE 199309L #define SYSLOG_NAMES @@ -53,8 +53,8 @@ static RFILE *fRemote = NULL; #define DAQVERSION 2 /* needed by Hydra unpackers */ #define RUNID_INFO_DT 600 /* time in s until not available runid info is logged */ -#define LOST_SUBEVT_LIMIT 10000 /* number of popped subevents per trigger sequence until warning */ -#define LOST_SUBEVT_TERM 10 /* terminate after this number of lost sub warnings per trigger sequence */ +#define LOST_SUBEVT_LIMIT 50000 /* number of popped subevents per trigger sequence until warning */ +#define LOST_SUBEVT_TERM 20 /* terminate after this number of lost sub warnings per trigger sequence */ #define NEVTIDS 64UL /* must be 2^n */ #define NEVTIDS_IN_FILE 0UL /* must be 2^n */ @@ -275,7 +275,7 @@ unsigned long getRunId(TheArgs *my) if (myRunId == 0) { t = time(NULL); dT = t - t0; - if (dT > RUNID_INFO_DT) { + if (dT >= RUNID_INFO_DT) { snprintf(msg, 255, " getRunId: Still waiting for runId from EPICS IOC after %d s...", dT); storeLogInfo(my, msg); printf("%s \n", msg); @@ -1277,6 +1277,9 @@ int main(int argc, char *argv[]) } HadTuQueue_pop(hadTuQueue[i]); step = 1; + popCnt = 0; + popTermCnt = 0; /*reset for each message channel */ + } else if (trigNr < currTrigNr) { if (theArgs->debugOptsCnt) { brokenEvtCnt = Debug_fill(theArgs, theStats, theDebug, i, "pop"); -- 2.43.0