Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer 3 // * License and Disclaimer * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th 5 // * The Geant4 software is copyright of the Copyright Holders of * 6 // * the Geant4 Collaboration. It is provided 6 // * the Geant4 Collaboration. It is provided under the terms and * 7 // * conditions of the Geant4 Software License 7 // * conditions of the Geant4 Software License, included in the file * 8 // * LICENSE and available at http://cern.ch/ 8 // * LICENSE and available at http://cern.ch/geant4/license . These * 9 // * include a list of copyright holders. 9 // * include a list of copyright holders. * 10 // * 10 // * * 11 // * Neither the authors of this software syst 11 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 12 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 13 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 14 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file 15 // * use. Please see the license in the file LICENSE and URL above * 16 // * for the full disclaimer and the limitatio 16 // * for the full disclaimer and the limitation of liability. * 17 // * 17 // * * 18 // * This code implementation is the result 18 // * This code implementation is the result of the scientific and * 19 // * technical work of the GEANT4 collaboratio 19 // * technical work of the GEANT4 collaboration. * 20 // * By using, copying, modifying or distri 20 // * By using, copying, modifying or distributing the software (or * 21 // * any work based on the software) you ag 21 // * any work based on the software) you agree to acknowledge its * 22 // * use in resulting scientific publicati 22 // * use in resulting scientific publications, and indicate your * 23 // * acceptance of all terms of the Geant4 Sof 23 // * acceptance of all terms of the Geant4 Software license. * 24 // ******************************************* 24 // ******************************************************************** 25 // 25 // 26 #include "RunAction.hh" 26 #include "RunAction.hh" 27 << 28 #include "Run.hh" << 29 << 30 #include "G4AnalysisManager.hh" 27 #include "G4AnalysisManager.hh" 31 #include "G4DNAEventScheduler.hh" 28 #include "G4DNAEventScheduler.hh" 32 #include "G4DNAScavengerMaterial.hh" 29 #include "G4DNAScavengerMaterial.hh" 33 #include "G4Run.hh" 30 #include "G4Run.hh" 34 #include "G4RunManager.hh" 31 #include "G4RunManager.hh" 35 #include "G4Scheduler.hh" 32 #include "G4Scheduler.hh" 36 #include "G4SystemOfUnits.hh" 33 #include "G4SystemOfUnits.hh" 37 #include "G4VChemistryWorld.hh" 34 #include "G4VChemistryWorld.hh" >> 35 #include "Run.hh" 38 //....oooOO0OOooo........oooOO0OOooo........oo 36 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo..... 39 37 40 RunAction::RunAction() : G4UserRunAction() {} 38 RunAction::RunAction() : G4UserRunAction() {} 41 //....oooOO0OOooo........oooOO0OOooo........oo 39 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo..... 42 40 43 void RunAction::SetEventScheduler(G4DNAEventSc << 41 void RunAction::SetEventScheduler(G4DNAEventScheduler *pEventScheduler) { 44 { << 45 fpEventScheduler = pEventScheduler; 42 fpEventScheduler = pEventScheduler; 46 } 43 } 47 //....oooOO0OOooo........oooOO0OOooo........oo 44 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo..... 48 45 49 G4Run* RunAction::GenerateRun() << 46 G4Run *RunAction::GenerateRun() { 50 { << 47 Run *run = new Run(); 51 Run* run = new Run(); << 52 return run; 48 return run; 53 } 49 } 54 50 55 //....oooOO0OOooo........oooOO0OOooo........oo 51 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo..... 56 52 57 void RunAction::BeginOfRunAction(const G4Run* << 53 void RunAction::BeginOfRunAction(const G4Run *run) { 58 { << 59 G4cout << "### Run " << run->GetRunID() << " 54 G4cout << "### Run " << run->GetRunID() << " starts." << G4endl; 60 if (G4Threading::IsMultithreadedApplication( 55 if (G4Threading::IsMultithreadedApplication() && IsMaster()) { 61 return; 56 return; 62 } 57 } 63 auto runInfo = dynamic_cast<const Run*>(run) << 58 auto runInfo = dynamic_cast<const Run *>(run); 64 auto GvaluesScorer = dynamic_cast<Scorer<Gva << 59 auto GvaluesScorer = >> 60 dynamic_cast<Scorer<Gvalues> *>(runInfo->GetGvaluesScorer()); 65 61 66 if (fpEventScheduler != nullptr) { 62 if (fpEventScheduler != nullptr) { 67 for (const auto& it : GvaluesScorer->GetpS << 63 for (const auto &it: GvaluesScorer->GetpScorer()->fTimeToRecord) { 68 fpEventScheduler->AddTimeToRecord(it); 64 fpEventScheduler->AddTimeToRecord(it); 69 } 65 } 70 } 66 } 71 GvaluesScorer->SetEventScheduler(fpEventSche 67 GvaluesScorer->SetEventScheduler(fpEventScheduler); 72 } 68 } 73 69 74 //....oooOO0OOooo........oooOO0OOooo........oo 70 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo..... 75 71 76 void RunAction::EndOfRunAction(const G4Run* ru << 72 void RunAction::EndOfRunAction(const G4Run *run) { 77 { << 78 G4int nofEvents = run->GetNumberOfEvent(); 73 G4int nofEvents = run->GetNumberOfEvent(); 79 if (nofEvents == 0) { 74 if (nofEvents == 0) { 80 return; 75 return; 81 } 76 } 82 auto chem6Run = dynamic_cast<const Run*>(run << 77 auto chem6Run = dynamic_cast<const Run *>(run); 83 G4double sumDose = chem6Run->GetSumDose(); 78 G4double sumDose = chem6Run->GetSumDose(); 84 79 85 if (G4Threading::IsMultithreadedApplication( 80 if (G4Threading::IsMultithreadedApplication() && IsMaster()) { 86 G4cout << G4endl << "--------------------- << 81 G4cout << G4endl >> 82 << "--------------------------End of Global Run------------------------------" 87 << G4endl << "The run has " << nofE 83 << G4endl << "The run has " << nofEvents << " events " << G4endl; 88 84 89 auto masterGvaluesScorer = dynamic_cast<Sc << 85 auto masterGvaluesScorer = >> 86 dynamic_cast<Scorer<Gvalues> *>(chem6Run->GetGvaluesScorer()); 90 87 91 auto masterDoseLimite = dynamic_cast<Score << 88 auto masterDoseLimite = >> 89 dynamic_cast<Scorer<Dose> *>(chem6Run->GetSumDoseLimit()); 92 90 93 G4cout << "Number of events recorded by th 91 G4cout << "Number of events recorded by the species scorer : " 94 << masterGvaluesScorer->GetpScorer( << 92 << masterGvaluesScorer->GetpScorer()->GetNumberOfRecordedEvents() 95 << G4endl; << 93 << " events " << G4endl; 96 G4double dose_mean = masterDoseLimite->Get 94 G4double dose_mean = masterDoseLimite->GetpScorer()->fDosesCutOff / gray; 97 auto boundingBox = masterDoseLimite->GetCh << 95 auto boundingBox = >> 96 masterDoseLimite->GetChemistryWorld()->GetChemistryBoundary(); 98 G4double V = boundingBox->Volume() / cm3; 97 G4double V = boundingBox->Volume() / cm3; 99 G4double DoseInGray = (sumDose / eV) / (0. 98 G4double DoseInGray = (sumDose / eV) / (0.001 * V * 6.242e+18); 100 G4cout << "Cut-off dose for each beam line 99 G4cout << "Cut-off dose for each beam line : " << dose_mean << " Gy " << G4endl; 101 G4cout << "Actual dose : " << DoseInGray < 100 G4cout << "Actual dose : " << DoseInGray << " Gy for " << nofEvents 102 << " events. Actual average dose : 101 << " events. Actual average dose : " << DoseInGray / nofEvents << " Gy" << G4endl; 103 masterGvaluesScorer->OutputAndClear(std::t 102 masterGvaluesScorer->OutputAndClear(std::to_string(dose_mean)); 104 } << 103 105 else { << 104 } else { 106 G4cout << G4endl << "--------------------- << 105 G4cout << G4endl >> 106 << "--------------------------End of Local Run------------------------------" 107 << G4endl << "The run has " << nofE 107 << G4endl << "The run has " << nofEvents << " events. Scavenger info:" << G4endl; 108 auto pScavengerMaterial = << 108 auto pScavengerMaterial = dynamic_cast<G4DNAScavengerMaterial *>( 109 dynamic_cast<G4DNAScavengerMaterial*>(G4 << 109 G4Scheduler::Instance()->GetScavengerMaterial()); 110 pScavengerMaterial->PrintInfo(); 110 pScavengerMaterial->PrintInfo(); 111 } 111 } 112 112 113 G4cout << "Total energy deposited in the wor << 113 G4cout << "Total energy deposited in the world volume : " << sumDose / keV 114 << "--------------------------------- << 114 << " keV" << G4endl 115 << G4endl; << 115 << "-------------------------------------------------------------------------" 116 } << 116 << G4endl << G4endl; 117 << 117 } 118 //....oooOO0OOooo........oooOO0OOooo........oo << 119