Skip to content

Commit d7eb1ee

Browse files
committed
Update bounds for H
1 parent 982c321 commit d7eb1ee

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

fink_science/ssoft/processor.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -291,20 +291,20 @@ def estimate_sso_params_spark(ssnamenr, magpsf, sigmapsf, jd, fid, ra, dec, meth
291291
MODELS = {
292292
'HG': {
293293
'p0': [15.0, 0.15],
294-
'bounds': ([0, 0], [30, 1])
294+
'bounds': ([-3, 0], [30, 1])
295295
},
296296
'HG1G2': {
297297
'p0': [15.0, 0.15, 0.15],
298-
'bounds': ([0, 0, 0], [30, 1, 1])
298+
'bounds': ([-3, 0, 0], [30, 1, 1])
299299
},
300300
'SHG1G2': {
301301
'p0': [15.0, 0.15, 0.15, 0.8, np.pi, 0.0],
302-
'bounds': ([0, 0, 0, 3e-1, 0, -np.pi / 2], [30, 1, 1, 1, 2 * np.pi, np.pi / 2])
302+
'bounds': ([-3, 0, 0, 3e-1, 0, -np.pi / 2], [30, 1, 1, 1, 2 * np.pi, np.pi / 2])
303303
},
304304
'SSHG1G2': {
305305
'p0': [15.0, 0.15, 0.15, np.pi, 0.0, 5., 1.05, 1.05, 0.0],
306306
'bounds': (
307-
[0, 0, 0, 0, -np.pi / 2, 2.2 / 24.0, 1, 1, -np.pi / 2],
307+
[-3, 0, 0, 0, -np.pi / 2, 2.2 / 24.0, 1, 1, -np.pi / 2],
308308
[30, 1, 1, 2 * np.pi, np.pi / 2, 1000, 5, 5, np.pi / 2],
309309
)
310310
},

0 commit comments

Comments
 (0)