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 /// \file RunAction.cc << 26 /// \file hadronic/Hadr03/src/RunAction.cc 27 /// \brief Implementation of the RunAction cla 27 /// \brief Implementation of the RunAction class 28 // 28 // 29 // << 29 // $Id: RunAction.cc 80197 2014-04-07 15:25:49Z gcosmo $ >> 30 // 30 //....oooOO0OOooo........oooOO0OOooo........oo 31 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 31 //....oooOO0OOooo........oooOO0OOooo........oo 32 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 32 33 33 #include "RunAction.hh" 34 #include "RunAction.hh" 34 << 35 #include "DetectorConstruction.hh" << 36 #include "HistoManager.hh" << 37 #include "PrimaryGeneratorAction.hh" << 38 #include "Run.hh" 35 #include "Run.hh" 39 #include "RunMessenger.hh" 36 #include "RunMessenger.hh" >> 37 #include "DetectorConstruction.hh" >> 38 #include "PrimaryGeneratorAction.hh" >> 39 #include "HistoManager.hh" 40 40 41 #include "G4Run.hh" 41 #include "G4Run.hh" 42 #include "G4SystemOfUnits.hh" << 42 #include "G4RunManager.hh" 43 #include "G4UnitsTable.hh" 43 #include "G4UnitsTable.hh" 44 #include "Randomize.hh" << 44 #include "G4SystemOfUnits.hh" 45 45 >> 46 #include "Randomize.hh" 46 #include <iomanip> 47 #include <iomanip> 47 48 48 //....oooOO0OOooo........oooOO0OOooo........oo 49 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 49 50 50 RunAction::RunAction(DetectorConstruction* det 51 RunAction::RunAction(DetectorConstruction* det, PrimaryGeneratorAction* prim) 51 : fDetector(det), fPrimary(prim) << 52 : G4UserRunAction(), >> 53 fDetector(det), fPrimary(prim), fRun(0), fHistoManager(0), >> 54 fRunMessenger(0), fPrint(true) 52 { 55 { 53 fHistoManager = new HistoManager(); << 56 fHistoManager = new HistoManager(); 54 fRunMessenger = new RunMessenger(this); << 57 fRunMessenger = new RunMessenger(this); 55 } 58 } 56 59 57 //....oooOO0OOooo........oooOO0OOooo........oo 60 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 58 61 59 RunAction::~RunAction() 62 RunAction::~RunAction() 60 { 63 { 61 delete fHistoManager; << 64 delete fHistoManager; 62 delete fRunMessenger; << 65 delete fRunMessenger; 63 } 66 } 64 67 65 //....oooOO0OOooo........oooOO0OOooo........oo 68 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 66 69 67 G4Run* RunAction::GenerateRun() 70 G4Run* RunAction::GenerateRun() 68 { << 71 { 69 fRun = new Run(fDetector); << 72 fRun = new Run(fDetector); 70 return fRun; 73 return fRun; 71 } 74 } 72 75 73 //....oooOO0OOooo........oooOO0OOooo........oo 76 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 74 77 75 void RunAction::BeginOfRunAction(const G4Run*) 78 void RunAction::BeginOfRunAction(const G4Run*) 76 { << 79 { 77 // show Rndm status << 80 // save Rndm status >> 81 G4RunManager::GetRunManager()->SetRandomNumberStore(false); 78 if (isMaster) G4Random::showEngineStatus(); 82 if (isMaster) G4Random::showEngineStatus(); 79 << 83 80 // keep run condition 84 // keep run condition 81 if (fPrimary) { << 85 if (fPrimary) { 82 G4ParticleDefinition* particle = fPrimary- << 86 G4ParticleDefinition* particle >> 87 = fPrimary->GetParticleGun()->GetParticleDefinition(); 83 G4double energy = fPrimary->GetParticleGun 88 G4double energy = fPrimary->GetParticleGun()->GetParticleEnergy(); 84 fRun->SetPrimary(particle, energy); 89 fRun->SetPrimary(particle, energy); 85 } 90 } 86 << 91 87 // histograms << 92 //histograms 88 // 93 // 89 G4AnalysisManager* analysisManager = G4Analy 94 G4AnalysisManager* analysisManager = G4AnalysisManager::Instance(); 90 if (analysisManager->IsActive()) { << 95 if ( analysisManager->IsActive() ) { 91 analysisManager->OpenFile(); 96 analysisManager->OpenFile(); 92 } << 97 } 93 } 98 } 94 99 95 //....oooOO0OOooo........oooOO0OOooo........oo 100 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 96 101 97 void RunAction::EndOfRunAction(const G4Run*) 102 void RunAction::EndOfRunAction(const G4Run*) 98 { 103 { 99 if (isMaster) fRun->EndOfRun(fPrint); << 104 if (isMaster) fRun->EndOfRun(fPrint); 100 << 105 101 // save histograms << 106 //save histograms 102 G4AnalysisManager* analysisManager = G4Analy 107 G4AnalysisManager* analysisManager = G4AnalysisManager::Instance(); 103 if (analysisManager->IsActive()) { << 108 if ( analysisManager->IsActive() ) { 104 analysisManager->Write(); 109 analysisManager->Write(); 105 analysisManager->CloseFile(); 110 analysisManager->CloseFile(); 106 } 111 } 107 << 112 108 // show Rndm status 113 // show Rndm status 109 if (isMaster) G4Random::showEngineStatus(); 114 if (isMaster) G4Random::showEngineStatus(); 110 } 115 } 111 116 112 //....oooOO0OOooo........oooOO0OOooo........oo 117 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 113 118 114 void RunAction::SetPrintFlag(G4bool flag) 119 void RunAction::SetPrintFlag(G4bool flag) 115 { << 120 { 116 fPrint = flag; 121 fPrint = flag; 117 } 122 } 118 << 123 119 //....oooOO0OOooo........oooOO0OOooo........oo 124 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 120 125