Skip to content

Commit

Permalink
Merge pull request #76 from MagneticParticleImaging/JA/fixSFDatabase
Browse files Browse the repository at this point in the history
fix SFDatabase for smaller calibSizes
  • Loading branch information
tknopp authored Apr 5, 2024
2 parents a57d11a + b0f88d7 commit 292ef87
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/DatasetStore/SFDatabase.jl
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,8 @@ function _innerGenerateSFDatabase(A,i,sf,b)
end
N = calibSize(b)
A[i,6] = N[1]
A[i,7] = N[2]
A[i,8] = N[3]
A[i,7] = try N[2]; catch; 0 end
A[i,8] = try N[3]; catch; 0 end
A[i,9] = rxBandwidth(b) / 1e6
A[i,10] = tracerName(b)[1]
A[i,11] = tracerBatch(b)[1]
Expand Down

0 comments on commit 292ef87

Please sign in to comment.