Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
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 
13 void 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)
24  TImage *img = TImage::Create();
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 }