Skip to content

Commit

Permalink
Change bound for noise^2 in EXPAPPROXIMATION
Browse files Browse the repository at this point in the history
  • Loading branch information
plazas committed Nov 18, 2020
1 parent de6b0bb commit 6971aa3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/lsst/cp/pipe/ptc.py
Original file line number Diff line number Diff line change
Expand Up @@ -1005,8 +1005,8 @@ def errFunc(p, x, y):
ptcFunc = funcAstier
parsIniPtc = [-1e-9, 1.0, 10.] # a00, gain, noise
# lowers and uppers obtained from studies by C. Lage (UC Davis, 11/2020).
bounds = self._boundsForAstier(parsIniPtc, lowers=[-1e-4, 0.5, -100],
uppers=[1e-4, 2.5, 100])
bounds = self._boundsForAstier(parsIniPtc, lowers=[-1e-4, 0.5, -2000],
uppers=[1e-4, 2.5, 2000])
if ptcFitType == 'POLYNOMIAL':
ptcFunc = funcPolynomial
parsIniPtc = self._initialParsForPolynomial(self.config.polynomialFitDegree + 1)
Expand Down

0 comments on commit 6971aa3

Please sign in to comment.