-
Notifications
You must be signed in to change notification settings - Fork 0
/
incorrect_parameters.txt
37 lines (33 loc) · 1.07 KB
/
incorrect_parameters.txt
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
<spectrum simulation>
<after square brackets "[..]" always put ",">
<comments writes here>
<can't comment in comments>
<all parameters must be set>
{
<Energy(keV) range - must be positive:>
'interval': [50, 3000],
<number of bins (put "," after bin number value):>
<must be positive int number>
'num_bin': 300,
<peaks parameters sets in square brackets>
<in defined order: [Intensity(1/s), Energy(keV), FWMH(keV)]>
<peaks parameters must be positive>
'peaks':[
[150, 2000.89, 150.8],
[140, 140.0.5, 135.0],
[130, 1000, 131.0],
[170, 1200, 75.0],
[120, 2999, 50.0],
],
<optional chose for FWMH simulation>
< 0 - FWMH is set from peak parameters>
< 1 - calculating by formula: FWHM = a0+a1*sqrt(E)>
<after opt1 value put ",">
"opt1": 1,
<set the FWMH params for formula FWHM = a0+a1*sqrt(E)>
<if opt1=1 [a0, a1]:>
"FWHM_pars": [0.5, 1],
<background parameters [a, b, c, d] : a*exp(b*E) + c+d*E>
<parameter 'a' must be positive>
'background': [40, -0.01, 50, -0.005],
}