Geant4  10.02
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 90969 2015-06-12 08:12:57Z 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 
89  if (isMaster) {
90  // G4Random::showEngineStatus();
91  fTimer = new G4Timer();
92  fTimer->Start();
93  }
94 }
95 
96 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
97 
99 {
100  // compute and print statistic
101  if (isMaster) {
102  fTimer->Stop();
103  if(!((G4RunManager::GetRunManager()->GetRunManagerType() ==
105  G4cout << "\n" << "Total number of events: "
106  << fRun->GetNumberOfEvent() << G4endl;
107  G4cout << "Master thread time: " << *fTimer << G4endl;
108  }
109  delete fTimer;
110  fRun->EndOfRun();
111  }
112  //save histograms
113  G4AnalysisManager* analysis = G4AnalysisManager::Instance();
114  if (analysis->IsActive()) {
115  analysis->Write();
116  analysis->CloseFile();
117  }
118 
119  // show Rndm status
120  // if (isMaster) G4Random::showEngineStatus();
121 }
122 
123 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
124 
126 {
127  if (fRun) fRun->SetEdepAndRMS(i, edep, rms, lim);
128 }
129 
130 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
131 
133 {
134  if (fRun) fRun->SetApplyLimit(val);
135 }
136 
137 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
PrimaryGeneratorAction class.
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:132
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:66
~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