Skip to content

Commit

Permalink
Added missing bracket
Browse files Browse the repository at this point in the history
  • Loading branch information
DaGeibl committed Feb 28, 2025
1 parent 2ba3dd2 commit 199a476
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lqcut.jl
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ function lq_ctc_correction(
pol_fit_func = report_µ.f_fit

# property function for drift time correction
lq_class_func = "$lq_e_corr_expression - " * join(["$(par[i]) * $dt_eff_expression^$(i-1)" for i in eachindex(par)], " - ")
lq_class_func = "$lq_e_corr_expression - " * join(["($(par[i]) * $dt_eff_expression)^$(i-1)" for i in eachindex(par)], " - ")
lq_class_func_generic = "lq / e - (slope * qdrift / e + y_inter)"

# create result and report
Expand Down

0 comments on commit 199a476

Please sign in to comment.