From c43bb688c6cfac6cee39612b862d8a909f150493 Mon Sep 17 00:00:00 2001 From: tlatorre Date: Fri, 24 May 2019 14:13:48 -0400 Subject: add a script to submit jobs to the grid --- src/zdab-cat.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/zdab-cat.c') diff --git a/src/zdab-cat.c b/src/zdab-cat.c index a109b46..d891c78 100644 --- a/src/zdab-cat.c +++ b/src/zdab-cat.c @@ -92,7 +92,9 @@ int main(int argc, char **argv) fprintf(stderr, "failed to open '%s': %s\n", output, strerror(errno)); return 1; } + } + if (fout) { fprintf(fout, "git_sha1: %s\n", GitSHA1()); fprintf(fout, "git_dirty: %s\n", GitDirty()); fprintf(fout, "data:\n"); @@ -293,7 +295,8 @@ skip_mc: nhit = get_nhit(&ev); if (fout) { - fprintf(fout, " - gtid: %i\n", ev.gtid); + fprintf(fout, " - run: %i\n", ev.run); + fprintf(fout, " gtid: %i\n", ev.gtid); fprintf(fout, " nhit: %zu\n", nhit); } -- cgit