Skip to content

Commit

Permalink
update default exclusion radius units
Browse files Browse the repository at this point in the history
  • Loading branch information
wbalmer authored Jun 18, 2024
1 parent bbe73ed commit c8b8b07
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spaceKLIP/analysistools.py
Original file line number Diff line number Diff line change
Expand Up @@ -1297,9 +1297,9 @@ def extract_companions(self,
else:
dr = kwargs['dr']
if 'exclr' not in kwargs.keys() or kwargs['exclr'] is None:
exclr = 3
exclr = 3*resolution
else:
exclr = kwargs['exclr']
exclr = kwargs['exclr']*resolution
if 'xrange' not in kwargs.keys() or kwargs['xrange'] is None:
xrange = 2.
else:
Expand Down

0 comments on commit c8b8b07

Please sign in to comment.