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 "Analysis.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 << 54 // the choice of analysis technology is done via selection of a namespace >> 55 // in Analysis.hh 52 56 53 analysisManager->SetDefaultFileType("root"); << 57 G4cout << "##### Create analysis manager " << " " << this << G4endl; >> 58 G4AnalysisManager* analysisManager = G4AnalysisManager::Instance(); >> 59 54 analysisManager->SetNtupleMerging(true); 60 analysisManager->SetNtupleMerging(true); 55 61 56 G4cout << "Using " << analysisManager->GetTy << 62 G4cout << "Using " << analysisManager->GetType() >> 63 << " analysis manager" >> 64 << G4endl; 57 65 58 // Create directories << 66 // create directories >> 67 59 analysisManager->SetVerboseLevel(1); 68 analysisManager->SetVerboseLevel(1); 60 69 61 // Create ntuple << 70 // create ntuple >> 71 62 analysisManager->CreateNtuple("t", "t-distri 72 analysisManager->CreateNtuple("t", "t-distribution"); 63 analysisManager->CreateNtupleDColumn("radius 73 analysisManager->CreateNtupleDColumn("radius1"); 64 analysisManager->CreateNtupleIColumn("noRadi 74 analysisManager->CreateNtupleIColumn("noRadius"); 65 analysisManager->CreateNtupleDColumn("nbHits 75 analysisManager->CreateNtupleDColumn("nbHits"); 66 analysisManager->CreateNtupleDColumn("nbScor 76 analysisManager->CreateNtupleDColumn("nbScoredHits"); 67 analysisManager->CreateNtupleDColumn("edep") 77 analysisManager->CreateNtupleDColumn("edep"); 68 analysisManager->CreateNtupleDColumn("radius 78 analysisManager->CreateNtupleDColumn("radius2"); 69 analysisManager->CreateNtupleDColumn("Einc") 79 analysisManager->CreateNtupleDColumn("Einc"); 70 80 71 analysisManager->FinishNtuple(); 81 analysisManager->FinishNtuple(); 72 } 82 } 73 83 74 //....oooOO0OOooo........oooOO0OOooo........oo 84 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 75 85 76 RunAction::~RunAction() {} << 86 RunAction::~RunAction() >> 87 { >> 88 delete G4AnalysisManager::Instance(); >> 89 } 77 90 78 //....oooOO0OOooo........oooOO0OOooo........oo 91 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 79 92 80 void RunAction::BeginOfRunAction(const G4Run*) 93 void RunAction::BeginOfRunAction(const G4Run*) 81 { << 94 { 82 // Inform the runManager to save random numb << 95 // inform the runManager to save random number seed 83 G4RunManager::GetRunManager()->SetRandomNumb 96 G4RunManager::GetRunManager()->SetRandomNumberStore(false); 84 97 85 // Open an output file << 98 // open an output file 86 auto analysisManager = G4AnalysisManager::In << 99 auto analysisManager = G4AnalysisManager::Instance(); 87 G4String fileName = "t"; 100 G4String fileName = "t"; 88 analysisManager->OpenFile(fileName); 101 analysisManager->OpenFile(fileName); 89 } 102 } 90 103 91 //....oooOO0OOooo........oooOO0OOooo........oo 104 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 92 105 93 void RunAction::EndOfRunAction(const G4Run*) << 106 void RunAction::EndOfRunAction(const G4Run* ) 94 { 107 { 95 // Print histogram statistics << 108 // print histogram statistics >> 109 96 auto analysisManager = G4AnalysisManager::In 110 auto analysisManager = G4AnalysisManager::Instance(); 97 << 111 98 // Save histograms << 112 // save histograms >> 113 99 analysisManager->Write(); 114 analysisManager->Write(); 100 analysisManager->CloseFile(); 115 analysisManager->CloseFile(); 101 } 116 } 102 117 103 //....oooOO0OOooo........oooOO0OOooo........oo 118 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 104 119