Geant4  10.02.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 78723 2014-01-20 10:32:17Z gcosmo $
30 //
31 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
32 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
33 
34 #include "RunAction.hh"
35 #include "DetectorConstruction.hh"
36 #include "PhysicsList.hh"
37 #include "PrimaryGeneratorAction.hh"
38 #include "Run.hh"
39 #include "HistoManager.hh"
40 
41 #include "G4RunManager.hh"
42 #include "G4EmCalculator.hh"
43 
44 #include "Randomize.hh"
45 
46 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
47 
50 fpDetector(0), fpRun(0),fpHistoManager(0)
51 {
52  fpDetector =
55 
56  // Book predefined histograms
57  fpHistoManager = new HistoManager();
58  }
59 
60 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
61 
63 {
64  delete fpHistoManager;
65 }
66 
67 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
68 
70 {
71  fpRun = new Run(fpDetector);
72  return fpRun;
73 }
74 
75 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
76 
78 {
79  // save Rndm status
81  //if (isMaster) G4Random::showEngineStatus();
82 
83  //histograms
84  //
85  G4AnalysisManager* analysisManager = G4AnalysisManager::Instance();
86  if ( analysisManager->IsActive() ) {
87  analysisManager->OpenFile();
88  }
89 
90  //=============================================================================
94 
95  if (!primary) return; //
96 
97  // keep run condition
98  G4ParticleDefinition* particle
99  = primary->GetParticleGun()->GetParticleDefinition();
101  fpRun->SetPrimary(particle, energy);
102 
103 }
104 
105 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
106 
107 void RunAction::EndOfRunAction(const G4Run*)
108 {
109  if (isMaster) fpRun->EndOfRun();
110 
111  // save histograms
112  G4AnalysisManager* analysisManager = G4AnalysisManager::Instance();
113  if ( analysisManager->IsActive() ) {
114  analysisManager->Write();
115  analysisManager->CloseFile();
116  }
117 
118  // show Rndm status
119  //if (isMaster) G4Random::showEngineStatus();
120 }
121 
122 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
PrimaryGeneratorAction class.
const G4VUserPrimaryGeneratorAction * GetUserPrimaryGeneratorAction() const
void BeginOfRunAction(const G4Run *)
Definition: RunAction.cc:57
HistoManager * fpHistoManager
Definition: RunAction.hh:61
const G4VUserDetectorConstruction * GetUserDetectorConstruction() const
virtual G4Run * GenerateRun()
Definition: RunAction.cc:66
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)
PrimaryGeneratorAction * primary
Definition: RunAction.hh:60
G4ParticleDefinition * GetParticleDefinition() const
Detector construction class to demonstrate various ways of placement.
void EndOfRun()
Definition: Run.cc:147
const DetectorConstruction * fpDetector
Definition: RunAction.hh:59
void SetPrimary(G4ParticleDefinition *particle, G4double energy)
Definition: Run.cc:77
double G4double
Definition: G4Types.hh:76
Definition: Run.hh:46
G4double GetParticleEnergy() const
Run * fpRun
Definition: RunAction.hh:60