From eb4dc7252a1010855b11e1dd8983dbabf7e29b6d Mon Sep 17 00:00:00 2001 From: hadaq Date: Wed, 22 Feb 2012 15:05:20 +0000 Subject: [PATCH] JAM: disabled critical trigger mismatch check disabled improved event statistics debug --- hadaq/evtbuild.c | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/hadaq/evtbuild.c b/hadaq/evtbuild.c index b27b7ee..d9a626e 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.158 2012-02-22 13:54:48 hadaq Exp $"; +static char *rcsId = "$Header: /misc/hadesprojects/daq/cvsroot/eventbuilder/hadaq/evtbuild.c,v 6.159 2012-02-22 15:05:20 hadaq Exp $"; #define _POSIX_C_SOURCE 199309L #define SYSLOG_NAMES @@ -303,7 +303,8 @@ int isMismatchCritical(TheArgs *theArgs, TheStats *my) int retVal = 0; if (theArgs->maxTrigMismatch == -1) { - theArgs->maxTrigMismatch = 90; /* JAM: set reasonable default if not specified */ + return retVal; /*test: keep EB alive even with big losses! */ + theArgs->maxTrigMismatch = 500; /* 90 JAM: set reasonable default if not specified */ sprintf(msglog, " Critical trigger mismatch ratio takes default of %d %% ", (int) theArgs->maxTrigMismatch); storeLogInfo(theArgs, msglog); /*return retVal; */ @@ -1504,12 +1505,12 @@ int main(int argc, char *argv[]) if (lastTrigNr) { /* check how many events we did lose since last complete one: */ (*theStats->evtsDiscarded) += currTrigNr - lastTrigNr; - sprintf(msglog, " Discarded %d events at TrigNr: 0x%06x", currTrigNr - lastTrigNr, currTrigNr); - storeLogInfo(theArgs, msglog); + /*sprintf(msglog, " Discarded %d events at TrigNr: 0x%06x", currTrigNr - lastTrigNr, currTrigNr); + storeLogInfo(theArgs, msglog); */ lastTrigNr = 0; } else { - sprintf(msglog, " Found No valid last trigger nr at TrigNr: 0x%06x", currTrigNr); - storeLogInfo(theArgs, msglog); + /*sprintf(msglog, " Found No valid last trigger nr at TrigNr: 0x%06x", currTrigNr); + storeLogInfo(theArgs, msglog); */ (*theStats->evtsDiscarded)++; } /* Check if triger mismatch is large enough to exit */ -- 2.43.0