Skip to content
Snippets Groups Projects
Verified Commit 8abb8163 authored by Tamas Gal's avatar Tamas Gal :speech_balloon:
Browse files

Off-by-one

parent f35919f5
No related branches found
No related tags found
No related merge requests found
Pipeline #29311 passed
......@@ -58,7 +58,7 @@ function main()
end
fit = NeRCA.single_du_fit(du_hits, sparams)
push!(Q, fit.Q)
plot!(du_hits, fit, markercolor=colours[idx % length(colours)], label="DU $(du)", max_z=calib.max_z)
plot!(du_hits, fit, markercolor=colours[idx % length(colours) + 1], label="DU $(du)", max_z=calib.max_z)
write_time_residuals("/data/reco_timeres.csv", event, fit.selected_hits, fit)
end
if sum(Q) < 200 && n_doms > 6 && n_dus > 1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment