Geant4  10.01.p01
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 //
28 //
29 // $Id: RunAction.cc 85280 2014-10-27 09:20:14Z gcosmo $
30 //
31 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
32 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
33 
34 #include "RunAction.hh"
35 
36 #include "DetectorConstruction.hh"
37 #include "PrimaryGeneratorAction.hh"
38 #include "RunActionMessenger.hh"
39 #include "HistoManager.hh"
40 #include "Run.hh"
41 #include "G4Timer.hh"
42 #include "G4RunManager.hh"
43 #include "Randomize.hh"
44 
45 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
46 
48 :G4UserRunAction(), fDetector(det), fPrimary(prim), fRun(0), fRunMessenger(0),
49  fHistoManager(0), fTimer(0)
50 {
53 }
54 
55 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
56 
58 {
59  delete fRunMessenger;
60 }
61 
62 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
63 
65 {
66  fRun = new Run(fDetector);
67  return fRun;
68 }
69 
70 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
71 
73 {
74  // keep run condition
75  if ( fPrimary ) {
76  G4ParticleDefinition* particle
79  fRun->SetPrimary(particle, energy);
80  }
81 
82  //histograms
83  //
84  G4AnalysisManager* analysis = G4AnalysisManager::Instance();
85  if (analysis->IsActive()) analysis->OpenFile();
86 
87  // save Rndm status and open the timer
88  if (isMaster) {
89  G4Random::showEngineStatus();
90  fTimer = new G4Timer();
91  fTimer->Start();
92  }
93 }
94 
95 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
96 
98 {
99  // compute and print statistic
100  if (isMaster) {
101  fTimer->Stop();
102  if(!((G4RunManager::GetRunManager()->GetRunManagerType() ==
104  G4cout << "\n" << "Total number of events: "
105  << fRun->GetNumberOfEvent() << G4endl;
106  G4cout << "Master thread time: " << *fTimer << G4endl;
107  }
108  delete fTimer;
109  fRun->EndOfRun();
110  }
111  //save histograms
112  G4AnalysisManager* analysis = G4AnalysisManager::Instance();
113  if (analysis->IsActive()) {
114  analysis->Write();
115  analysis->CloseFile();
116  }
117 
118  // show Rndm status
119  if (isMaster) G4Random::showEngineStatus();
120 }
121 
122 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
123 
125 {
126  if (fRun) fRun->SetEdepAndRMS(i, edep, rms, lim);
127 }
128 
129 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
130 
132 {
133  if (fRun) fRun->SetApplyLimit(val);
134 }
135 
136 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
void BeginOfRunAction(const G4Run *)
Definition: RunAction.cc:57
G4Timer * fTimer
Definition: RunAction.hh:74
RunActionMessenger * fRunMessenger
Definition: RunAction.hh:76
virtual G4Run * GenerateRun()
Definition: RunAction.cc:66
void SetEdepAndRMS(G4int, G4double, G4double, G4double)
Definition: Run.cc:346
int G4int
Definition: G4Types.hh:78
DetectorConstruction * fDetector
Definition: RunAction.hh:63
HistoManager * fHistoManager
Definition: RunAction.hh:66
G4GLOB_DLL std::ostream G4cout
G4int GetNumberOfEvent() const
Definition: G4Run.hh:79
bool G4bool
Definition: G4Types.hh:79
void SetApplyLimit(G4bool val)
Definition: RunAction.cc:131
void SetEdepAndRMS(G4ThreeVector)
Definition: RunAction.cc:185
void EndOfRunAction(const G4Run *)
Definition: RunAction.cc:260
Definition: G4Run.hh:46
ExG4HbookAnalysisManager G4AnalysisManager
Definition: g4hbook_defs.hh:61
~RunAction()
Definition: RunAction.cc:52
static G4RunManager * GetRunManager()
Definition: G4RunManager.cc:79
G4ParticleGun * GetParticleGun()
G4double energy(const ThreeVector &p, const G4double m)
void Stop()
G4ParticleDefinition * GetParticleDefinition() const
Detector construction class to demonstrate various ways of placement.
void EndOfRun()
Definition: Run.cc:147
#define G4endl
Definition: G4ios.hh:61
void Start()
void SetPrimary(G4ParticleDefinition *particle, G4double energy)
Definition: Run.cc:77
double G4double
Definition: G4Types.hh:76
Definition: Run.hh:46
G4double GetParticleEnergy() const
Run * fRun
Definition: RunAction.hh:65
PrimaryGeneratorAction * fPrimary
Definition: RunAction.hh:64
void SetApplyLimit(G4bool)
Definition: Run.cc:357