Skip to content

Commit

Permalink
Merge pull request #128 from lsst/tickets/DM-45829
Browse files Browse the repository at this point in the history
DM-45829: Increase tract fit number of iterations and update reference value.
  • Loading branch information
erykoff authored Aug 19, 2024
2 parents 23fb38f + 9ff9ff8 commit 95f7a67
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions tests/config/fgcmCalibrateTractTableHsc.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,6 @@
config.fgcmFitCycle.useRepeatabilityForExpGrayCutsDict = {'g': True,
'r': True,
'i': True}
config.fgcmFitCycle.maxIterBeforeFinalCycle = 20

config.connections.refCat = 'ps1_pv3_3pi_20170110'
2 changes: 1 addition & 1 deletion tests/fgcmcalTestBase.py
Original file line number Diff line number Diff line change
Expand Up @@ -816,7 +816,7 @@ def _testFgcmCalibrateTract(self, instName, testName, visits, tract, skymapName,

repeatabilityCat = butler.get(list(repRefs)[0])
repeatability = repeatabilityCat['rawRepeatability'][:]
self.assertFloatsAlmostEqual(repeatability, rawRepeatability, atol=5e-5)
self.assertFloatsAlmostEqual(repeatability, rawRepeatability, atol=5e-4)

# Check that the number of photoCalib objects in each filter are what we expect
for filterName in filterNCalibMap.keys():
Expand Down
2 changes: 1 addition & 1 deletion tests/test_fgcmcal_hsc.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ def test_fgcmcalTractPipeline(self):

rawRepeatability = np.array([0.0,
0.003440500079097844,
0.004095912225403857])
0.006802523624309591])
filterNCalibMap = {'HSC-R': 12,
'HSC-I': 15}

Expand Down

0 comments on commit 95f7a67

Please sign in to comment.