Files
geant4/examples/extended/medical/dna/microdosimetry/plot.C
T
2017-12-08 12:52:30 +01:00

50 lines
1.2 KiB
C++
Executable File

// *********************************************************************
// To execute this macro under ROOT,
// 1 - launch ROOT (usually type 'root' at your machine's prompt)
// 2 - type '.X plot.C' at the ROOT session prompt
// 3 - OR directly type 'root plot.C'
// *********************************************************************
{
gROOT->Reset();
gStyle->SetPalette(1);
gROOT->SetStyle("Plain");
Double_t scale;
c1 = new TCanvas ("c1","",20,20,1000,500);
c1->Divide(2,1);
system ("rm -rf microdosimetry.root");
system ("hadd -O microdosimetry.root microdosimetry_*.root");
TFile f("microdosimetry.root");
TNtuple* ntuple;
ntuple = (TNtuple*)f.Get("microdosimetry");
c1->cd(1);
gStyle->SetOptStat(000000);
// All
ntuple->SetFillColor(2);
ntuple->Draw("flagProcess","","B");
gPad->SetLogy();
c1->cd(2);
// Electrons
ntuple->SetMarkerColor(2);
ntuple->Draw("x:y:z/1000","flagParticle==1","");
// Protons
ntuple->SetMarkerColor(4);
ntuple->SetMarkerSize(4);
ntuple->Draw("x:y:z/1000","flagParticle==2","same");
// Hydrogen
ntuple->SetMarkerColor(3);
ntuple->SetMarkerSize(3);
ntuple->Draw("x:y:z/1000","flagParticle==3","same");
}