// // ******************************************************************** // * 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.19 2006/06/29 16:37:25 gunter Exp $ // GEANT4 tag $Name: $ // //....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* kin, HistoManager* histo) :detector(det), primary(kin), ProcCounter(0), histoManager(histo) { } //....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(true); CLHEP::HepRandom::showEngineStatus(); NbOfTraks0 = NbOfTraks1 = NbOfSteps0 = NbOfSteps1 = 0; edep = 0.; trueRange = trueRange2 = 0.; projRange = projRange2 = 0.; transvDev = transvDev2 = 0.; ProcCounter = new ProcessesCount; //histograms // histoManager->book(); } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... void RunAction::CountProcesses(G4String procName) { //does the process already encounted ? 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; G4double dNbOfEvents = double(NbOfEvents); G4ParticleDefinition* particle = primary->GetParticleGun() ->GetParticleDefinition(); G4String partName = particle->GetParticleName(); G4double energy = primary->GetParticleGun()->GetParticleEnergy(); G4double length = detector->GetSize(); G4Material* material = detector->GetMaterial(); G4double density = material->GetDensity(); G4cout << "\n ======================== run summary ======================\n"; G4int prec = G4cout.precision(5); G4cout << "\n The run was: " << NbOfEvents << " " << partName << " of " << G4BestUnit(energy,"Energy") << " through " << G4BestUnit(length,"Length") << " of " << material->GetName() << " (density: " << G4BestUnit(density,"Volumic Mass") << ")" << G4endl; G4cout << "\n ============================================================\n"; G4cout << "\n total energy deposit: " << G4BestUnit(edep/dNbOfEvents, "Energy") << G4endl; //nb of tracks and steps per event // G4cout << "\n nb tracks/event" << " neutral: " << std::setw(10) << NbOfTraks0/dNbOfEvents << " charged: " << std::setw(10) << NbOfTraks1/dNbOfEvents << "\n nb steps/event" << " neutral: " << std::setw(10) << NbOfSteps0/dNbOfEvents << " charged: " << std::setw(10) << NbOfSteps1/dNbOfEvents << G4endl; //frequency of processes call G4cout << "\n nb of process calls per event: \n "; for (size_t i=0; i< ProcCounter->size();i++) G4cout << std::setw(12) << (*ProcCounter)[i]->GetName(); G4cout << "\n "; for (size_t j=0; j< ProcCounter->size();j++) G4cout << std::setw(12) << ((*ProcCounter)[j]->GetCounter())/dNbOfEvents; G4cout << G4endl; //compute true and projected ranges, and transverse dispersion // trueRange /= NbOfEvents; trueRange2 /= NbOfEvents; G4double trueRms = trueRange2 - trueRange*trueRange; if (trueRms>0.) trueRms = std::sqrt(trueRms); else trueRms = 0.; projRange /= NbOfEvents; projRange2 /= NbOfEvents; G4double projRms = projRange2 - projRange*projRange; if (projRms>0.) projRms = std::sqrt(projRms); else projRms = 0.; transvDev /= 2*NbOfEvents; transvDev2 /= 2*NbOfEvents; G4double trvsRms = transvDev2 - transvDev*transvDev; if (trvsRms>0.) trvsRms = std::sqrt(trvsRms); else trvsRms = 0.; //compare true range with csda range from PhysicsTables // G4EmCalculator emCalculator; G4double rangeTable = 0.; if (particle->GetPDGCharge() != 0.) rangeTable = emCalculator.GetCSDARange(energy,particle,material); G4cout << "\n---------------------------------------------------------\n"; G4cout << " Primary particle : " ; G4cout << "\n true Range = " << G4BestUnit(trueRange,"Length") << " rms = " << G4BestUnit(trueRms, "Length"); G4cout << "\n proj Range = " << G4BestUnit(projRange,"Length") << " rms = " << G4BestUnit(projRms, "Length"); G4cout << "\n proj/true = " << projRange/trueRange; G4cout << "\n transverse dispersion at end = " << G4BestUnit(trvsRms,"Length"); G4cout << "\n mass true Range from simulation = " << G4BestUnit(trueRange*density, "Mass/Surface") << "\n from PhysicsTable (csda range) = " << G4BestUnit(rangeTable*density, "Mass/Surface"); G4cout << "\n---------------------------------------------------------\n"; G4cout << G4endl; // reset default precision G4cout.precision(prec); // delete and remove all contents in ProcCounter while (ProcCounter->size()>0){ OneProcessCount* aProcCount=ProcCounter->back(); ProcCounter->pop_back(); delete aProcCount; } delete ProcCounter; //save histograms histoManager->save(); // show Rndm status CLHEP::HepRandom::showEngineStatus(); } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......