Skip to content
Snippets Groups Projects
Commit e543d47d authored by FETICK Romain's avatar FETICK Romain
Browse files

Change shift orientation

parent a687fb96
No related branches found
No related tags found
No related merge requests found
...@@ -508,7 +508,7 @@ class Psfao(ParametricPSF): ...@@ -508,7 +508,7 @@ class Psfao(ParametricPSF):
else: else:
dlFTO = 1. dlFTO = 1.
X, Y = self._shift_array(self.Npix[0]*self._k,self.Npix[1]*self._k) X, Y = self._shift_array(self.Npix[0]*self._k,self.Npix[1]*self._k)
return np.exp(-Dphi/2.)*dlFTO*np.exp(X*dx*self._k + Y*dy*self._k) return np.exp(-Dphi/2.)*dlFTO*np.exp(-X*dx*self._k - Y*dy*self._k)
def __call__(self,x0,dx=0,dy=0): def __call__(self,x0,dx=0,dy=0):
""" """
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment