We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 982c321 commit d7eb1eeCopy full SHA for d7eb1ee
fink_science/ssoft/processor.py
@@ -291,20 +291,20 @@ def estimate_sso_params_spark(ssnamenr, magpsf, sigmapsf, jd, fid, ra, dec, meth
291
MODELS = {
292
'HG': {
293
'p0': [15.0, 0.15],
294
- 'bounds': ([0, 0], [30, 1])
+ 'bounds': ([-3, 0], [30, 1])
295
},
296
'HG1G2': {
297
'p0': [15.0, 0.15, 0.15],
298
- 'bounds': ([0, 0, 0], [30, 1, 1])
+ 'bounds': ([-3, 0, 0], [30, 1, 1])
299
300
'SHG1G2': {
301
'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])
+ 'bounds': ([-3, 0, 0, 3e-1, 0, -np.pi / 2], [30, 1, 1, 1, 2 * np.pi, np.pi / 2])
303
304
'SSHG1G2': {
305
'p0': [15.0, 0.15, 0.15, np.pi, 0.0, 5., 1.05, 1.05, 0.0],
306
'bounds': (
307
- [0, 0, 0, 0, -np.pi / 2, 2.2 / 24.0, 1, 1, -np.pi / 2],
+ [-3, 0, 0, 0, -np.pi / 2, 2.2 / 24.0, 1, 1, -np.pi / 2],
308
[30, 1, 1, 2 * np.pi, np.pi / 2, 1000, 5, 5, np.pi / 2],
309
)
310
0 commit comments