-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparameters.py
91 lines (91 loc) · 1.43 KB
/
parameters.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
fname = {
"ref": {
"name": "g.fits",
"path": "input"
},
"out": {
"residue": {
"path": "data",
"name": "residue_g.fits"
},
"table": {
"path": "data",
"name": "isolist.dat"
}
}
}
ellipse_incial = {
"x0": 1185.0,
"y0": 1384.0,
"sma": 100,
"ellip": 0.47,
"pa": 50
}
ellipse_incial_0 = {
"x0": 1185.0,
"y0": 1384.0,
"sma": 80,
"ellip": 0.47,
"pa": 47
}
guardar = {
"residue": True,
"save_iso": True
}
fit_ell_par = {
"sclip": 2.0,
"nclip": 0,
"fflag": 0.9,
"integrmode": "median",
"cut": 600,
"maxs": 900.0,
"fix": True,
"step0": 0.08,
"step1": 10,
"conver": 0.05,
"minsma": 1
}
fit_ell_par_0 = {
"sclip": 3.0,
"nclip": 5,
"fflag": 1.0,
"integrmode": "median",
"cut": 300,
"maxs": 900,
"fix": True,
"step0": 0.1,
"step1": 5,
"conver": 0.1,
"minsma": 1
}
bkg = {
"bkg": 658.9486947791165,
"mode": "mean"
}
mask = {
"file": "mask.fits",
"path": "../input",
"calc": True,
"nthr": 5.0,
"fwhm": 5.0,
"sharp": [
0.0,
1.5
],
"roundlim": [
-2.0,
2.0
],
"threshold": 75
}
plots = {
"param_plot": True,
"mu_plot": True,
"req": True,
"n_par": 1.2,
"n_mu": 1.2,
"E": 0.146,
"texp": 100.5,
"mu0": 28.1247,
"arcmin": True
}