Skip to content

Commit

Permalink
Fix index error in crosstalk mock.
Browse files Browse the repository at this point in the history
  • Loading branch information
czwa committed Jun 9, 2023
1 parent bf28802 commit 3e33528
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/lsst/ip/isr/isrMock.py
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ def makeImage(self):
if self.config.isTrimmed else ampT.getRawDataBBox()]
outAmp = ctCalib.extractAmp(exposure.getImage(), ampS, ampT,
isTrimmed=self.config.isTrimmed)
self.amplifierAddCT(outAmp, ampDataT, self.crosstalkCoeffs[idxT][idxS])
self.amplifierAddCT(outAmp, ampDataT, self.crosstalkCoeffs[idxS][idxT])

for amp in exposure.getDetector():
bbox = None
Expand Down

0 comments on commit 3e33528

Please sign in to comment.