Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
Background_incr.C
Go to the documentation of this file.
1/// \file
2/// \ingroup tutorial_spectrum
3/// Example to illustrate the background estimator (class TSpectrum).
4///
5/// \macro_image
6/// \macro_code
7///
8/// \authors Miroslav Morhac, Olivier Couet
9
10void Background_incr()
11{
12 Int_t i;
13 const Int_t nbins = 1024;
14 Double_t xmin = 0;
15 Double_t xmax = nbins;
16 Double_t source[nbins];
17 gROOT->ForceStyle();
18
19 TH1F *d = new TH1F("d", "", nbins, xmin, xmax);
20
21 TString dir = gROOT->GetTutorialDir();
22 TString file = dir + "/legacy/spectrum/TSpectrum.root";
23 TFile *f = new TFile(file.Data());
24 TH1F *back = (TH1F *)f->Get("back1");
25 back->GetXaxis()->SetRange(1, nbins);
26 back->SetTitle("Estimation of background with increasing window");
27 back->Draw("L");
28
29 TSpectrum *s = new TSpectrum();
30
31 for (i = 0; i < nbins; i++)
32 source[i] = back->GetBinContent(i + 1);
33
34 // Estimate the background
37
38 // Draw the estimated background
39 for (i = 0; i < nbins; i++)
40 d->SetBinContent(i + 1, source[i]);
41 d->SetLineColor(kRed);
42 d->Draw("SAME L");
43}
#define d(i)
Definition RSha256.hxx:102
#define f(i)
Definition RSha256.hxx:104
int Int_t
Definition RtypesCore.h:45
constexpr Bool_t kFALSE
Definition RtypesCore.h:94
double Double_t
Definition RtypesCore.h:59
@ kRed
Definition Rtypes.h:66
ROOT::Detail::TRangeCast< T, true > TRangeDynCast
TRangeDynCast is an adapter class that allows the typed iteration through a TCollection.
float xmin
float xmax
#define gROOT
Definition TROOT.h:406
virtual void SetRange(Int_t first=0, Int_t last=0)
Set the viewing range for the axis using bin numbers.
Definition TAxis.cxx:1053
A ROOT file is an on-disk file, usually with extension .root, that stores objects in a file-system-li...
Definition TFile.h:53
1-D histogram with a float per channel (see TH1 documentation)
Definition TH1.h:645
void SetTitle(const char *title) override
Change/set the title.
Definition TH1.cxx:6716
TAxis * GetXaxis()
Definition TH1.h:340
void Draw(Option_t *option="") override
Draw this histogram with options.
Definition TH1.cxx:3037
virtual Double_t GetBinContent(Int_t bin) const
Return content of bin number bin.
Definition TH1.cxx:5059
Advanced Spectra Processing.
Definition TSpectrum.h:18
virtual TH1 * Background(const TH1 *hist, Int_t niter=20, Option_t *option="")
One-dimensional background estimation function.
@ kBackOrder2
Definition TSpectrum.h:37
@ kBackIncreasingWindow
Definition TSpectrum.h:41
@ kBackSmoothing3
Definition TSpectrum.h:43
Basic string class.
Definition TString.h:139
const char * Data() const
Definition TString.h:376