-static char *rcsId = "$Header: /misc/hadesprojects/daq/cvsroot/eventbuilder/hadaq/evtbuild.c,v 6.149 2011-08-09 14:56:08 hadaq Exp $";
+static char *rcsId = "$Header: /misc/hadesprojects/daq/cvsroot/eventbuilder/hadaq/evtbuild.c,v 6.150 2011-08-10 11:45:07 hadaq Exp $";
#define _POSIX_C_SOURCE 199309L
#define SYSLOG_NAMES
struct timespec tv = { 0, 1e+8 };
static time_t t0 = 0;
+ t0 = time(NULL);
time_t t, dT;
-
while (my->epicsCtrl && myRunId == 0) {
sprintf(buf, "daq_evtbuild%s", my->shmname);
int retVal = 0;
if (theArgs->maxTrigMismatch == -1) {
- return retVal;
+ theArgs->maxTrigMismatch = 0.3; /* JAM: set reasonable default if not specified */
+ sprintf(msglog, "<I> Critical trigger mismatch ratio takes default of %f", theArgs->maxTrigMismatch);
+ storeLogInfo(theArgs, msglog);
+ /*return retVal; */
}
/* min file size to start checking */
evt = Evt_appendSubEvt(evt, subEvt);
}
- if (i > 0) {
- HadTuQueue_pop(hadTuQueue[i]); /* delay pop of master stream until broken checked */
- }
+ HadTuQueue_pop(hadTuQueue[i]); /* delay pop of master stream until broken checked */
step = 1;
} else if (trigNr < currTrigNr) {
if (theArgs->debugOptsCnt) {
/* BUGBUG subevt discarded, not in statistic */
HadTuQueue_pop(hadTuQueue[i]);
step = 0;
- popMaster = 0; /* do not pop subevent of master channel in this case. needed for next cycle */
- failTrigNr = trigNr; /* remember skipped trigger number for debug output */
popCnt++;
if (popCnt > 10000) {
if (theArgs->debugOptsCnt)
Debug_printPopTrigMismatch(theArgs, theStats, theDebug, i);
- goto bailOut1;
+
+ /* JAM: do not bail out, but display problem message.
+ * Termination should be done by real discarded events amount
+ * Or by human operator...*/
+ sprintf(msglog, "<W> Subevent stream %d has popped nr:%d queue entries to sync with master stream!", i,
+ popCnt);
+ storeLogInfo(theArgs, msglog);
+ /* goto bailOut1; */
}
} else {
if (theArgs->debugOptsCnt) {
}
}
- /* New JAM: treat case that master stream has lost a packet */
- if (popMaster) {
- /* Regular case: delayed pop of last master stream entry after check ok */
- HadTuQueue_pop(hadTuQueue[0]);
- if (HadTuQueue_empty(hadTuQueue[0])) {
- desHadTuQueue(hadTuQueue[0]);
- free(hadTuQueue[0]);
- hadTuQueue[0] = NULL;
- ShmTrans_free(shmTrans[0]);
- }
- } else {
- /* display error and keep last event in hope for later synchronization */
- sprintf(msglog, "<W> Master message stream has missed trigger sequence nr:%d. Kept subevent nr %d in master queue",
- failTrigNr, currTrigNr);
- storeLogInfo(theArgs, msglog);
- }
-
if (!evtIsBroken) {
if (theArgs->debugOptsCnt) {