Skip to content

Commit

Permalink
Update the size restrictions for peaks and area time peaks
Browse files Browse the repository at this point in the history
  • Loading branch information
fred3m committed Dec 17, 2024
1 parent 677635a commit fabfba0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/lsst/meas/extensions/scarlet/scarletDeblendTask.py
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ class ScarletDeblendConfig(pexConfig.Config):

# Size restrictions
maxNumberOfPeaks = pexConfig.Field[int](
default=200,
default=400,
doc=(
"Only deblend the brightest maxNumberOfPeaks peaks in the parent"
" (<= 0: unlimited)"
Expand All @@ -399,7 +399,7 @@ class ScarletDeblendConfig(pexConfig.Config):
),
)
maxAreaTimesPeaks = pexConfig.Field[int](
default=10_000_000,
default=100_000_000,
doc=(
"Maximum rectangular footprint area * nPeaks in the footprint. "
"This was introduced in DM-33690 to prevent fields that are crowded or have a "
Expand Down

0 comments on commit fabfba0

Please sign in to comment.