Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
Background_decr.C
Go to the documentation of this file.
1/// \file
2/// \ingroup tutorial_spectrum
3/// \notebook
4/// Example to illustrate the background estimator (class TSpectrum).
5///
6/// \macro_image
7/// \macro_code
8///
9/// \authors Miroslav Morhac, Olivier Couet
10
11void Background_decr()
12{
13 Int_t i;
14 const Int_t nbins = 1024;
15 Double_t xmin = 0;
16 Double_t xmax = nbins;
17 Double_t source[nbins];
18 gROOT->ForceStyle();
19
20 TH1F *d = new TH1F("d", "", nbins, xmin, xmax);
21
22 TString dir = gROOT->GetTutorialDir();
23 TString file = dir + "/legacy/spectrum/TSpectrum.root";
24 TFile *f = new TFile(file.Data());
25 TH1F *back = (TH1F *)f->Get("back1");
26 back->SetTitle("Estimation of background with decreasing window");
27 back->GetXaxis()->SetRange(1, nbins);
28 back->Draw("L");
29
30 TSpectrum *s = new TSpectrum();
31
32 for (i = 0; i < nbins; i++)
33 source[i] = back->GetBinContent(i + 1);
34
35 // Estimate the background
38
39 // Draw the estimated background
40 for (i = 0; i < nbins; i++)
41 d->SetBinContent(i + 1, source[i]);
42 d->SetLineColor(kRed);
43 d->Draw("SAME L");
44}
#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
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:634
void SetTitle(const char *title) override
Change/set the title.
Definition TH1.cxx:6734
TAxis * GetXaxis()
Definition TH1.h:336
void Draw(Option_t *option="") override
Draw this histogram with options.
Definition TH1.cxx:3055
virtual void SetBinContent(Int_t bin, Double_t content)
Set bin content see convention for numbering bins in TH1::GetBin In case the bin number is greater th...
Definition TH1.cxx:9242
virtual Double_t GetBinContent(Int_t bin) const
Return content of bin number bin.
Definition TH1.cxx:5077
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
@ kBackDecreasingWindow
Definition TSpectrum.h:42
@ kBackSmoothing3
Definition TSpectrum.h:43
Basic string class.
Definition TString.h:139
const char * Data() const
Definition TString.h:376