14 lines
214 B
C++
14 lines
214 B
C++
{
|
|
// Plot the energy spectrum of the primary particles
|
|
gROOT -> Reset();
|
|
|
|
TFile f("brachytherapy.root");
|
|
|
|
// Draw histos filled by Geant4 simulation
|
|
//
|
|
|
|
TCanvas* c1 = new TCanvas("c1", " ");
|
|
|
|
h10.Draw();
|
|
}
|