Import Geant4 10.4.0.beta source tree

This commit is contained in:
Gabriele Cosmo
2017-06-30 10:49:55 +02:00
parent 3a5407696b
commit 1a1316fea4
2180 changed files with 237880 additions and 59109 deletions
@@ -0,0 +1,19 @@
{
gROOT->Reset();
// Draw histos filled by Geant4 simulation
//
TCanvas* c1 = new TCanvas("c1", " ");
c1->SetLogy(0);
c1->cd();
c1->Update();
TFile fa("Co60.root");
TH1D* ha1 = (TH1D*)fa.Get("4");
ha1->SetStats(kFALSE);
ha1->SetLineColor(kRed);
ha1->Draw("HIST");
}