Import Geant4 10.4.0 source tree

This commit is contained in:
Gabriele Cosmo
2017-12-08 12:52:30 +01:00
parent 98e455a940
commit fc6af9e721
2166 changed files with 276760 additions and 100873 deletions
@@ -3,16 +3,43 @@
// Draw histos filled by Geant4 simulation
//
TFile f("pixe.root");
TFile f("C12.root");
TCanvas* c1 = new TCanvas("c1", " ");
TH1D* hist3 = (TH1D*)f.Get("3");
hist3->Draw("HIST");
c1->SetLogy(1);
c1->cd();
c1->Update();
TH1D* hist1 = (TH1D*)f.Get("1");
hist1->Draw("HIST");
TH1D* hist2 = (TH1D*)f.Get("2");
hist2->Draw("HIST");
TH1D* hist3 = (TH1D*)f.Get("3");
hist3->Draw("HIST");
///TH1D* hist4 = (TH1D*)f.Get("4");
///hist4->Draw("HIST");
///TH1D* hist5 = (TH1D*)f.Get("5");
///hist5->Draw("HIST");
TH1D* hist6 = (TH1D*)f.Get("6");
hist6->Draw("HIST");
TH1D* hist7 = (TH1D*)f.Get("7");
hist7->Draw("HIST");
///TH1D* hist8 = (TH1D*)f.Get("8");
///hist8->Draw("HIST");
TH1D* hist5 = (TH1D*)f.Get("5");
hist5->Draw("HIST");
///TH1D* hist9 = (TH1D*)f.Get("9");
///hist9->Draw("HIST");
TH1D* hist10 = (TH1D*)f.Get("10");
hist10->Draw("HIST");
///TH1D* hist11 = (TH1D*)f.Get("11");
///hist11->Draw("HIST");
}