Logo ROOT  
Reference Guide
Loading...
Searching...
No Matches
hist046_Graphics_highlight1D.C File Reference

Detailed Description

This tutorial demonstrates how the highlight mechanism can be used on an histogram.

A 1D histogram is created. Then an highlight method is connected to the histogram. Moving the mouse on the histogram will open a new canvas showing in real time a zoom around the highlighted bin.

TText *info = nullptr;
TH1 *hz = nullptr;
void HighlightZoom(TVirtualPad *pad, TObject *obj, Int_t xhb, Int_t yhb)
{
auto h = dynamic_cast<TH1F *>(obj);
if (!h)
return;
auto Canvas2 = (TCanvas *)gROOT->GetListOfCanvases()->FindObject("Canvas2");
if (!h->IsHighlight()) { // after highlight disabled
if (Canvas2)
delete Canvas2;
if (hz) {
delete hz;
hz = nullptr;
}
return;
}
if (info)
info->SetTitle("");
if (!Canvas2) {
Canvas2 = new TCanvas("Canvas2", "Canvas2", 605, 0, 400, 400);
Canvas2->SetGrid();
if (hz)
hz->Draw(); // after reopen this canvas
}
if (!hz) {
hz = (TH1 *)h->Clone("hz");
hz->SetTitle(TString::Format("%s (zoomed)", hz->GetTitle()));
hz->Draw();
Canvas2->Update();
}
Int_t zf = hz->GetNbinsX() * 0.05; // zoom factor
hz->GetXaxis()->SetRange(xhb - zf, xhb + zf);
Canvas2->Modified();
Canvas2->Update();
}
void hist046_Graphics_highlight1D()
{
auto Canvas1 = new TCanvas("Canvas1", "", 0, 0, 600, 400);
Canvas1->HighlightConnect("HighlightZoom(TVirtualPad*,TObject*,Int_t,Int_t)");
auto f1 = new TF1("f1", "x*gaus(0) + [3]*abs(sin(x)/x)", -50.0, 50.0);
f1->SetParameters(20.0, 4.0, 1.0, 20.0);
auto h1 = new TH1F("h1", "Test random numbers", 200, -50.0, 50.0);
h1->FillRandom("f1", 100000);
h1->Draw();
h1->Fit(f1, "Q");
gStyle->SetGridColor(kGray);
Canvas1->SetGrid();
info = new TText(0.0, h1->GetMaximum() * 0.7, "please move the mouse over the frame");
info->SetTextSize(0.04);
info->SetTextAlign(22);
info->SetTextColor(kRed - 1);
info->Draw();
Canvas1->Update();
// configure highlight at the end when histogram is already painted
h1->SetHighlight();
}
#define h(i)
Definition RSha256.hxx:106
int Int_t
Signed integer 4 bytes (int).
Definition RtypesCore.h:59
constexpr Bool_t kFALSE
Definition RtypesCore.h:108
@ kGray
Definition Rtypes.h:66
@ kRed
Definition Rtypes.h:67
@ kCannotPick
Definition TObject.h:380
#define gROOT
Definition TROOT.h:417
externTStyle * gStyle
Definition TStyle.h:442
virtual void SetTextAlign(Short_t align=11)
Set the text alignment.
Definition TAttText.h:48
virtual void SetTextColor(Color_t tcolor=1)
Set the text color.
Definition TAttText.h:50
virtual void SetTextSize(Float_t tsize=1)
Set the text size.
Definition TAttText.h:53
virtual void SetRange(Int_t first=0, Int_t last=0)
Set the viewing range for the axis using bin numbers.
Definition TAxis.cxx:1061
The Canvas class.
Definition TCanvas.h:23
Definition TF1.h:182
1-D histogram with a float per channel (see TH1 documentation)
Definition TH1.h:878
TH1 is the base class of all histogram classes in ROOT.
Definition TH1.h:109
void SetTitle(const char *title) override
Change/set the title.
Definition TH1.cxx:6836
TAxis * GetXaxis()
Definition TH1.h:571
virtual Int_t GetNbinsX() const
Definition TH1.h:541
void Draw(Option_t *option="") override
Draw this histogram with options.
Definition TH1.cxx:3097
virtual void SetHighlight(Bool_t set=kTRUE)
Set highlight (enable/disable) mode for the histogram by default highlight mode is disable.
Definition TH1.cxx:4537
virtual void SetStats(Bool_t stats=kTRUE)
Set statistics option on/off.
Definition TH1.cxx:9127
virtual void SetTitle(const char *title="")
Set the title of the TNamed.
Definition TNamed.cxx:173
const char * GetTitle() const override
Returns title of object.
Definition TNamed.h:50
Mother of all ROOT objects.
Definition TObject.h:42
void SetBit(UInt_t f, Bool_t set)
Set or unset the user status bits as specified in f.
Definition TObject.cxx:888
virtual void Draw(Option_t *option="")
Default Draw method for all objects.
Definition TObject.cxx:293
static TString Format(const char *fmt,...)
Static method which formats a string using a printf style format descriptor and return a TString.
Definition TString.cxx:2385
Definition TText.h:22
TVirtualPad is an abstract base class for the Pad and Canvas classes.
Definition TVirtualPad.h:51
TH1F * h1
Definition legend1.C:5
TF1 * f1
Definition legend1.C:11
Date
March 2018
Author
Jan Musinsky

Definition in file hist046_Graphics_highlight1D.C.