From 807281fdd6aa8300f7f4a57460c3a369d5310907 Mon Sep 17 00:00:00 2001 From: tlatorre Date: Thu, 20 Jun 2019 12:31:33 -0500 Subject: update zdab-cat to emit multiple YAML documents This commit updates zdab-cat to output each event as an individual YAML document. The advantage of this is that we can then iterate over these without loading the entire YAML document in submit-grid-jobs which means that we won't use GB of memory on the grid submission node. --- src/zdab-cat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/zdab-cat.c b/src/zdab-cat.c index d661752..3178626 100644 --- a/src/zdab-cat.c +++ b/src/zdab-cat.c @@ -161,7 +161,7 @@ int main(int argc, char **argv) continue; } - if (fout) fprintf(fout, " -\n"); + if (fout) fprintf(fout, "---\n"); if (bmast.links[KMAST_MC-1] == 0) goto skip_mc; -- cgit