Logo ROOT   6.07/09
Reference Guide
Background_incr.C File Reference

Detailed Description

View in nbviewer Open in SWAN Example to illustrate the background estimator (class TSpectrum).

pict1_Background_incr.C.png
void Background_incr() {
Int_t i;
const Int_t nbins = 1024;
Double_t xmin = 0;
Double_t xmax = nbins;
Double_t source[nbins];
gROOT->ForceStyle();
TH1F *d = new TH1F("d","",nbins,xmin,xmax);
TString dir = gROOT->GetTutorialsDir();
TString file = dir+"/spectrum/TSpectrum.root";
TFile *f = new TFile(file.Data());
TH1F *back = (TH1F*) f->Get("back1");
back->GetXaxis()->SetRange(1,nbins);
back->SetTitle("Estimation of background with increasing window");
back->Draw("L");
TSpectrum *s = new TSpectrum();
for (i = 0; i < nbins; i++) source[i] = back->GetBinContent(i + 1);
// Estimate the background
// Draw the estimated background
for (i = 0; i < nbins; i++) d->SetBinContent(i + 1,source[i]);
d->SetLineColor(kRed);
d->Draw("SAME L");
}
Authors
Miroslav Morhac, Olivier Couet

Definition in file Background_incr.C.