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 // This example is provided by the Geant4-DNA 26 // This example is provided by the Geant4-DNA collaboration 27 // Any report or published results obtained us << 27 // Any report or published results obtained using the Geant4-DNA software 28 // shall cite the following Geant4-DNA collabo 28 // shall cite the following Geant4-DNA collaboration publications: 29 // Med. Phys. 45 (2018) e722-e739 << 29 // Med. Phys. 45 (2018) e722-e739 30 // Phys. Med. 31 (2015) 861-874 << 30 // Phys. Med. 31 (2015) 861-874 31 // Med. Phys. 37 (2010) 4692-4708 << 31 // Med. Phys. 37 (2010) 4692-4708 32 // Int. J. Model. Simul. Sci. Comput. 1 (2010) << 32 // Int. J. Model. Simul. Sci. Comput. 1 (2010) 157\u2013178 33 // 33 // 34 // The Geant4-DNA web site is available at htt 34 // The Geant4-DNA web site is available at http://geant4-dna.org 35 // 35 // 36 /// \file RunAction.cc 36 /// \file RunAction.cc 37 /// \brief Implementation of the RunAction cla 37 /// \brief Implementation of the RunAction class 38 38 39 #include "RunAction.hh" 39 #include "RunAction.hh" 40 40 41 #include "G4AnalysisManager.hh" << 42 #include "G4RunManager.hh" 41 #include "G4RunManager.hh" >> 42 #include "G4SystemOfUnits.hh" >> 43 >> 44 #include "G4AnalysisManager.hh" 43 45 44 //....oooOO0OOooo........oooOO0OOooo........oo 46 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 45 47 46 RunAction::RunAction() : G4UserRunAction() << 48 RunAction::RunAction() >> 49 :G4UserRunAction() 47 { 50 { 48 // Create analysis manager << 51 // book histograms, ntuple 49 G4cout << "##### Create analysis manager " << 52 50 << " " << this << G4endl; << 53 // create analysis manager 51 G4AnalysisManager* analysisManager = G4Analy << 52 54 >> 55 G4cout << "##### Create analysis manager " << " " << this << G4endl; >> 56 G4AnalysisManager* analysisManager = G4AnalysisManager::Instance(); >> 57 53 analysisManager->SetDefaultFileType("root"); 58 analysisManager->SetDefaultFileType("root"); 54 analysisManager->SetNtupleMerging(true); 59 analysisManager->SetNtupleMerging(true); 55 60 56 G4cout << "Using " << analysisManager->GetTy << 61 G4cout << "Using " << analysisManager->GetType() >> 62 << " analysis manager" >> 63 << G4endl; 57 64 58 // Create directories << 65 // create directories >> 66 59 analysisManager->SetVerboseLevel(1); 67 analysisManager->SetVerboseLevel(1); 60 68 61 // Create ntuple << 69 // create ntuple >> 70 62 analysisManager->CreateNtuple("t", "t-distri 71 analysisManager->CreateNtuple("t", "t-distribution"); 63 analysisManager->CreateNtupleDColumn("radius 72 analysisManager->CreateNtupleDColumn("radius1"); 64 analysisManager->CreateNtupleIColumn("noRadi 73 analysisManager->CreateNtupleIColumn("noRadius"); 65 analysisManager->CreateNtupleDColumn("nbHits 74 analysisManager->CreateNtupleDColumn("nbHits"); 66 analysisManager->CreateNtupleDColumn("nbScor 75 analysisManager->CreateNtupleDColumn("nbScoredHits"); 67 analysisManager->CreateNtupleDColumn("edep") 76 analysisManager->CreateNtupleDColumn("edep"); 68 analysisManager->CreateNtupleDColumn("radius 77 analysisManager->CreateNtupleDColumn("radius2"); 69 analysisManager->CreateNtupleDColumn("Einc") 78 analysisManager->CreateNtupleDColumn("Einc"); 70 79 71 analysisManager->FinishNtuple(); 80 analysisManager->FinishNtuple(); 72 } 81 } 73 82 74 //....oooOO0OOooo........oooOO0OOooo........oo 83 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 75 84 76 RunAction::~RunAction() {} << 85 RunAction::~RunAction() >> 86 { >> 87 } 77 88 78 //....oooOO0OOooo........oooOO0OOooo........oo 89 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 79 90 80 void RunAction::BeginOfRunAction(const G4Run*) 91 void RunAction::BeginOfRunAction(const G4Run*) 81 { << 92 { 82 // Inform the runManager to save random numb << 93 // inform the runManager to save random number seed 83 G4RunManager::GetRunManager()->SetRandomNumb 94 G4RunManager::GetRunManager()->SetRandomNumberStore(false); 84 95 85 // Open an output file << 96 // open an output file 86 auto analysisManager = G4AnalysisManager::In << 97 auto analysisManager = G4AnalysisManager::Instance(); 87 G4String fileName = "t"; 98 G4String fileName = "t"; 88 analysisManager->OpenFile(fileName); 99 analysisManager->OpenFile(fileName); 89 } 100 } 90 101 91 //....oooOO0OOooo........oooOO0OOooo........oo 102 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 92 103 93 void RunAction::EndOfRunAction(const G4Run*) << 104 void RunAction::EndOfRunAction(const G4Run* ) 94 { 105 { 95 // Print histogram statistics << 106 // print histogram statistics >> 107 96 auto analysisManager = G4AnalysisManager::In 108 auto analysisManager = G4AnalysisManager::Instance(); 97 << 109 98 // Save histograms << 110 // save histograms >> 111 99 analysisManager->Write(); 112 analysisManager->Write(); 100 analysisManager->CloseFile(); 113 analysisManager->CloseFile(); 101 } 114 } 102 115 103 //....oooOO0OOooo........oooOO0OOooo........oo 116 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 104 117