Skip to content

Commit

Permalink
Fix default FOV for hybrid SMs
Browse files Browse the repository at this point in the history
  • Loading branch information
jusack authored Apr 4, 2024
1 parent e650dbb commit c77295b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/SystemMatrix/SystemMatrix.jl
Original file line number Diff line number Diff line change
Expand Up @@ -241,10 +241,10 @@ alongside to your FOV-selection."
end
S = SInterp
grid = target
elseif !ismissing(fov)
elseif !isnothing(fov)
grid = RegularGridPositions(calibSize(bSF),calibFov(bSF),calibFovCenter(bSF))
else
grid = RegularGridPositions(calibSize(bSF),ones(Float64, length(calibSize(bSF))),[0.0,0.0,0.0])
grid = RegularGridPositions(calibSize(bSF),ones(Float64, length(calibSize(bSF))),zeros(Float64, length(calibSize(bSF))))
end

if loadasreal
Expand Down

0 comments on commit c77295b

Please sign in to comment.