Skip to content

Commit

Permalink
Fixed values saved in phGradients field in rare_pp.py
Browse files Browse the repository at this point in the history
  • Loading branch information
josalggui committed Oct 18, 2024
1 parent 562a1a2 commit d28bc7a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions seq/rare_pp.py
Original file line number Diff line number Diff line change
Expand Up @@ -265,8 +265,8 @@ def sequenceRun(self, plotSeq=False, demo=False, standalone=False):
ind = self.getIndex(self.etl, nPH, self.sweepMode)
self.mapVals['sweepOrder'] = ind
phGradients = phGradients[ind]
self.mapVals['phGradients'] = phGradients
self.mapVals['slGradients'] = slGradients
self.mapVals['phGradients'] = phGradients.copy()
self.mapVals['slGradients'] = slGradients.copy()

# Normalize gradient list
if phGradAmplitude != 0:
Expand Down

0 comments on commit d28bc7a

Please sign in to comment.