Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-04-03 08:07:05

0001 {
0002   gROOT->Reset();
0003   
0004   // Draw histos filled by Geant4 simulation 
0005   //   
0006   ////TFile f = TFile("elastic.root");
0007   TFile f = TFile("Li6a.root");    
0008   TCanvas* c1 = new TCanvas("c1", "  ");
0009   c1->SetLogy(1);
0010   c1->cd();
0011   c1->Update();   
0012   
0013   ///TH1D* hist1 = (TH1D*)f.Get("1");
0014   ///hist1->Draw("HIST");
0015   
0016   ///TH1D* hist2 = (TH1D*)f.Get("2");
0017   ///hist2->Draw("HIST");
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   ///TH1D* hist12 = (TH1D*)f.Get("12");
0032   ///hist12->Draw("HIST");    
0033 }