Skip to content

Commit

Permalink
fix: stderr dump
Browse files Browse the repository at this point in the history
  • Loading branch information
c-dilks committed Aug 25, 2024
1 parent 30f0aba commit 7a9ac09
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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()])
Expand Down

0 comments on commit 7a9ac09

Please sign in to comment.