Geant4.10
Main Page
Related Pages
Modules
Namespaces
Data Structures
Files
File List
Globals
•
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
geant4.10.00.p01
examples
extended
analysis
shared
src
extended/analysis/shared/src/ActionInitialization.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
// $Id: ActionInitialization.cc 68058 2013-03-13 14:47:43Z gcosmo $
27
//
28
/// \file ActionInitialization.cc
29
/// \brief Implementation of the ActionInitialization class
30
31
#include "ActionInitialization.hh"
32
#include "HistoManager.hh"
33
#include "PrimaryGeneratorAction.hh"
34
#include "RunAction.hh"
35
#include "EventAction.hh"
36
#include "SteppingAction.hh"
37
38
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
39
40
ActionInitialization::ActionInitialization
(
DetectorConstruction
* detector)
41
:
G4VUserActionInitialization
(),
42
fDetector(detector)
43
{}
44
45
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
46
47
ActionInitialization::~ActionInitialization
()
48
{}
49
50
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
51
52
void
ActionInitialization::BuildForMaster
()
const
53
{
54
// Histo manager
55
HistoManager
* histo =
new
HistoManager
();
56
57
// Actions
58
SetUserAction
(
new
RunAction
(histo));
59
}
60
61
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
62
63
void
ActionInitialization::Build
()
const
64
{
65
// Histo manager
66
HistoManager
* histo =
new
HistoManager
();
67
68
// Actions
69
//
70
SetUserAction
(
new
PrimaryGeneratorAction
(fDetector));
71
72
RunAction
* runAction =
new
RunAction
(histo);
73
SetUserAction
(runAction);
74
75
EventAction
* eventAction =
new
EventAction
(runAction, histo);
76
SetUserAction
(eventAction);
77
78
SteppingAction
* steppingAction =
new
SteppingAction
(fDetector, eventAction);
79
SetUserAction
(steppingAction);
80
}
81
82
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
PrimaryGeneratorAction
Definition:
environments/g4py/examples/demos/TestEm0/g4lib/PrimaryGeneratorAction.hh:43
ActionInitialization::~ActionInitialization
virtual ~ActionInitialization()
Definition:
advanced/dnaphysics/src/ActionInitialization.cc:48
HistoManager
Definition:
advanced/amsEcal/include/HistoManager.hh:51
EventAction
Definition:
advanced/amsEcal/include/EventAction.hh:47
G4VUserActionInitialization
Definition:
G4VUserActionInitialization.hh:59
ActionInitialization::ActionInitialization
ActionInitialization()
Definition:
extended/electromagnetic/TestEm4/src/ActionInitialization.cc:40
ActionInitialization::BuildForMaster
virtual void BuildForMaster() const
Definition:
advanced/dnaphysics/src/ActionInitialization.cc:53
SteppingAction
Definition:
advanced/amsEcal/include/SteppingAction.hh:47
ActionInitialization::Build
virtual void Build() const
Definition:
advanced/dnaphysics/src/ActionInitialization.cc:60
G4VUserActionInitialization::SetUserAction
void SetUserAction(G4VUserPrimaryGeneratorAction *) const
Definition:
G4VUserActionInitialization.cc:38
DetectorConstruction
Definition:
environments/g4py/examples/demos/TestEm0/g4lib/DetectorConstruction.hh:46
RunAction
Definition:
environments/g4py/examples/demos/TestEm0/g4lib/RunAction.hh:45
Generated on Wed Apr 30 2014 15:54:26 for Geant4.10 by
1.8.7