From 7a9ac09eb716c71cbdbc34daf1a832a3ea6ebece Mon Sep 17 00:00:00 2001 From: Christopher Dilks Date: Sun, 25 Aug 2024 11:38:28 -0400 Subject: [PATCH] fix: stderr dump --- .../jlab/clas/timeline/timeline/ftof/ftof_ctof_vtdiff.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/detectors/src/main/java/org/jlab/clas/timeline/timeline/ftof/ftof_ctof_vtdiff.groovy b/detectors/src/main/java/org/jlab/clas/timeline/timeline/ftof/ftof_ctof_vtdiff.groovy index f64aaaa6..501c0e78 100644 --- a/detectors/src/main/java/org/jlab/clas/timeline/timeline/ftof/ftof_ctof_vtdiff.groovy +++ b/detectors/src/main/java/org/jlab/clas/timeline/timeline/ftof/ftof_ctof_vtdiff.groovy @@ -11,7 +11,7 @@ def data = new ConcurrentHashMap() def processDirectory(dir, run) { (1..6).collect{sec-> def h1 = dir.getObject("/tof/ftof-ctof_vtdiff_S${sec}") - System.out.println("DEBUG: run=${run} ent=${h1.getEntries()} int=${h1.integral()}") + System.err.println("DEBUG: run=${run} ent=${h1.getEntries()} int=${h1.integral()}") def f1 = MoreFitter.fitgaus(h1) data.computeIfAbsent(sec, {[]}).add([run:run, h1:h1, f1:f1, mean:f1.getParameter(1), sigma:f1.getParameter(2).abs()])