Back to home page

EIC code displayed by LXR

 
 

    


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

0001 {
0002   gROOT->Reset();
0003   
0004   // Draw histos filled by Geant4 simulation 
0005   //   
0006   TFile f("bone.root");
0007   TCanvas* c1 = new TCanvas("c1", "  ");
0008   c1->SetLogy(0);
0009   c1->cd();
0010   c1->Update();
0011      
0012   TH1D* hist10 = (TH1D*)f.Get("10");
0013   hist10->Draw("HIST");
0014 
0015   TH1D* hist11 = (TH1D*)f.Get("11");
0016   hist11->Draw("HIST");
0017     
0018   TH1D* hist12 = (TH1D*)f.Get("12");
0019   hist12->Draw("HIST");
0020   
0021   TH1D* hist13 = (TH1D*)f.Get("13");
0022   hist13->Draw("HIST");
0023 
0024 }