Geant4  9.6.p02
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
plotHisto.C
Go to the documentation of this file.
1 {
2  gROOT->Reset();
3 
4  // Draw histos filled by Geant4 simulation
5  //
6  TFile f = TFile("run1.root");
8  TCanvas* c1 = new TCanvas("c1", " ");
9 
10  c1->SetLogy(1);
11  c1->cd();
12  c1->Update();
13 
14  TH1D* hist1 = (TH1D*)f.Get("1");
15  hist1->Draw("HIST");
16 
17  TH1D* hist2 = (TH1D*)f.Get("2");
18  hist2->Draw("HIST");
19 
20  TH1D* hist3 = (TH1D*)f.Get("3");
21  hist3->Draw("HIST");
22 
23  TH1D* hist6 = (TH1D*)f.Get("6");
24  hist6->Draw("HIST");
25 
26  TH1D* hist7 = (TH1D*)f.Get("7");
27  hist7->Draw("HIST");
28 
29  TH1D* hist8 = (TH1D*)f.Get("8");
30  hist8->Draw("HIST");
31 }