You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#background calculation (right side of spectrum data):
33
+
__bkgrd_startIndex =8000;
34
+
__bkgrd_count =1500;
35
+
36
+
#NOTE: Spectrum and IRF data vectors require equal length!!!
37
+
38
+
#file path which contains the SPECTRUM data:
39
+
__filePathSpec ='testData/spectrum_5ps.dat'
40
+
__specDataDelimiter ='\t'
41
+
42
+
#file path which contains the IRF data:
43
+
__filePathIRF ='testData/irf_5ps.dat'
44
+
__irfDataDelimiter ='\t'
45
+
46
+
47
+
#using model function for IRF?
48
+
__bUsingModel =True
49
+
50
+
#fit weighting: y variance? w = 1/sqrt(y)
51
+
__bUsingYVarAsWeighting =True
52
+
53
+
#if using model function? choose type of model (also defined in DReconvolutionModel.py):
54
+
#------------------
55
+
#Gaussian = 1
56
+
#Lorentz_Cauchy = 2
57
+
#Pseudovoigt1 = 3
58
+
#Pearson7 = 4
59
+
#------------------
60
+
__modelType = reconvModel.Gaussian
61
+
```
62
+
2. run DReconvolutionProc.py
63
+
3. finished!
64
+
65
+
Note: all parameter estimations required for the best model fit using the levenberg marquardt algorithm are done automatically.
66
+
9
67
# How to cite this Software?
10
68
11
69
You can cite all versions by using the <b>DOI 10.5281/zenodo.1219522</b>. This DOI represents all versions, and will always resolve to the latest one.<br>
0 commit comments