Commit 2ac619d1 authored by Wei Chengliang's avatar Wei Chengliang
Browse files

bug fixed

parent 4ad7acd0
Pipeline #7373 passed with stage
in 0 seconds
...@@ -366,7 +366,8 @@ class PSFInterp(PSFModel): ...@@ -366,7 +366,8 @@ class PSFInterp(PSFModel):
if galsimGSObject: if galsimGSObject:
if extrapolate is True: if extrapolate is True:
imPSFt = imPSF imPSFt = np.zeros([ngg+1, ngg+1])
imPSFt[:-1, :-1] = imPSF
else: else:
imPSFt = np.zeros([257, 257]) imPSFt = np.zeros([257, 257])
imPSFt[0:256, 0:256] = imPSF imPSFt[0:256, 0:256] = imPSF
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment