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  //
7  TFile f = TFile("nCaptureHP.root");
8  TCanvas* c1 = new TCanvas("c1", " ");
9  c1->SetLogy(1);
10  c1->cd();
11  c1->Update();
12 
15 
16  TH1D* hist2 = (TH1D*)f.Get("2");
17  hist2->Draw("HIST");
18 
19  TH1D* hist3 = (TH1D*)f.Get("3");
20  hist3->Draw("HIST");
21 
22  TH1D* hist11 = (TH1D*)f.Get("11");
23  hist11->Draw("HIST");
24 
25  TH1D* hist12 = (TH1D*)f.Get("12");
26  hist12->Draw("HIST");
27 }