Commit 5d427866 authored by Javier's avatar Javier

small modification (juobs_const)

functions returns uwreal not a Vector{uwreal}
parent 683b0004
......@@ -39,7 +39,7 @@ const t0_ph = cobs(t0_ph_value, t0_ph_error .^ 2, "sqrt(8 t0) (fm)")
const a_ = t0_ph ./ sqrt.(8 .* t0_)
const M = cobs(M_values, C4, "charmed meson masses")
zm(beta::Float64) = ZM[b_values .== beta]
zm_tm(beta::Float64) = ZM_tm[b_values .== beta]
t0(beta::Float64) = t0_[b_values2 .== beta]
a(beta::Float64) = a_[b_values2 .== beta]
zm(beta::Float64) = ZM[b_values .== beta][1]
zm_tm(beta::Float64) = ZM_tm[b_values .== beta][1]
t0(beta::Float64) = t0_[b_values2 .== beta][1]
a(beta::Float64) = a_[b_values2 .== beta][1]
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment