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 RunAction.cc 27 /// \brief Implementation of the RunAction cla 27 /// \brief Implementation of the RunAction class 28 // 28 // 29 // << 29 // $Id$ >> 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 "HistoManager.hh" << 36 #include "PrimaryGeneratorAction.hh" << 37 #include "Run.hh" 35 #include "Run.hh" >> 36 #include "PrimaryGeneratorAction.hh" >> 37 #include "HistoManager.hh" 38 38 39 #include "G4PhysicalConstants.hh" << 40 #include "G4Run.hh" 39 #include "G4Run.hh" 41 #include "G4SystemOfUnits.hh" << 42 #include "G4UnitsTable.hh" 40 #include "G4UnitsTable.hh" 43 << 41 #include "G4PhysicalConstants.hh" >> 42 #include "G4SystemOfUnits.hh" 44 #include <iomanip> 43 #include <iomanip> 45 44 46 //....oooOO0OOooo........oooOO0OOooo........oo 45 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 47 46 48 RunAction::RunAction(PrimaryGeneratorAction* k << 47 RunAction::RunAction(PrimaryGeneratorAction* kin) >> 48 :G4UserRunAction(), >> 49 fPrimary(kin), fRun(0), fHistoManager(0) 49 { 50 { 50 fHistoManager = new HistoManager(); 51 fHistoManager = new HistoManager(); 51 } 52 } 52 53 53 //....oooOO0OOooo........oooOO0OOooo........oo 54 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 54 55 55 RunAction::~RunAction() 56 RunAction::~RunAction() 56 { << 57 { 57 delete fHistoManager; 58 delete fHistoManager; 58 } 59 } 59 //....oooOO0OOooo........oooOO0OOooo........oo 60 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 60 61 61 G4Run* RunAction::GenerateRun() 62 G4Run* RunAction::GenerateRun() 62 { << 63 { 63 fRun = new Run(); 64 fRun = new Run(); 64 return fRun; 65 return fRun; 65 } 66 } 66 //....oooOO0OOooo........oooOO0OOooo........oo 67 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 67 68 68 void RunAction::BeginOfRunAction(const G4Run*) 69 void RunAction::BeginOfRunAction(const G4Run*) 69 { << 70 { 70 // keep run condition 71 // keep run condition 71 if (fPrimary) { << 72 if (fPrimary) { 72 G4ParticleDefinition* particle = fPrimary- << 73 G4ParticleDefinition* particle >> 74 = fPrimary->GetParticleGun()->GetParticleDefinition(); 73 G4double energy = fPrimary->GetParticleGun 75 G4double energy = fPrimary->GetParticleGun()->GetParticleEnergy(); 74 fRun->SetPrimary(particle, energy); 76 fRun->SetPrimary(particle, energy); 75 } << 77 } 76 << 78 77 // histograms << 79 //histograms 78 // 80 // 79 G4AnalysisManager* analysisManager = G4Analy 81 G4AnalysisManager* analysisManager = G4AnalysisManager::Instance(); 80 if (analysisManager->IsActive()) { << 82 if ( analysisManager->IsActive() ) { 81 analysisManager->OpenFile(); 83 analysisManager->OpenFile(); 82 } 84 } 83 } 85 } 84 86 85 //....oooOO0OOooo........oooOO0OOooo........oo 87 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 86 88 87 void RunAction::EndOfRunAction(const G4Run*) 89 void RunAction::EndOfRunAction(const G4Run*) 88 { 90 { 89 if (isMaster) fRun->EndOfRun(); << 91 if (isMaster) fRun->EndOfRun(); 90 << 92 91 // save histograms << 93 //save histograms 92 // << 94 // 93 G4AnalysisManager* analysisManager = G4Analy << 95 G4AnalysisManager* analysisManager = G4AnalysisManager::Instance(); 94 if (analysisManager->IsActive()) { << 96 if ( analysisManager->IsActive() ) { 95 analysisManager->Write(); << 97 analysisManager->Write(); 96 analysisManager->CloseFile(); << 98 analysisManager->CloseFile(); 97 } << 99 } 98 } 100 } 99 101 100 //....oooOO0OOooo........oooOO0OOooo........oo 102 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 101 103