}
syslog(LOG_DEBUG, "EB numder: %d", my->ebnum);
}
+
+int Args_prefixCode(TheArgs *my)
+{
+ char alphabet[] = "abcdefghijklmnopqrstuvwxyz";
+ int code = 0;
+ int i, j;
+
+ /* Loop over prefix */
+ for (j = 0; j < 2; j++) {
+
+ /* Loop over letters of Alphabet */
+ for (i = 0; i < 26; i++) {
+
+ if (alphabet[i] == my->expId[j]) {
+
+ /*
+ * Build prefix code:
+ * add 1 to the code to get rid of zero's
+ * in case of 'aa' prefix.
+ */
+ code = code * 100 + i + 1;
+ }
+ }
+ }
+
+ return code;
+}
int Args_check(TheArgs *my);
int Args_fromParam(TheArgs *my, int argc, char *argv[]);
void Args_dump(TheArgs *my);
+int Args_prefixCode(TheArgs *my);
#endif
-static char *rcsId = "$Header: /misc/hadesprojects/daq/cvsroot/eventbuilder/hadaq/evtbuild.c,v 6.142 2010-10-28 17:27:25 hadaq Exp $";
+static char *rcsId = "$Header: /misc/hadesprojects/daq/cvsroot/eventbuilder/hadaq/evtbuild.c,v 6.143 2010-11-24 15:02:11 hadaq Exp $";
#define _POSIX_C_SOURCE 199309L
#define SYSLOG_NAMES
theStats->nrOfMsgs = Worker_addStatistic(worker, "nrOfMsgs");
(*theStats->nrOfMsgs) = theArgs->nrOfMsgs;
+ /*
+ * We have to code prefix string to a number since
+ * we cannot pass a string via shared memory.
+ */
+ theStats->prefixCode = Worker_addStatistic(worker, "prefix");
+ (*theStats->prefixCode) = Args_prefixCode(theArgs);
+
theStats->PID = Worker_addStatistic(worker, "PID");
theStats->coreNr = Worker_addStatistic(worker, "coreNr");
unsigned long *diskNrEB;
unsigned long *PID;
unsigned long *coreNr;
+ unsigned long *prefixCode;
} TheStats;