Logo ROOT   6.08/07
Reference Guide
Smoothing.C
Go to the documentation of this file.
1 /// \file
2 /// \ingroup tutorial_spectrum
3 /// \notebook
4 /// Example to illustrate smoothing using Markov algorithm (class TSpectrum).
5 ///
6 /// \macro_image
7 /// \macro_code
8 ///
9 /// \author Miroslav Morhac
10 
11 void Smoothing() {
12  Int_t i;
13  const Int_t nbins = 1024;
14  Double_t xmin = 0;
16  Double_t source[nbins];
17  gROOT->ForceStyle();
18 
19  TString dir = gROOT->GetTutorialsDir();
20  TString file = dir+"/spectrum/TSpectrum.root";
21  TFile *f = new TFile(file.Data());
22  TH1F *h = (TH1F*) f->Get("back1");
23  h->SetTitle("Smoothed spectrum for m=3");
24 
25  for (i = 0; i < nbins; i++) source[i]=h->GetBinContent(i + 1);
26  h->SetAxisRange(1,1024);
27  h->Draw("L");
28 
29  TSpectrum *s = new TSpectrum();
30 
31  TH1F *smooth = new TH1F("smooth","smooth",nbins,0.,nbins);
32  smooth->SetLineColor(kRed);
33 
34  s->SmoothMarkov(source,1024,3); //3, 7, 10
35  for (i = 0; i < nbins; i++) smooth->SetBinContent(i + 1,source[i]);
36  smooth->Draw("L SAME");
37 }
float xmin
Definition: THbookFile.cxx:93
Definition: Rtypes.h:61
THist< 1, float, THistStatContent, THistStatUncertainty > TH1F
Definition: THist.hxx:302
TH1 * h
Definition: legend2.C:5
A ROOT file is a suite of consecutive data records (TKey instances) with a well defined format...
Definition: TFile.h:50
virtual TObject * Get(const char *namecycle)
Return pointer to object identified by namecycle.
#define gROOT
Definition: TROOT.h:364
Basic string class.
Definition: TString.h:137
tomato 1-D histogram with a float per channel (see TH1 documentation)}
Definition: TH1.h:575
int Int_t
Definition: RtypesCore.h:41
virtual void Draw(Option_t *option="")
Default Draw method for all objects.
Definition: TObject.cxx:255
int nbins[3]
virtual void SetLineColor(Color_t lcolor)
Set the line color.
Definition: TAttLine.h:46
virtual void Draw(Option_t *option="")
Draw this histogram with options.
Definition: TH1.cxx:2851
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:8323
float xmax
Definition: THbookFile.cxx:93
double f(double x)
double Double_t
Definition: RtypesCore.h:55
Advanced Spectra Processing.
Definition: TSpectrum.h:20
Definition: file.py:1
const char * SmoothMarkov(Double_t *source, Int_t ssize, Int_t averWindow)
One-dimensional markov spectrum smoothing function.
Definition: TSpectrum.cxx:1489
const char * Data() const
Definition: TString.h:349