@@ -30,9 +30,15 @@ Copyright (c) 2020-2021 Danny Petschke (danny.petschke@uni-wuerzburg.de). All ri
3030``` python
3131__demoMode = True # disable if running from real data
3232
33- # NOTE : spectrum and IRF (or mono-exponential decay spectrum e.g. 207-Bi) data vectors require equal length!
33+ # NOTE : spectrum and IRF (or mono-exponential decay spectrum) data vectors require equal length!
34+
35+ __roi_start = 0
36+ __roi_end = 7400
3437
3538# file path (and name) to the SPECTRUM data:
39+
40+ __usingRefSpectrum = True # if set to FALSE the '__irfXXX' related parameters are considered
41+
3642__filePathSpec = ' testData/spectrum_10ps.dat'
3743__specDataDelimiter = ' \t '
3844
@@ -44,20 +50,27 @@ __refDataDelimiter = '\t'
4450__skipRows = 5 ;
4551
4652# fixed mono-decay component in units of picoseconds [ps] (1/lambda = tau):
47- # Note: set to something like 1E-6 if you provide numerical IRF data as input such as recorded from 60-Co
48- __tau_monoDecaySpec_in_ps = 182.0 # [ps]
53+
54+ # Note: set to something like 1E-6 if you provide numerical IRF data as input
55+ __tau_monoDecaySpec_in_ps = 182 . # [ps]
56+
57+ __t_zero = 2000 # channel number
58+ __irf_fwhm = [270.04 ,498.63 ] # [ps]
59+ __irf_intensity = [0.9382 ,0.0618 ] # [ps]
60+ __irf_t0 = [0 .,6.6 ] # [ps]
4961
5062# grid of characteristic lifetimes with equally distributed grid points defining the resulting intensity spectrum
51- __gridTau_start = 50 .0 # [ps]
63+ __gridTau_start = 10 .0 # [ps]
5264__gridTau_stop = 3000.0 # [ps]
5365__gridPoints = 100 # 10 ... 100 Note: this value is internally limited to 100 by CONTIN
5466
5567# channel/bin resolution [ps]
56- __channelResolutionInPs = 50.0 # >= 10 ... Note: this value is internally limited by CONTIN
68+ __channelResolutionInPs = 5 . # >= 10 ... Note: this value is internally limited by CONTIN
69+ __binFactor = 1
5770
5871# background estimation:
59- __bkgrd_startIndex = 800 ;
60- __bkgrd_count = 190 ; # number of channels with respect to the 'startIndex'
72+ __bkgrd_startIndex = 6500 ;
73+ __bkgrd_count = 900 ; # number of channels with respect to the 'startIndex'
6174```
6275* <b >execute</b > ` pyDCONTINPALS.py ` <br >
6376
@@ -78,6 +91,7 @@ You can cite all released software versions by using the <b>DOI 10.5281/zenodo.3
7891[ ![ DOI] ( https://zenodo.org/badge/DOI/10.5281/zenodo.3665474.svg )] ( https://doi.org/10.5281/zenodo.3665475 )
7992
8093## `` v1.x ``
94+ <b >pyDCONTINPALS v1.02</b ><br >[ ![ DOI] ( https://zenodo.org/badge/DOI/10.5281/zenodo.4452238.svg )] ( https://doi.org/10.5281/zenodo.4452238 ) <br >
8195<b >pyDCONTINPALS v1.01</b ><br >[ ![ DOI] ( https://zenodo.org/badge/DOI/10.5281/zenodo.4452238.svg )] ( https://doi.org/10.5281/zenodo.4452238 ) <br >
8296<b >pyDCONTINPALS v1.0</b ><br >[ ![ DOI] ( https://zenodo.org/badge/DOI/10.5281/zenodo.3665475.svg )] ( https://doi.org/10.5281/zenodo.3665475 ) <br >
8397
0 commit comments