]> jspc29.x-matter.uni-frankfurt.de Git - daqdata.git/commitdiff
JAM: disabled critical trigger mismatch check
authorhadaq <hadaq>
Wed, 22 Feb 2012 15:05:20 +0000 (15:05 +0000)
committerhadaq <hadaq>
Wed, 22 Feb 2012 15:05:20 +0000 (15:05 +0000)
disabled improved event statistics debug

hadaq/evtbuild.c

index b27b7ee3e3cbfac492951b923c00c5fcdae186e9..d9a626e701551d418456bb1b56cc3fbd42ae90ed 100644 (file)
@@ -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, "<I> 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, "<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 */