6 TFile
f1(
"./Ta.1000keV.msc93.root");
7 TH1D*
h1 = (TH1D*)
f1.Get(
"8");
8 h1->SetTitle(
"Depth dose distribution of 1000 keV e- in Ta");
9 h1->GetXaxis()->SetTitle(
"Edep (Mev.cm2/g) along x/r0 x/r0");
10 h1->GetYaxis()->SetTitle(
"MeV*cm2/g");
12 h1->SetLineColor(kBlack);
15 TFile
f2(
"./Ta.1000keV.local.root");
16 TH1D*
h2 = (TH1D*)
f2.Get(
"8");
18 h2->SetLineColor(kBlue);
19 h2->Draw(
"SAME HIST");
26 in.open(
"./EGSnrc/Ta_1000keV_EGSnrc.ascii");
33 for (
int i = 0 ; i <
nbdata ; i++ ) {
35 if (!in.good())
break;
36 pt =
new TMarker(x,y,22);
37 pt->SetMarkerColor(kRed);
43 TLegend*
legend =
new TLegend(0.6,0.5,0.8,0.70);
44 legend->AddEntry(h1,
"Urban93 ",
"l");
45 legend->AddEntry(h2,
"Urban95 ",
"l");
46 legend->AddEntry(pt,
"EGSnrc",
"P");