Skip to content

Commit

Permalink
fixup! add algorithm to measure local background
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulPrice committed Feb 13, 2018
1 parent f2a8238 commit 922cc3d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/test_localBackground.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,7 @@ def setUp(self):
self.annulusInner = 5
self.annulusOuter = 15
psfSize = self.dataset.psfShape.getDeterminantRadius()
self.numPix = np.pi*(self.annulusOuter**2 - self.annulusInner**2)*psfSize
print(self.numPix)
self.numPix = np.pi*(self.annulusOuter**2 - self.annulusInner**2)*psfSize**2

def tearDown(self):
del self.bbox
Expand Down

0 comments on commit 922cc3d

Please sign in to comment.