file name of pxi-fsu-time-order to evt.to.fsu.<time>

This commit is contained in:
Ryan Tang 2022-02-14 12:03:49 -05:00
parent ff5d6c6ad7
commit 92573e6251

View File

@ -80,6 +80,14 @@ void saveBuffer( int i, int min_id){
int main(int argc, char **argv) {
// Check that the corrent number of arguments were provided.
if (argc < 3) {
printf("Incorrect number of arguments:\n");
printf("%s [evt File] [timeWindow]\n", argv[0]);
return 1;
}
FILE *fpr, *fpw;
long int fprsize=0, fprsize_orig=0, fprsize_old=-1, fprpos=0;
@ -128,7 +136,8 @@ int main(int argc, char **argv) {
char *filename = strrchr(argv[1], '/');
if (filename == NULL) strcpy(filenameto,argv[1]);
else strcpy(filenameto,filename+1);
strcat(filenameto,".to");
strcat(filenameto,".to.fsu.");
strcat(filenameto, argv[2] );
if ((fpw = fopen(filenameto, "w")) == NULL) {
fprintf(stderr, "Error, cannot open output file %s\n", filenameto);
return 1;