13   const Int_t nbins = 256;
 
   24   TString file = dir + 
"/legacy/spectrum/TSpectrum.root";
 
   26   h = (
TH1F *)
f->Get(
"decon3");
 
   27   h->SetTitle(
"Deconvolution of closely positioned overlapping peaks using boosted Gold deconvolution method");
 
   28   d = (
TH1F *)
f->Get(
"decon_response_wide");
 
   30   for (i = 0; i < nbins; i++)
 
   31      source[i] = 
h->GetBinContent(i + 1);
 
   32   for (i = 0; i < nbins; i++)
 
   33      response[i] = 
d->GetBinContent(i + 1);
 
   35   h->SetMaximum(200000);
 
   40   for (i = 0; i < nbins; i++)
 
   41      d->SetBinContent(i + 1, 
source[i]);
 
   42   d->SetLineColor(
kRed);
 
int Int_t
Signed integer 4 bytes (int)
 
double Double_t
Double 8 bytes.
 
ROOT::Detail::TRangeCast< T, true > TRangeDynCast
TRangeDynCast is an adapter class that allows the typed iteration through a TCollection.
 
A ROOT file is an on-disk file, usually with extension .root, that stores objects in a file-system-li...
 
1-D histogram with a float per channel (see TH1 documentation)
 
Advanced Spectra Processing.
 
const char * Deconvolution(Double_t *source, const Double_t *response, Int_t ssize, Int_t numberIterations, Int_t numberRepetitions, Double_t boost)
One-dimensional deconvolution function.
 
const char * Data() const