Skip to content

Commit

Permalink
fix bug in seperate DM recon
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Reeves committed Jan 12, 2015
1 parent f4cc566 commit 4569b6c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pyAOS/RECON.py
Original file line number Diff line number Diff line change
Expand Up @@ -250,8 +250,8 @@ def calcCMat(self,callback=None, progressCallback=None):

for dm in xrange(self.simConfig.nDM):


dmIMat = self.dms[dm].iMat

#Old code which treats each DM iMat seperately
if dmIMat.shape[0]==dmIMat.shape[1]:
dmCMat = numpy.linalg.pinv(dmIMat)
Expand Down
2 changes: 1 addition & 1 deletion pyAOS/pyAOS_gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -548,7 +548,7 @@ def progressUpdate(self, message, i="", maxIter=""):
class LoopThread(QtCore.QThread):
updateProgressSignal = QtCore.pyqtSignal(str,str,str)

def __init__(self,guiObj):
def __init__(self, guiObj):

QtCore.QThread.__init__(self)
#multiprocessing.Process.__init__(self)
Expand Down

0 comments on commit 4569b6c

Please sign in to comment.