Files
geant4/examples/extended/electromagnetic/TestEm18/plotHisto.C
T
2016-06-09 16:46:55 +02:00

19 lines
328 B
C++

{
gROOT->Reset();
// Draw histos filled by Geant4 simulation
//
TFile f = TFile("pixe.root");
TCanvas* c1 = new TCanvas("c1", " ");
TH1D* hist3 = (TH1D*)f.Get("3");
hist3->Draw("HIST");
c1->SetLogy(1);
c1->cd();
c1->Update();
TH1D* hist5 = (TH1D*)f.Get("5");
hist5->Draw("HIST");
}