Skip to content

Commit

Permalink
Merge pull request #103 from lsst/tickets/DM-48191
Browse files Browse the repository at this point in the history
DM-48191: Update the size restrictions for peaks and area time peaks
  • Loading branch information
fred3m authored Dec 19, 2024
2 parents 677635a + 6f1ade4 commit 1fddf4a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions python/lsst/meas/extensions/scarlet/scarletDeblendTask.py
Original file line number Diff line number Diff line change
Expand Up @@ -385,21 +385,21 @@ class ScarletDeblendConfig(pexConfig.Config):

# Size restrictions
maxNumberOfPeaks = pexConfig.Field[int](
default=200,
default=600,
doc=(
"Only deblend the brightest maxNumberOfPeaks peaks in the parent"
" (<= 0: unlimited)"
),
)
maxFootprintArea = pexConfig.Field[int](
default=1_000_000,
default=2_000_000,
doc=(
"Maximum area for footprints before they are ignored as large; "
"non-positive means no threshold applied"
),
)
maxAreaTimesPeaks = pexConfig.Field[int](
default=10_000_000,
default=1_000_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 1fddf4a

Please sign in to comment.