From cae9949e891b63856f67180effd31eae2257d4f6 Mon Sep 17 00:00:00 2001 From: Michiel Cottaar <michiel.cottaar@ndcn.ox.ac.uk> Date: Thu, 21 Mar 2024 10:29:29 +0000 Subject: [PATCH] Remove passing on multiple sequences to edge_times This was confusing for sequences with different TR's --- src/containers/abstract.jl | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/containers/abstract.jl b/src/containers/abstract.jl index 671587d..d58fa1a 100644 --- a/src/containers/abstract.jl +++ b/src/containers/abstract.jl @@ -54,7 +54,7 @@ Return the times of all of the readout events in ms. function readout_times end """ - edge_times(container(s)) + edge_times(container) Returns all the edge times during a sequence in ms. @@ -62,10 +62,8 @@ Edges are defined as any time, when: - the edge of a building block - the slope of the gradient profile changes suddenly - an RF pulse starts or ends - -Multiple sequences can be passed on. In that case the edges in all sequences are returned (in a sorted vector). """ -edge_times(containers::AbstractVector{<:ContainerBlock}) = sort(unique(vcat(edge_times.(containers)))) +function edge_times end """ gradient_strength(sequence, time) -- GitLab