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("e6gev.run1.root");
7  TCanvas* c1 = new TCanvas("c1", " ");
8 
9  TH1D* hist1 = (TH1D*)f.Get("1");
10  hist1->Draw("HIST");
11 
12  TH1D* hist2 = (TH1D*)f.Get("2");
13  hist2->Draw("HIST");
14 
15  TH1D* hist3 = (TH1D*)f.Get("3");
16  hist3->Draw("HIST");
17 
18  TH1D* hist4 = (TH1D*)f.Get("4");
19  hist4->Draw("HIST");
20 
21  TTree* nt = (TTree*)f.Get("101");
22  c1->cd();
23  c1->Update();
24  nt->StartViewer();
25 }