Geant4
9.6.p02
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
geant4_9_6_p02
examples
extended
analysis
AnaEx01
AnaEx01.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
//
30
// $Id$
31
//
32
//
33
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
34
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
35
36
#include "
G4RunManager.hh
"
37
#include "
G4UImanager.hh
"
38
39
#include "DetectorConstruction.hh"
40
#include "PhysicsList.hh"
41
#include "PrimaryGeneratorAction.hh"
42
#include "RunAction.hh"
43
#include "EventAction.hh"
44
#include "SteppingAction.hh"
45
#include "HistoManager.hh"
46
47
#ifdef G4VIS_USE
48
#include "
G4VisExecutive.hh
"
49
#endif
50
51
#ifdef G4UI_USE
52
#include "
G4UIExecutive.hh
"
53
#endif
54
55
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
56
57
int
main
(
int
argc,
char
** argv)
58
{
59
// Construct the default run manager
60
//
61
G4RunManager
* runManager =
new
G4RunManager
;
62
63
// Set mandatory initialization classes
64
//
65
DetectorConstruction
* detector =
new
DetectorConstruction
;
66
runManager->
SetUserInitialization
(detector);
67
//
68
PhysicsList
* physics =
new
PhysicsList
;
69
runManager->
SetUserInitialization
(physics);
70
71
// set an HistoManager
72
//
73
HistoManager
* histo =
new
HistoManager
();
74
75
// Set user action classes
76
//
77
PrimaryGeneratorAction
* gen_action =
78
new
PrimaryGeneratorAction
(detector);
79
runManager->
SetUserAction
(gen_action);
80
//
81
RunAction
* run_action =
new
RunAction
(histo);
82
runManager->
SetUserAction
(run_action);
83
//
84
EventAction
* event_action =
new
EventAction
(run_action,histo);
85
runManager->
SetUserAction
(event_action);
86
//
87
SteppingAction
* stepping_action =
88
new
SteppingAction
(detector, event_action);
89
runManager->
SetUserAction
(stepping_action);
90
91
// Initialize G4 kernel
92
//
93
runManager->
Initialize
();
94
95
// Get the pointer to the User Interface manager
96
//
97
G4UImanager
* UImanager =
G4UImanager::GetUIpointer
();
98
99
if
(argc!=1)
// batch mode
100
{
101
G4String
command =
"/control/execute "
;
102
G4String
fileName = argv[1];
103
UImanager->
ApplyCommand
(command+fileName);
104
}
105
else
106
{
// interactive mode : define visualization and UI terminal
107
#ifdef G4VIS_USE
108
G4VisManager
* visManager =
new
G4VisExecutive
;
109
visManager->
Initialize
();
110
#ifdef G4UI_USE
111
G4UIExecutive
* ui =
new
G4UIExecutive
(argc, argv);
112
#endif
113
UImanager->
ApplyCommand
(
"/control/execute vis.mac"
);
114
#endif
115
116
#ifdef G4UI_USE
117
ui->
SessionStart
();
118
delete
ui;
119
#endif
120
121
#ifdef G4VIS_USE
122
delete
visManager;
123
#endif
124
}
125
126
// Job termination
127
delete
histo;
128
delete
runManager;
129
130
return
0;
131
}
132
133
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
Generated on Sat May 25 2013 14:32:17 for Geant4 by
1.8.4