Geant4  10.03.p02
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
RunAction.cc
Go to the documentation of this file.
1 //
2 // ********************************************************************
3 // * License and Disclaimer *
4 // * *
5 // * The Geant4 software is copyright of the Copyright Holders of *
6 // * the Geant4 Collaboration. It is provided under the terms and *
7 // * conditions of the Geant4 Software License, included in the file *
8 // * LICENSE and available at http://cern.ch/geant4/license . These *
9 // * include a list of copyright holders. *
10 // * *
11 // * Neither the authors of this software system, nor their employing *
12 // * institutes,nor the agencies providing financial support for this *
13 // * work make any representation or warranty, express or implied, *
14 // * regarding this software system or assume any liability for its *
15 // * use. Please see the license in the file LICENSE and URL above *
16 // * for the full disclaimer and the limitation of liability. *
17 // * *
18 // * This code implementation is the result of the scientific and *
19 // * technical work of the GEANT4 collaboration. *
20 // * By using, copying, modifying or distributing the software (or *
21 // * any work based on the software) you agree to acknowledge its *
22 // * use in resulting scientific publications, and indicate your *
23 // * acceptance of all terms of the Geant4 Software license. *
24 // ********************************************************************
25 //
26 // This example is provided by the Geant4-DNA collaboration
27 // Any report or published results obtained using the Geant4-DNA software
28 // shall cite the following Geant4-DNA collaboration publication:
29 // Med. Phys. 37 (2010) 4692-4708
30 // J. Comput. Phys. 274 (2014) 841-882
31 // The Geant4-DNA web site is available at http://geant4-dna.org
32 //
33 // $Id$
34 //
37 
38 #include "RunAction.hh"
39 #include "PrimaryGeneratorAction.hh"
40 #include "Run.hh"
41 #include "DetectorConstruction.hh"
42 
43 #include "G4Run.hh"
44 #include "G4RunManager.hh"
45 #include "G4UnitsTable.hh"
46 #include "G4SystemOfUnits.hh"
47 
48 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
49 
51  : G4UserRunAction()
52 {
53 }
54 
55 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
56 
58 {
59 }
60 
61 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
62 
64 {
65  Run* run = new Run();
66  return run;
67 }
68 
69 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
70 
71 void RunAction::BeginOfRunAction(const G4Run* run)
72 {
73  G4cout << "### Run " << run->GetRunID() << " starts." << G4endl;
74 
75  // informs the runManager to save random number seed
77 }
78 
79 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
80 
81 void RunAction::EndOfRunAction(const G4Run* run)
82 {
83  G4int nofEvents = run->GetNumberOfEvent();
84  if (nofEvents == 0) return;
85 
86  // results
87  //
88  const Run* chem4Run = static_cast<const Run*>(run);
89  G4double sumDose = chem4Run->GetSumDose();
90 
91  //print
92  //
93  if (IsMaster())
94  {
95  G4cout
96  << G4endl
97  << "--------------------End of Global Run-----------------------"
98  << G4endl
99  << " The run has " << nofEvents << " events "
100  << G4endl;
101 
102  ScoreSpecies* masterScorer=
103  dynamic_cast<ScoreSpecies*>(chem4Run->GetPrimitiveScorer());
104 
105  G4cout << "Number of events recorded by the species scorer = "
106  << masterScorer->GetNumberOfRecordedEvents()
107  << G4endl;
108 
109  masterScorer->OutputAndClear();
110  }
111  else
112  {
113  G4cout
114  << G4endl
115  << "--------------------End of Local Run------------------------"
116  << G4endl
117  << " The run has " << nofEvents << " events"
118  << G4endl;
119  }
120 
121  G4cout
122  << " Total energy deposited in the world volume : " << sumDose/eV << " eV"
123  << G4endl
124  << " ------------------------------------------------------------"
125  << G4endl
126  << G4endl;
127 }
128 
129 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
int GetNumberOfRecordedEvents() const
Definition: ScoreSpecies.hh:77
void BeginOfRunAction(const G4Run *)
Definition: RunAction.cc:57
void SetRandomNumberStore(G4bool flag)
virtual G4Run * GenerateRun()
Definition: RunAction.cc:66
int G4int
Definition: G4Types.hh:78
G4GLOB_DLL std::ostream G4cout
G4int GetNumberOfEvent() const
Definition: G4Run.hh:79
G4bool IsMaster() const
void EndOfRunAction(const G4Run *)
Definition: RunAction.cc:260
G4int GetRunID() const
Definition: G4Run.hh:76
Definition: G4Run.hh:46
static constexpr double eV
Definition: G4SIunits.hh:215
~RunAction()
Definition: RunAction.cc:52
G4double GetSumDose() const
Definition: Run.hh:62
static G4RunManager * GetRunManager()
Definition: G4RunManager.cc:79
virtual void OutputAndClear()
G4VPrimitiveScorer * GetPrimitiveScorer() const
Definition: Run.hh:63
#define G4endl
Definition: G4ios.hh:61
double G4double
Definition: G4Types.hh:76
Definition: Run.hh:46