Skip to content

Commit 5779e44

Browse files
fix changes from lineofsight
1 parent 43bca7c commit 5779e44

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

soapy/wfs/base.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ def __init__(
147147
self.calcInitParams()
148148
# If GS not at infinity, find meta-pupil radii for each layer
149149
if self.config.GSHeight != 0:
150-
self.radii = self.los.findMetaPupilSize(self.config.GSHeight)
150+
self.radii = self.los.findMetaPupilSizes(self.config.GSHeight)
151151
else:
152152
self.radii = None
153153

@@ -239,7 +239,7 @@ def initLGS(self):
239239
self.elongPhaseAdditions = numpy.zeros(
240240
(self.elongLayers, self.los.nOutPxls, self.los.nOutPxls))
241241
for i in xrange(self.elongLayers):
242-
self.elongRadii[i] = self.los.findMetaPupilSize(
242+
self.elongRadii[i] = self.los.findMetaPupilSizes(
243243
float(self.elongHeights[i]))
244244
self.elongPhaseAdditions[i] = self.calcElongPhaseAddition(i)
245245
self.elongPos[i] = self.calcElongPos(i)

0 commit comments

Comments
 (0)