Geant4  v4-10.4-release
 모두 클래스 네임스페이스들 파일들 함수 변수 타입정의 열거형 타입 열거형 멤버 Friends 매크로 그룹들 페이지들
extended/electromagnetic/TestEm6/plotHisto.C
이 파일의 문서화 페이지로 가기
1 {
2  gROOT->Reset();
3 
4  // Draw histos 1-6 filled by Geant4 simulation with run02.mac
5  //
6  TFile f0("testem6_0.root");
7  TCanvas* c1 = new TCanvas("c1", " ");
8  c1->Divide(2,3);
9  for(int i=1; i < 7; ++i)
10  {
11  c1->cd(i);
12  const char* hname = std::string("h"+std::to_string(i)).c_str(); // h1, h2, .. h6
13  f0.Get(hname)->Draw("HIST");
14  }
15 }
TFile f0("testem6_0.root")