static char *rcsId =
- "$Header: /misc/hadesprojects/daq/cvsroot/eventbuilder/hadaq/evtbuild.c,v 6.88 2008-06-06 15:39:50 hadaq Exp $";
+ "$Header: /misc/hadesprojects/daq/cvsroot/eventbuilder/hadaq/evtbuild.c,v 6.89 2008-06-16 15:42:41 hadaq Exp $";
#define _POSIX_C_SOURCE 199309L
char shmname[PARAM_MAX_VALUE_LEN];
unsigned int ebnum;
+ char runinfo2ora[PARAM_MAX_VALUE_LEN];
} TheArgs;
typedef struct TheStatsS
my->buffStat = 0;
my->epicsCtrl = 0;
my->ebnum = 0;
+
+ /* read path from DAQ_SETUP and define full file name */
+ sprintf(my->runinfo2ora,"%s_runinfo2ora.txt",getenv("DAQ_SETUP"));
}
static int argsFromCL (TheArgs * my, int argc, char *argv[])
char ltime[20]; /* local time */
strftime(ltime, 20, "%Y-%m-%d %H:%M:%S", localtime(&t));
- /* read path from DAQ_SETUP and define full file name */
- char runinfo2ora[50];
- sprintf(runinfo2ora,"%s_runinfo2ora.txt",getenv("DAQ_SETUP"));
-
- fp = fopen(runinfo2ora,"a+");
-
- fprintf(fp, "start %d %s %s\n", myArgs->runNr, myArgs->outPath, ltime);
-
+ fp = fopen(myArgs->runinfo2ora,"a+");
+ fprintf(fp, "start %d %d %s %s\n", myArgs->runNr, myArgs->ebnum, myArgs->outPath, ltime);
fclose(fp);
}
char ltime[20]; /* local time */
strftime(ltime, 20, "%Y-%m-%d %H:%M:%S", localtime(&t));
- /* read path from DAQ_SETUP and define full file name */
- char runinfo2ora[50];
- sprintf(runinfo2ora,"%s_runinfo2ora.txt",getenv("DAQ_SETUP"));
-
- fp = fopen(runinfo2ora,"a+");
-
- fprintf(fp, "stop %d %s %s ", myArgs->runNr, ltime, unit(*myStats->evtsComplete));
+ fp = fopen(myArgs->runinfo2ora,"a+");
+ fprintf(fp, "stop %d %d %s %s ", myArgs->runNr, myArgs->ebnum, ltime, unit(*myStats->evtsComplete));
fprintf(fp, "%s\n", unit(*myStats->bytesWritten));
-
fclose(fp);
}
* %j : day of year (001-366) %S : second (00-59)
* %H : hour (00-23)
*/
- strftime (fileName + strlen (fileName), 18, "%y%j%H%M%S",
- localtime (&ourTime));
+ if( theArgs->epicsCtrl && theArgs->ebnum > 0 ) {
+ time_t iocTime;
+ iocTime = theArgs->runNr + TIMEOFFSET;
+ strftime( fileName + strlen(fileName), 18, "%y%j%H%M%S",
+ localtime(&iocTime) );
+ }
+ else
+ strftime( fileName + strlen(fileName), 18, "%y%j%H%M%S",
+ localtime(&ourTime) );
/* if ebnum == 0 then we assume that there is only 1 EB,
* RUNID distribution by IOC is not needed and file name
if (*theStats->bytesWritten == 0)
{
- if( theArgs->epicsCtrl ) {
+ if( theArgs->epicsCtrl )
runNr = getRunId( theArgs );
- res_time = ourTime = runNr + TIMEOFFSET;
- }
- else
- res_time = ourTime = time (NULL);
+/* res_time = ourTime = runNr + TIMEOFFSET; */
+/* } */
+/* else */
+ res_time = ourTime = time (NULL);
char s[20];
time_t my_time;
writeFile (evt);
deleteEvt (evt);
- if( theArgs->epicsCtrl )
- ourTime = newRunId + TIMEOFFSET;
- else
- ourTime = time (NULL);
+/* if( theArgs->epicsCtrl ) */
+/* ourTime = newRunId + TIMEOFFSET; */
+/* else */
+ ourTime = time (NULL);
closeFile ();
- storeInfoStop (argv[0], ourTime - 2, worker, theArgs);
+ storeInfoStop (argv[0], ourTime, worker, theArgs);
/* store simple stop run info */
- storeRunInfoStop(ourTime - 2, theArgs, theStats);
+ storeRunInfoStop(ourTime, theArgs, theStats);
(*theStats->bytesWritten) = 0;
(*theStats->evtsComplete) = 0;
if (theArgs->resdownscale)
closeRESFile (theArgs);
- storeInfoStop (argv[0], ourTime - 2, worker, theArgs);
+ storeInfoStop (argv[0], ourTime, worker, theArgs);
/* store simple stop run info */
- storeRunInfoStop(ourTime - 2, theArgs, theStats);
+ storeRunInfoStop(ourTime, theArgs, theStats);
statsDump (theArgs, theStats, 1);