// // ******************************************************************** // * 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. * // ******************************************************************** // // $Id: RunAction.cc,v 1.3 2006/11/17 11:44:46 vnivanch Exp $ // GEANT4 tag $Name: geant4-09-03-cand-01 $ // //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... #include "RunAction.hh" #include "DetectorConstruction.hh" #include "PrimaryGeneratorAction.hh" #include "HistoManager.hh" #include "G4Run.hh" #include "G4RunManager.hh" #include "G4UnitsTable.hh" #include "G4EmCalculator.hh" #include "Randomize.hh" #include //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... RunAction::RunAction(DetectorConstruction* det, PrimaryGeneratorAction* prim, HistoManager* histo) : detector(det), primary(prim), ProcCounter(0), histoManager(histo) { totalEventCount=0; } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... RunAction::~RunAction() { } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... void RunAction::BeginOfRunAction(const G4Run* aRun) { G4cout << "### Run " << aRun->GetRunID() << " start." << G4endl; // save Rndm status // G4RunManager::GetRunManager()->SetRandomNumberStore(false); // CLHEP::HepRandom::showEngineStatus(); if (ProcCounter) delete ProcCounter; ProcCounter = new ProcessesCount; totalEventCount = 0; photonStats.Clear(); electronStats.Clear(); positronStats.Clear(); histoManager->book(); } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... void RunAction::FillData(const G4String & particleName, G4double kinEnergy, G4double costheta, G4double /* phi*/, G4double longitudinalPolarization) { if (particleName=="gamma") photonStats.FillData(kinEnergy, costheta, longitudinalPolarization); else if (particleName=="e-") electronStats.FillData(kinEnergy, costheta, longitudinalPolarization); else if (particleName=="e+") positronStats.FillData(kinEnergy, costheta, longitudinalPolarization); } void RunAction::CountProcesses(G4String procName) { // is the process already counted ? // *AS* change to std::map?! size_t nbProc = ProcCounter->size(); size_t i = 0; while ((iGetName()!=procName)) i++; if (i == nbProc) ProcCounter->push_back( new OneProcessCount(procName)); (*ProcCounter)[i]->Count(); } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... void RunAction::EndOfRunAction(const G4Run* aRun) { G4int NbOfEvents = aRun->GetNumberOfEvent(); if (NbOfEvents == 0) return; G4int prec = G4cout.precision(5); G4Material* material = detector->GetMaterial(); G4double density = material->GetDensity(); G4ParticleDefinition* particle = primary->GetParticleGun()->GetParticleDefinition(); G4String Particle = particle->GetParticleName(); G4double energy = primary->GetParticleGun()->GetParticleEnergy(); G4cout << "\n The run consists of " << NbOfEvents << " "<< Particle << " of " << G4BestUnit(energy,"Energy") << " through " << G4BestUnit(detector->GetBoxSizeZ(),"Length") << " of " << material->GetName() << " (density: " << G4BestUnit(density,"Volumic Mass") << ")" << G4endl; //frequency of processes G4cout << "\n Process calls frequency --->\n"; for (size_t i=0; i< ProcCounter->size();i++) { G4String procName = (*ProcCounter)[i]->GetName(); G4int count = (*ProcCounter)[i]->GetCounter(); G4cout << "\t" << procName << " = " << count<<"\n"; } if (totalEventCount == 0) return; G4cout<<" Gamma: \n"; photonStats.PrintResults(totalEventCount); G4cout<<" Electron: \n"; electronStats.PrintResults(totalEventCount); G4cout<<" Positron: \n"; positronStats.PrintResults(totalEventCount); //cross check from G4EmCalculator // G4cout << "\n Verification from G4EmCalculator. \n"; // G4EmCalculator emCal; //restore default format G4cout.precision(prec); // write out histograms histoManager->save(); // show Rndm status CLHEP::HepRandom::showEngineStatus(); } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... void RunAction::EventFinished() { ++totalEventCount; photonStats.EventFinished(); electronStats.EventFinished(); positronStats.EventFinished(); } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... RunAction::ParticleStatistics::ParticleStatistics() : currentNumber(0), totalNumber(0), totalNumber2(0), sumEnergy(0), sumEnergy2(0), sumPolarization(0), sumPolarization2(0), sumCosTheta(0), sumCosTheta2(0) {} //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... RunAction::ParticleStatistics::~ParticleStatistics() {} //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... void RunAction::ParticleStatistics::EventFinished() { totalNumber+=currentNumber; totalNumber2+=currentNumber*currentNumber; currentNumber=0; } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... void RunAction::ParticleStatistics:: FillData(G4double kinEnergy, G4double costheta, G4double longitudinalPolarization) { ++currentNumber; sumEnergy+=kinEnergy; sumEnergy2+=kinEnergy*kinEnergy; sumPolarization+=longitudinalPolarization; sumPolarization2+=longitudinalPolarization*longitudinalPolarization; sumCosTheta+=costheta; sumCosTheta2+=costheta*costheta; } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... void RunAction::ParticleStatistics::PrintResults(G4int totalNumberOfEvents) { G4cout<<"Mean Number per Event :" <