// // ******************************************************************** // * License and Disclaimer * // * * // * The Geant4 software is copyright of the Copyright Holders of * // * the Geant4 Collaboration. It is provided under the terms and * // * conditions of the Geant4 Software License, included in the file * // * LICENSE and available at http://cern.ch/geant4/license . These * // * include a list of copyright holders. * // * * // * Neither the authors of this software system, nor their employing * // * institutes,nor the agencies providing financial support for this * // * work make any representation or warranty, express or implied, * // * regarding this software system or assume any liability for its * // * use. Please see the license in the file LICENSE and URL above * // * for the full disclaimer and the limitation of liability. * // * * // * This code implementation is the result of the scientific and * // * technical work of the GEANT4 collaboration. * // * By using, copying, modifying or distributing the software (or * // * any work based on the software) you agree to acknowledge its * // * use in resulting scientific publications, and indicate your * // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // //--------------------------------------------------------------------------- // // ClassName: HistoManager // // // Author: V.Ivanchenko 30/01/01 // //---------------------------------------------------------------------------- // //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... #include "HistoManager.hh" #include "G4UnitsTable.hh" #include "Histo.hh" #include "EmAcceptance.hh" //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... HistoManager* HistoManager::fManager = 0; //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... HistoManager* HistoManager::GetPointer() { if(!fManager) { fManager = new HistoManager(); } return fManager; } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... HistoManager::HistoManager() { verbose = 1; nEvt1 = -1; nEvt2 = -1; nmax = 3; histo = new Histo(); bookHisto(); } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... HistoManager::~HistoManager() { delete histo; } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... void HistoManager::bookHisto() { maxEnergy = 50.0*MeV; beamEnergy= 1.*GeV; maxEnergyAbs = 10.*MeV; thKinE = 1.*MeV; nBinsE = 100; nBinsEA= 40; nBinsED= 100; nTuple = false; nHisto = 13; // initialise acceptance for(G4int i=0; iadd1D("10", "Evis/E0 in central crystal",nBinsED,0.0,1,1.0); histo->add1D("11", "Evis/E0 in 3x3",nBinsED,0.0,1.0,1.0); histo->add1D("12", "Evis/E0 in 5x5",nBinsED,0.0,1.0,1.0); histo->add1D("13", "Energy (MeV) of delta-electrons",nBinsE,0.0,maxEnergy,MeV); histo->add1D("14", "Energy (MeV) of gammas",nBinsE,0.0,maxEnergy,MeV); histo->add1D("15", "Energy (MeV) in abs1",nBinsEA,0.0,maxEnergyAbs,MeV); histo->add1D("16", "Energy (MeV) in abs2",nBinsEA,0.0,maxEnergyAbs,MeV); histo->add1D("17", "Energy (MeV) in abs3",nBinsEA,0.0,maxEnergyAbs,MeV); histo->add1D("18", "Energy (MeV) in abs4",nBinsEA,0.0,maxEnergyAbs,MeV); histo->add1D("19", "Number of vertex hits",20,-0.5,19.5,1.0); histo->add1D("20", "E1/E9 Ratio",nBinsED,0.0,1,1.0); histo->add1D("21", "E1/25 Ratio",nBinsED,0.0,1.0,1.0); histo->add1D("22", "E9/E25 Ratio",nBinsED,0.0,1.0,1.0); if(nTuple) { histo->addTuple( "100", "Dose deposite","float r, z, e" ); } } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... void HistoManager::BeginOfRun() { // initilise scoring n_evt = 0; n_elec = 0; n_posit= 0; n_gam = 0; n_step = 0; n_lowe = 0; for(G4int i=0; i<6; i++) { stat[i] = 0; edep[i] = 0.0; erms[i] = 0.0; if(i < 3) { edeptr[i] = 0.0; ermstr[i] = 0.0; } } histo->book(); if(verbose > 0) { G4cout << "HistoManager: Histograms are booked and run has been started" << G4endl; } } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... void HistoManager::EndOfRun() { G4cout << "HistoManager: End of run actions are started" << G4endl; G4String nam[6] = {"1x1", "3x3", "5x5", "E1/E9 ", "E1/E25", "E9/E25"}; // average G4cout<<"================================================================="< 0) x = 1.0/x; G4int j; for(j=0; j 0.0) xx = 1.0/xx; edeptr[j] *= xx; y = ermstr[j]*xx - edeptr[j]*edeptr[j]; if(y < 0.0) y = 0.0; ermstr[j] = std::sqrt(y); } G4double xe = x*(G4double)n_elec; G4double xg = x*(G4double)n_gam; G4double xp = x*(G4double)n_posit; G4double xs = x*n_step; G4double f = 100.*std::sqrt(beamEnergy/GeV); G4cout << "Number of events " << n_evt < 0.0) xx = 1.0/xx; G4double r = s*std::sqrt(xx); G4cout << std::setprecision(4) << "Edep " << nam[j] << " = " << e << " +- " << r; if(e > 0.0) G4cout << " res= " << f*s/e << " %"; G4cout << G4endl; } if(limittrue[0] != DBL_MAX || limittrue[1] != DBL_MAX || limittrue[2] != DBL_MAX) { G4cout<<"=========== Mean values without trancating ====================="< 0.0) G4cout << " res= " << f*s/e << " %"; G4cout << G4endl; } } G4cout<<"=========== Ratios without trancating ==========================="< 0.0) xx = 1.0/xx; e *= xx; G4double y = erms[j]*xx - e*e; G4double r = 0.0; if(y > 0.0) r = std::sqrt(y*xx); G4cout << " " << nam[j] << " = " << e << " +- " << r; G4cout << G4endl; } G4cout << std::setprecision(4) << "Beam Energy " << beamEnergy/GeV << " GeV" << G4endl; if(n_lowe > 0) G4cout << "Number of events E/E0<0.8 " << n_lowe << G4endl; G4cout<<"=================================================================="<scale(i,x); } histo->save(); // Acceptance EmAcceptance acc; G4bool isStarted = false; for (j=0; j=i) || (11<=i && 13>=i) || (16<=i && 18>=i)) e9 += E[i]; } if(e25 < 0.8) { n_lowe++; G4cout << "### in the event# " << n_evt << " E25= " << e25 << G4endl; } // compute ratios G4double e0 = E[12]; G4double e19 = 0.0; G4double e125 = 0.0; G4double e925 = 0.0; if(e9 > 0.0) { e19 = e0/e9; e125 = e0/e25; e925 = e9/e25; edep[3] += e19; erms[3] += e19*e19; edep[4] += e125; erms[4] += e125*e125; edep[5] += e925; erms[5] += e925*e925; stat[3] += 1; stat[4] += 1; stat[5] += 1; } // fill histo histo->fill(0,e0,1.0); histo->fill(1,e9,1.0); histo->fill(2,e25,1.0); histo->fill(5,Eabs1,1.0); histo->fill(6,Eabs2,1.0); histo->fill(7,Eabs3,1.0); histo->fill(8,Eabs4,1.0); histo->fill(9,G4double(Nvertex.size()),1.0); histo->fill(10,e19,1.0); histo->fill(11,e125,1.0); histo->fill(12,e925,1.0); // compute sums edep[0] += e0; erms[0] += e0*e0; edep[1] += e9; erms[1] += e9*e9; edep[2] += e25; erms[2] += e25*e25; // trancated mean if(limittrue[0] == DBL_MAX || std::abs(e0-edeptrue[0])addRow(); } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... void HistoManager::ScoreNewTrack(const G4Track* aTrack) { //Save primary parameters ResetTrackLength(); const G4ParticleDefinition* particle = aTrack->GetDefinition(); const G4DynamicParticle* dynParticle = aTrack->GetDynamicParticle(); G4String name = particle->GetParticleName(); G4int pid = aTrack->GetParentID(); G4double kinE = dynParticle->GetKineticEnergy(); G4ThreeVector pos = aTrack->GetVertexPosition(); if(0 == pid) { beamEnergy = kinE; histo->fillTuple("TKIN", kinE/MeV); G4double mass = 0.0; if(particle) { mass = particle->GetPDGMass(); histo->fillTuple("MASS", mass/MeV); histo->fillTuple("CHAR",(particle->GetPDGCharge())/eplus); G4double beta = 1.; if(mass > 0.) { G4double gamma = kinE/mass + 1.; beta = std::sqrt(1. - 1./(gamma*gamma)); } } G4ThreeVector dir = dynParticle->GetMomentumDirection(); if(1 < verbose) { G4cout << "TrackingAction: Primary kinE(MeV)= " << kinE/MeV << "; m(MeV)= " << mass/MeV << "; pos= " << pos << "; dir= " << dir << G4endl; } // delta-electron } else if (0 < pid && "e-" == name) { if(1 < verbose) { G4cout << "TrackingAction: Secondary electron " << G4endl; } AddDeltaElectron(dynParticle); } else if (0 < pid && "e+" == name) { if(1 < verbose) { G4cout << "TrackingAction: Secondary positron " << G4endl; } AddPositron(dynParticle); } else if (0 < pid && "gamma" == name) { if(1 < verbose) { G4cout << "TrackingAction: Secondary gamma; parentID= " << pid << " E= " << kinE << G4endl; } AddPhoton(dynParticle); } } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... void HistoManager::AddEnergy(G4double edep, G4int volIndex, G4int copyNo) { if(1 < verbose) { G4cout << "HistoManager::AddEnergy: e(keV)= " << edep/keV << "; volIdx= " << volIndex << "; copyNo= " << copyNo << G4endl; } if(0 == volIndex) { E[copyNo] += edep; } else if (1 == volIndex) { Eabs1 += edep; } else if (2 == volIndex) { Eabs2 += edep; } else if (3 == volIndex) { Eabs3 += edep; } else if (4 == volIndex) { Eabs4 += edep; } else if (5 == volIndex) { G4int n = Nvertex.size(); G4bool newPad = true; if (n > 0) { for(G4int i=0; iGetKineticEnergy()/MeV; if(e > 0.0) n_elec++; histo->fill(3,e,1.0); } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... void HistoManager::AddPhoton(const G4DynamicParticle* ph) { G4double e = ph->GetKineticEnergy()/MeV; if(e > 0.0) n_gam++; histo->fill(4,e,1.0); } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... void HistoManager::SetEdepAndRMS(G4int i, G4ThreeVector val) { if(i=0) { if(val[0] > 0.0) edeptrue[i] = val[0]; if(val[1] > 0.0) rmstrue[i] = val[1]; if(val[2] > 0.0) limittrue[i] = val[2]; } } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....