Geant4 Cross Reference

Cross-Referencing   Geant4
Geant4/examples/advanced/nanobeam/plot.C

Version: [ ReleaseNotes ] [ 1.0 ] [ 1.1 ] [ 2.0 ] [ 3.0 ] [ 3.1 ] [ 3.2 ] [ 4.0 ] [ 4.0.p1 ] [ 4.0.p2 ] [ 4.1 ] [ 4.1.p1 ] [ 5.0 ] [ 5.0.p1 ] [ 5.1 ] [ 5.1.p1 ] [ 5.2 ] [ 5.2.p1 ] [ 5.2.p2 ] [ 6.0 ] [ 6.0.p1 ] [ 6.1 ] [ 6.2 ] [ 6.2.p1 ] [ 6.2.p2 ] [ 7.0 ] [ 7.0.p1 ] [ 7.1 ] [ 7.1.p1 ] [ 8.0 ] [ 8.0.p1 ] [ 8.1 ] [ 8.1.p1 ] [ 8.1.p2 ] [ 8.2 ] [ 8.2.p1 ] [ 8.3 ] [ 8.3.p1 ] [ 8.3.p2 ] [ 9.0 ] [ 9.0.p1 ] [ 9.0.p2 ] [ 9.1 ] [ 9.1.p1 ] [ 9.1.p2 ] [ 9.1.p3 ] [ 9.2 ] [ 9.2.p1 ] [ 9.2.p2 ] [ 9.2.p3 ] [ 9.2.p4 ] [ 9.3 ] [ 9.3.p1 ] [ 9.3.p2 ] [ 9.4 ] [ 9.4.p1 ] [ 9.4.p2 ] [ 9.4.p3 ] [ 9.4.p4 ] [ 9.5 ] [ 9.5.p1 ] [ 9.5.p2 ] [ 9.6 ] [ 9.6.p1 ] [ 9.6.p2 ] [ 9.6.p3 ] [ 9.6.p4 ] [ 10.0 ] [ 10.0.p1 ] [ 10.0.p2 ] [ 10.0.p3 ] [ 10.0.p4 ] [ 10.1 ] [ 10.1.p1 ] [ 10.1.p2 ] [ 10.1.p3 ] [ 10.2 ] [ 10.2.p1 ] [ 10.2.p2 ] [ 10.2.p3 ] [ 10.3 ] [ 10.3.p1 ] [ 10.3.p2 ] [ 10.3.p3 ] [ 10.4 ] [ 10.4.p1 ] [ 10.4.p2 ] [ 10.4.p3 ] [ 10.5 ] [ 10.5.p1 ] [ 10.6 ] [ 10.6.p1 ] [ 10.6.p2 ] [ 10.6.p3 ] [ 10.7 ] [ 10.7.p1 ] [ 10.7.p2 ] [ 10.7.p3 ] [ 10.7.p4 ] [ 11.0 ] [ 11.0.p1 ] [ 11.0.p2 ] [ 11.0.p3, ] [ 11.0.p4 ] [ 11.1 ] [ 11.1.1 ] [ 11.1.2 ] [ 11.1.3 ] [ 11.2 ] [ 11.2.1 ] [ 11.2.2 ] [ 11.3.0 ]

  1 {
  2 // Use this macro for the visualisation of coefficient computation
  3 
  4   gROOT->Reset();
  5   gROOT->SetStyle("Plain");
  6 
  7   gStyle->SetOptStat(1111);
  8   gStyle->SetPalette(1);
  9 
 10   c1 = new TCanvas ("c1","",200,10,800,800);
 11   c1->Divide(2,2);
 12 
 13   system ("rm -rf nanobeam.root");
 14   system ("hadd -O nanobeam.root nanobeam_*.root");
 15   
 16   TFile f("nanobeam.root"); 
 17 
 18   TNtuple* ntuple0;
 19   ntuple0 = (TNtuple*)f.Get("ntuple0"); 
 20   
 21   c1->cd(1);
 22   ntuple0->SetMarkerSize(.2);
 23   ntuple0->SetMarkerColor(2);
 24   ntuple0->SetMarkerStyle(20);
 25   ntuple0->Draw("xIn:yIn:zIn","");
 26  
 27   c1->cd(2); 
 28   TNtuple* ntuple2;
 29   ntuple2 = (TNtuple*)f.Get("ntuple2"); 
 30   gStyle->SetPalette(1);
 31   ntuple2->SetMarkerColor(2);
 32   ntuple2->SetMarkerStyle(20);
 33   gPad->SetLogz();
 34   ntuple2->Draw("yIn:xIn","","hcolz");
 35  
 36   c1->cd(3);
 37   gStyle->SetPalette(1);
 38   ntuple2->SetMarkerColor(4);
 39   ntuple2->SetMarkerStyle(20);
 40   gPad->SetLogz();
 41   ntuple2->Draw("thetaIn:xIn","","hcolz");
 42 
 43   c1->cd(4);
 44   gStyle->SetPalette(1);
 45   ntuple2->SetMarkerColor(4);
 46   ntuple2->SetMarkerStyle(20);
 47   gPad->SetLogz();
 48   ntuple2->Draw("phiIn:yIn","","hcolz");
 49    
 50 jump2:
 51 /*
 52   c1->cd(1);
 53   gStyle->SetPalette(1);
 54   TNtuple* ntuple1;
 55   ntuple1 = (TNtuple*)f->Get("ntuple1"); 
 56   ntuple1->SetMarkerSize(.2);
 57   ntuple1->SetMarkerColor(2);
 58   ntuple1->SetMarkerStyle(20);
 59   gPad->SetLogz();
 60   ntuple1->Draw("yIn:xIn","","hcolz");
 61   htemp->GetXaxis()->SetLabelSize(0.025);
 62   htemp->GetYaxis()->SetLabelSize(0.025);
 63   htemp->GetXaxis()->SetTitleSize(0.035);
 64   htemp->GetYaxis()->SetTitleSize(0.035);
 65   htemp->GetXaxis()->SetTitleOffset(1.4);
 66   htemp->GetYaxis()->SetTitleOffset(1.4);
 67   htemp->GetXaxis()->SetTitle("X (mm)");
 68   htemp->GetYaxis()->SetTitle("Y (mm)");
 69   htemp->SetTitle("Grid shadow");
 70 */ 
 71 }
 72