my->resdownscale = 0;
my->resdown_offset = 0;
my->resnumevents = -1;
+ my->resfirstevent = 5; /* JAM: start writing to resfile after this event only */
my->secsizelimit = 0.;
my->ressizelimit = 0;
strcpy(my->respath, "");
{"multidisks", 1, 0, 'k'},
{"maxtrigmismatch", 1, 0, 'g'},
{"log", 1, 0, 'Y'},
+ {"resbeginevent", 1, 0, 'b'},
{0, 0, 0, 0}
};
- i = getopt_long(argc, argv, "am:f:r:o:d:q:Q:p:v:x:I:tz:e:n:h:w:Hs:l:R:A:bEL:S:B:O:iW:M:F:X:C:D:T:k:g:Y:", long_options,
+ i = getopt_long(argc, argv, "am:f:r:o:d:q:Q:p:v:x:I:tz:e:n:h:w:Hs:l:R:A:bEL:S:B:O:iW:M:F:X:C:D:T:k:g:Y:b:", long_options,
&option_index);
if (i == -1)
break;
case 'Y':
strcpy(my->log, optarg);
break;
+ case 'b':
+ my->resfirstevent = strtoul(optarg, NULL, 0);
+ break;
case 'H':
return -1;
break;
}
if (my->resdownscale != 0) {
syslog(LOG_DEBUG, "resdownscale: %ld", my->resdownscale);
+ syslog(LOG_DEBUG, "resfirstevent: %ld", my->resfirstevent);
syslog(LOG_DEBUG, "resnumevents: %ld", my->resnumevents);
syslog(LOG_DEBUG, "respath: %s", my->respath);
syslog(LOG_DEBUG, "secsizelimit: %ld", my->secsizelimit);
-static char *rcsId = "$Header: /misc/hadesprojects/daq/cvsroot/eventbuilder/hadaq/evtbuild.c,v 6.162 2012-03-29 11:47:27 hadaq Exp $";
+static char *rcsId = "$Header: /misc/hadesprojects/daq/cvsroot/eventbuilder/hadaq/evtbuild.c,v 6.163 2012-04-02 10:34:08 hadaq Exp $";
#define _POSIX_C_SOURCE 199309L
#define SYSLOG_NAMES
syslog(LOG_ERR, "");
syslog(LOG_ERR, "Options for second data stream with a fraction of the data:");
syslog(LOG_ERR, " [--resnumevents evt_num] Maximum number of events in a resfile");
+ syslog(LOG_ERR, " [--resbeginevent skip_num] Start writing to resfile after skip_num skipped events");
syslog(LOG_ERR, " [--respath path] Path for the res directory.");
syslog(LOG_ERR, " [--secsizelimit max_size] Maximum size of second directory with the mirrored data [in MB].");
syslog(LOG_ERR, " [--ressizelimit max_file_num] Maximum number of files in res dir");
if (theArgs->resdownscale) {
- /*
- * If the setting are as follows:
- * EVENT_NUM_OFFSET == 100
- * theArgs->resdown_offset == 5 (100 / 20)
- * (where resdown_offset = EVENT_NUM_OFFSET / resdownscale)
- * then from each 100 events only
- * first 5 events are written to refFile.
- */
- if (((*theStats->evtsComplete) % EVENT_NUM_OFFSET) < theArgs->resdown_offset) {
- (*theStats->evtsRes)++;
- Res_writeFile(evt, runNr, seqNr);
+ /* my->resstartevent */
+ if (*theStats->evtsComplete < theArgs->resfirstevent) {
+ /*JAM skip first n events workaround to avoid QA crashes */
+ } else {
+ if (*theStats->evtsComplete == theArgs->resfirstevent) {
+ /* give some debug statement that we started writing */
+ sprintf(msglog, "<I> Started writing resfile after %d skipped initial events", *theStats->evtsComplete);
+ storeLogInfo(theArgs, msglog);
+ }
+
+
+ /*
+ * If the setting are as follows:
+ * EVENT_NUM_OFFSET == 100
+ * theArgs->resdown_offset == 5 (100 / 20)
+ * (where resdown_offset = EVENT_NUM_OFFSET / resdownscale)
+ * then from each 100 events only
+ * first 5 events are written to refFile.
+ */
+ if (((*theStats->evtsComplete) % EVENT_NUM_OFFSET) < theArgs->resdown_offset) {
+ (*theStats->evtsRes)++;
+ Res_writeFile(evt, runNr, seqNr);
+ }
}
}
if (theArgs->online)