Example to illustrate the influence of the clipping window width on the estimated background.
void Background_width() {
const Int_t nbins = 1024;
TString file = dir+
"/spectrum/TSpectrum.root";
TH1F *d1 =
new TH1F(
"d1",
"",nbins,xmin,xmax);
TH1F *d2 =
new TH1F(
"d2",
"",nbins,xmin,xmax);
TH1F *d3 =
new TH1F(
"d3",
"",nbins,xmin,xmax);
back->GetXaxis()->SetRange(1,nbins);
back->SetTitle("Influence of clipping window width on the estimated background");
back->Draw("L");
for (i = 0; i < nbins; i++) source[i]=back->GetBinContent(i + 1);
for (i = 0; i < nbins; i++) source[i]=back->GetBinContent(i + 1);
for (i = 0; i < nbins; i++) source[i]=back->GetBinContent(i + 1);
}
- Authors
- Miroslav Morhac, Olivier Couet
Definition in file Background_width.C.