Geant4_10
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
source
examples
advanced
gammaray_telescope
GammaRayTel.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
//
27
// $Id: GammaRayTel.cc 66508 2012-12-19 10:16:45Z gcosmo $
28
//
29
//
30
// ------------------------------------------------------------
31
// GEANT 4 main program
32
// CERN Geneva Switzerland
33
//
34
//
35
// ------------ GammaRayTel example main program ------
36
// by F.Longo, R.Giannitrapani & G.Santin (29 nov 2000)
37
// See README file for details on this example
38
// 20.11.01 G.Santin: new analysis management, and some modification in the
39
// construction of some Action's
40
// ************************************************************
41
42
#include "
G4RunManager.hh
"
43
#include "
G4UImanager.hh
"
44
45
#ifdef G4VIS_USE
46
#include "
G4VisExecutive.hh
"
47
#endif
48
49
#ifdef G4UI_USE
50
#include "
G4UIExecutive.hh
"
51
#endif
52
53
#include "
GammaRayTelDetectorConstruction.hh
"
54
#include "
GammaRayTelPhysicsList.hh
"
55
#include "
GammaRayTelPrimaryGeneratorAction.hh
"
56
#include "
GammaRayTelRunAction.hh
"
57
#include "
GammaRayTelEventAction.hh
"
58
59
//#include "QGSP_BIC.hh"
60
#include "
FTFP_BERT.hh
"
61
62
#ifdef G4ANALYSIS_USE
63
#include "
GammaRayTelAnalysis.hh
"
64
#endif
65
66
/* This global file is used to store relevant data for
67
analysis with external tools */
68
std::ofstream
outFile
;
69
70
// This is the main function
71
int
main
(
int
argc,
char
** argv)
72
{
73
// Construct the default run manager
74
G4RunManager
* runManager =
new
G4RunManager
;
75
// Set mandatory user initialization classes
76
GammaRayTelDetectorConstruction
* detector =
77
new
GammaRayTelDetectorConstruction
;
78
runManager->
SetUserInitialization
(detector);
79
80
// POSSIBILITY TO SELECT ANOTHER PHYSICS LIST
81
// do not use GammaRayTelPhysicsList, this is old style and crashes at
82
// program exit
83
//runManager->SetUserInitialization(new GammaRayTelPhysicsList);
84
85
// runManager->SetUserInitialization(new QGSP_BIC);
86
runManager->
SetUserInitialization
(
new
FTFP_BERT
);
87
88
89
// Set mandatory user action classes
90
runManager->
SetUserAction
(
new
GammaRayTelPrimaryGeneratorAction
);
91
92
#ifdef G4ANALYSIS_USE
93
// Creation of the analysis manager
94
GammaRayTelAnalysis* analysis = GammaRayTelAnalysis::getInstance();
95
#endif
96
97
// Set optional user action classes
98
GammaRayTelEventAction
* eventAction =
new
GammaRayTelEventAction
();
99
GammaRayTelRunAction
* runAction =
new
GammaRayTelRunAction
();
100
runManager->
SetUserAction
(eventAction);
101
runManager->
SetUserAction
(runAction);
102
103
// Set visualization and user interface
104
#ifdef G4VIS_USE
105
// Visualization manager
106
G4VisManager
* visManager =
new
G4VisExecutive
;
107
visManager->
Initialize
();
108
#endif
109
110
// Initialize G4 kernel
111
// runManager->Initialize();
112
113
// Get the pointer to the UI manager
114
G4UImanager
* UImanager =
G4UImanager::GetUIpointer
();
115
if
(argc!=1)
// batch mode
116
{
117
G4String
command =
"/control/execute "
;
118
G4String
fileName = argv[1];
119
UImanager->
ApplyCommand
(command+fileName);
120
}
121
else
122
{
123
#ifdef G4UI_USE
124
G4UIExecutive
* ui =
new
G4UIExecutive
(argc, argv);
125
if
(ui->
IsGUI
())
126
{
127
/* prerunGammaRayTel.mac is loaded by default */
128
UImanager->
ApplyCommand
(
"/control/execute prerunGammaRayTel.mac"
);
129
ui->
SessionStart
();
130
}
131
delete
ui;
132
#endif
133
}
134
// Job termination
135
#ifdef G4VIS_USE
136
delete
visManager;
137
#endif
138
#ifdef G4ANALYSIS_USE
139
delete
analysis;
140
#endif
141
delete
runManager;
142
return
0;
143
}
G4RunManager::SetUserInitialization
virtual void SetUserInitialization(G4VUserDetectorConstruction *userInit)
Definition:
G4RunManager.cc:774
G4UIExecutive.hh
G4RunManager.hh
outFile
std::ofstream outFile
Definition:
GammaRayTel.cc:68
G4UIExecutive::SessionStart
void SessionStart()
Definition:
G4UIExecutive.cc:304
G4UIExecutive
Definition:
G4UIExecutive.hh:60
GammaRayTelDetectorConstruction
Definition:
GammaRayTelDetectorConstruction.hh:58
main
int main(int argc, char **argv)
Definition:
genwindef.cpp:30
G4VisExecutive.hh
G4UImanager::GetUIpointer
static G4UImanager * GetUIpointer()
Definition:
G4UImanager.cc:58
G4VisExecutive
Definition:
G4VisExecutive.hh:120
GammaRayTelDetectorConstruction.hh
GammaRayTelAnalysis.hh
G4RunManager
Definition:
G4RunManager.hh:138
TFTFP_BERT
Definition:
FTFP_BERT.hh:49
GammaRayTelPrimaryGeneratorAction
Definition:
GammaRayTelPrimaryGeneratorAction.hh:58
FTFP_BERT.hh
G4UImanager.hh
GammaRayTelRunAction
Definition:
GammaRayTelRunAction.hh:51
G4VisManager::Initialize
void Initialize()
G4UImanager
Definition:
G4UImanager.hh:56
G4VisManager
Definition:
G4VisManager.hh:119
G4UIExecutive::IsGUI
G4bool IsGUI() const
Definition:
G4UIExecutive.hh:97
GammaRayTelEventAction
Definition:
GammaRayTelEventAction.hh:52
GammaRayTelPrimaryGeneratorAction.hh
GammaRayTelEventAction.hh
GammaRayTelRunAction.hh
G4UImanager::ApplyCommand
G4int ApplyCommand(const char *aCommand)
Definition:
G4UImanager.cc:419
G4RunManager::SetUserAction
virtual void SetUserAction(G4UserRunAction *userAction)
Definition:
G4RunManager.cc:801
G4String
Definition:
G4String.hh:45
GammaRayTelPhysicsList.hh
Generated on Sat Dec 14 2013 14:32:58 for Geant4_10 by
1.8.5