From 2b6e4be4c034f711d2ce0e4ded93c19f146bb776 Mon Sep 17 00:00:00 2001 From: Michiel Cottaar <michiel.cottaar@ndcn.ox.ac.uk> Date: Mon, 26 Feb 2024 16:08:04 +0000 Subject: [PATCH] Fix start_time for both event and gradient waveform --- src/containers/building_blocks.jl | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/containers/building_blocks.jl b/src/containers/building_blocks.jl index 7fe8d03..c92a6f6 100644 --- a/src/containers/building_blocks.jl +++ b/src/containers/building_blocks.jl @@ -112,14 +112,16 @@ equal_key(i1, i2) = i1 == i2 function start_time(building_block::BaseBuildingBlock, index) time = 0. + prev_time = 0. for key in keys(building_block) - if equal_key(key, index) - return time - end component = building_block[key] if component isa GradientWaveform + prev_time = time time += duration(component) end + if equal_key(key, index) + return prev_time + end end error("Building block with index '$index' not found") end @@ -219,7 +221,6 @@ function edge_times(bb::BaseBuildingBlock) for key in keys(bb) object = bb[key] if object isa Union{GradientWaveform, RFPulseComponent, InstantGradient} - @show key start_time(bb, key) end_time(bb, key) push!(res, start_time(bb, key)) push!(res, end_time(bb, key)) end -- GitLab