Skip to content
Snippets Groups Projects
Verified Commit de7817bc authored by Michiel Cottaar's avatar Michiel Cottaar
Browse files

Do not override slice_thickness

parent 686d3250
No related branches found
No related tags found
No related merge requests found
...@@ -56,6 +56,9 @@ readouts(ao::AbstractOverlapping) = [readout for (_, _, readout) in interruption ...@@ -56,6 +56,9 @@ readouts(ao::AbstractOverlapping) = [readout for (_, _, readout) in interruption
# For any overlapping building blocks with a single RF pulse, get information about that RF pulse. # For any overlapping building blocks with a single RF pulse, get information about that RF pulse.
for (func_symbol, _) in [Dict(all_variables_symbols)[:pulse]..., :effective_time => ""] for (func_symbol, _) in [Dict(all_variables_symbols)[:pulse]..., :effective_time => ""]
if func_symbol == :slice_thickness
continue
end
@eval function $func_symbol(ao::AbstractOverlapping, args...; kwargs...) @eval function $func_symbol(ao::AbstractOverlapping, args...; kwargs...)
single_pulse = pulses(ao) single_pulse = pulses(ao)
if iszero(length(single_pulse)) if iszero(length(single_pulse))
......
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