File indexing completed on 2025-04-03 08:07:05
0001 {
0002 gROOT->Reset();
0003
0004
0005
0006
0007 TFile f = TFile("Li6a.root");
0008 TCanvas* c1 = new TCanvas("c1", " ");
0009 c1->SetLogy(1);
0010 c1->cd();
0011 c1->Update();
0012
0013
0014
0015
0016
0017
0018
0019 TH1D* hist3 = (TH1D*)f.Get("3");
0020 hist3->Draw("HIST");
0021
0022 TH1D* hist4 = (TH1D*)f.Get("4");
0023 hist4->Draw("HIST");
0024
0025 TH1D* hist5 = (TH1D*)f.Get("5");
0026 hist5->Draw("HIST");
0027
0028 TH1D* hist11 = (TH1D*)f.Get("11");
0029 hist11->Draw("HIST");
0030
0031
0032
0033 }