Logo ROOT  
Reference Guide
 
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
Loading...
Searching...
No Matches
fitslicesy.C
Go to the documentation of this file.
1/// \file
2/// \ingroup tutorial_fit
3/// \notebook -js
4/// Illustrates how to use the TH1::FitSlicesY function
5/// It uses the TH2F histogram generated in macro hsimple.C
6/// It invokes FitSlicesY and draw the fitted "mean" and "sigma"
7/// in 2 sepate pads.
8/// This macro shows also how to annotate a picture, change
9/// some pad parameters.
10///
11/// \macro_image
12/// \macro_output
13/// \macro_code
14///
15/// \author Rene Brun
16
17#include <TCanvas.h>
18#include <TFile.h>
19#include <TH2F.h>
20#include <TROOT.h>
21#include <TStyle.h>
22
23void fitslicesy() {
24// Change some default parameters in the current style
25 gStyle->SetLabelSize(0.06,"x");
26 gStyle->SetLabelSize(0.06,"y");
28 gStyle->SetTitleW(0.6);
29 gStyle->SetTitleH(0.1);
30
31// Connect the input file and get the 2-d histogram in memory
32 TString dir = gROOT->GetTutorialDir();
33 dir.Append("/hsimple.C");
34 dir.ReplaceAll("/./","/");
35 if (!gInterpreter->IsLoaded(dir.Data())) gInterpreter->LoadMacro(dir.Data());
36 TFile *hsimpleFile = (TFile*)gROOT->ProcessLineFast("hsimple(1)");
37 if (!hsimpleFile) return;
38 TH2F *hpxpy = (TH2F*)hsimpleFile->Get("hpxpy");
39
40// Create a canvas and divide it
41 TCanvas *c1 = new TCanvas("c1","c1",700,500);
42 c1->SetFillColor(42);
43 c1->Divide(2,1);
44 TPad *leftPad = (TPad*)c1->cd(1);;
45 leftPad->Divide(1,2);
46
47// Draw 2-d original histogram
48 leftPad->cd(1);
49 gPad->SetTopMargin(0.12);
50 gPad->SetFillColor(33);
51 hpxpy->Draw();
52 hpxpy->GetXaxis()->SetLabelSize(0.06);
53 hpxpy->GetYaxis()->SetLabelSize(0.06);
54 hpxpy->SetMarkerColor(kYellow);
55
56// Fit slices projected along Y fron bins in X [7,32] with more than 20 bins in Y filled
57 hpxpy->FitSlicesY(nullptr,7,32,20);
58
59// Show fitted "mean" for each slice
60 leftPad->cd(2);
61 gPad->SetFillColor(33);
62 TH2F *hpxpy_0 = (TH2F*)hsimpleFile->Get("hpxpy_0");
63 hpxpy_0->Draw();
64 TPad *rightPad = (TPad*)c1->cd(2);
65 rightPad->Divide(1,2);
66 rightPad->cd(1);
67 gPad->SetTopMargin(0.12);
68 gPad->SetLeftMargin(0.15);
69 gPad->SetFillColor(33);
70 TH2F *hpxpy_1 = (TH2F*)hsimpleFile->Get("hpxpy_1");
71 hpxpy_1->Draw();
72
73// Show fitted "sigma" for each slice
74 rightPad->cd(2);
75 gPad->SetTopMargin(0.12);
76 gPad->SetLeftMargin(0.15);
77 gPad->SetFillColor(33);
78 TH2F *hpxpy_2 = (TH2F*)hsimpleFile->Get("hpxpy_2");
79 hpxpy_2->SetMinimum(0.8);
80 hpxpy_2->Draw();
81
82//attributes
83 hpxpy_0->SetLineColor(5);
84 hpxpy_1->SetLineColor(5);
85 hpxpy_2->SetLineColor(5);
86 hpxpy_0->SetMarkerColor(2);
87 hpxpy_1->SetMarkerColor(2);
88 hpxpy_2->SetMarkerColor(2);
89 hpxpy_0->SetMarkerStyle(21);
90 hpxpy_1->SetMarkerStyle(21);
91 hpxpy_2->SetMarkerStyle(21);
92 hpxpy_0->SetMarkerSize(0.6);
93 hpxpy_1->SetMarkerSize(0.6);
94 hpxpy_2->SetMarkerSize(0.6);
95}
@ kYellow
Definition Rtypes.h:66
ROOT::Detail::TRangeCast< T, true > TRangeDynCast
TRangeDynCast is an adapter class that allows the typed iteration through a TCollection.
#define gInterpreter
#define gROOT
Definition TROOT.h:406
R__EXTERN TStyle * gStyle
Definition TStyle.h:433
#define gPad
The Canvas class.
Definition TCanvas.h:23
A ROOT file is an on-disk file, usually with extension .root, that stores objects in a file-system-li...
Definition TFile.h:53
2-D histogram with a float per channel (see TH1 documentation)
Definition TH2.h:307
The most important graphics class in the ROOT system.
Definition TPad.h:28
Basic string class.
Definition TString.h:139
void SetFrameFillColor(Color_t color=1)
Definition TStyle.h:369
void SetTitleW(Float_t w=0)
Definition TStyle.h:412
void SetTitleH(Float_t h=0)
Definition TStyle.h:413
void SetLabelSize(Float_t size=0.04, Option_t *axis="X")
Set size of axis labels.
Definition TStyle.cxx:1440
return c1
Definition legend1.C:41