Example to illustrate deconvolution function (class TSpectrum).
void Deconvolution_wide_boost() {
h->SetTitle(
"Deconvolution of closely positioned overlapping peaks using boosted Gold deconvolution method");
d = (
TH1F*)
f->Get(
"decon_response_wide");
for (i = 0; i < nbins; i++) source[i]=
h->GetBinContent(i + 1);
for (i = 0; i < nbins; i++) response[i]=
d->GetBinContent(i + 1);
s->Deconvolution(source,response,256,200,50,1.2);
for (i = 0; i < nbins; i++)
d->SetBinContent(i + 1,source[i]);
}
A ROOT file is a suite of consecutive data records (TKey instances) with a well defined format.
1-D histogram with a float per channel (see TH1 documentation)}
Advanced Spectra Processing.
static constexpr double s
- Authors
- Miroslav Morhac, Olivier Couet
Definition in file Deconvolution_wide_boost.C.