-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
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, "<I> Critical trigger mismatch ratio takes default of %d %% ", (int) theArgs->maxTrigMismatch);
storeLogInfo(theArgs, msglog);
/*return retVal; */
if (lastTrigNr) {
/* check how many events we did lose since last complete one: */
(*theStats->evtsDiscarded) += currTrigNr - lastTrigNr;
- sprintf(msglog, "<I> Discarded %d events at TrigNr: 0x%06x", currTrigNr - lastTrigNr, currTrigNr);
- storeLogInfo(theArgs, msglog);
+ /*sprintf(msglog, "<I> Discarded %d events at TrigNr: 0x%06x", currTrigNr - lastTrigNr, currTrigNr);
+ storeLogInfo(theArgs, msglog); */
lastTrigNr = 0;
} else {
- sprintf(msglog, "<W> Found No valid last trigger nr at TrigNr: 0x%06x", currTrigNr);
- storeLogInfo(theArgs, msglog);
+ /*sprintf(msglog, "<W> 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 */