![]() |
KaliVeda
Toolkit for HIC analysis
|
Function for fitting PID mass spectra.
This class is used by KVIDZAFromZGrid (and in the GUI for determining identified isotopes with such grids, KVItvFinderDialog) in order to fit PID mass spectra for a given \(Z\) with a set of gaussians and a background function. The fit can then be used to calculate yields of each isotope, probability that a given PID value is associated with a certain \(A\), mean/most probable \(A\) for a given PID, mass distribution \(P(A|PID)\) for given PID, etc. etc.
The function used to fit the PID spectrum is
\[ N(PID) = \exp(b_0 + b_1*PID) + \sum_{i=1}^{N_{iso}} N_i \mathcal{G}(PID,f(A_i),\sigma) \]
where:
\[ f(A_i) = a_0 + a_1 A_i + a_2 A_i^2 \]
Note that the same width \(\sigma\) is used for all isotopes \(A_i\) of a given element \(Z\).
The probability that a given PID value is associated with the mass number \(A_i\) is then given by
\[ P(A_i|PID) = \frac{N_i \mathcal{G}(PID,f(A_i),\sigma)}{N(PID)} \]
Definition at line 51 of file KVMultiGaussIsotopeFit.h.
#include <KVMultiGaussIsotopeFit.h>
Private Types | |
enum | fit_param_index { bkg_cst = 1 , bkg_slp = 2 , gauss_wid = 3 , pidvsA_a0 = 4 , pidvsA_a1 = 5 , pidvsA_a2 = 6 } |
Private Member Functions | |
double | centroid_fit (double *x, double *p) |
double | FitFunc (double *x, double *p) |
|
private |
Enumerator | |
---|---|
bkg_cst | |
bkg_slp | |
gauss_wid | |
pidvsA_a0 | |
pidvsA_a1 | |
pidvsA_a2 |
Definition at line 52 of file KVMultiGaussIsotopeFit.h.
|
inlineprivate |
centroids of gaussians are expected to increase linearly with mass A but we allow a quadratic dependence
Definition at line 60 of file KVMultiGaussIsotopeFit.h.
|
inlineprivate |
Definition at line 73 of file KVMultiGaussIsotopeFit.h.