Logo ROOT  
Reference Guide
 
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
Loading...
Searching...
No Matches
hist2image.C
Go to the documentation of this file.
1/// \file
2/// \ingroup tutorial_image
3/// \notebook
4/// Create an image from a 2-D histogram and manipulate it.
5///
6/// \image html image_hist2image.png
7/// \macro_code
8///
9/// \author Valeriy Onuchin
10
11#include <TAttImage.h>
12
13void hist2image()
14{
15
16 TCanvas *canv = new TCanvas("image", "xygaus + xygaus(5) + xylandau(10)");
17 canv->ToggleEventStatus();
18 canv->SetRightMargin(0.2);
19 canv->SetLeftMargin(0.01);
20 canv->SetTopMargin(0.01);
21 canv->SetBottomMargin(0.01);
22
23 // histogram as image (hist taken from draw2dopt.C)
25
26 TF2 *f2 = new TF2("f2","(xygaus + xygaus(5) + xylandau(10))",-4,4,-4,4);
27 Double_t params[] = {130,-1.4,1.8,1.5,1, 150,2,0.5,-2,0.5, 3600,-2,0.7,-3,0.3};
28 f2->SetParameters(params);
29 TH2D *h2 = new TH2D("h2","xygaus + xygaus(5) + xylandau(10)",100,-4,4,100,-4,4);
30 h2->FillRandom("f2",40000);
31 img->SetImage((const Double_t *)h2->GetArray(), h2->GetNbinsX() + 2,
32 h2->GetNbinsY() + 2, gHistImagePalette);
33 img->Draw();
34 img->StartPaletteEditor();
35}
double Double_t
Definition RtypesCore.h:59
R__EXTERN TImagePalette * gHistImagePalette
Definition TAttImage.h:109
ROOT::Detail::TRangeCast< T, true > TRangeDynCast
TRangeDynCast is an adapter class that allows the typed iteration through a TCollection.
The Canvas class.
Definition TCanvas.h:23
virtual void SetParameters(const Double_t *params)
Definition TF1.h:677
A 2-Dim function with parameters.
Definition TF2.h:29
2-D histogram with a double per channel (see TH1 documentation)
Definition TH2.h:357
An abstract interface to image processing library.
Definition TImage.h:29
static TImage * Create()
Create an image.
Definition TImage.cxx:35