Geant4
v4-10.4-release
메인 페이지
관련된 페이지
모듈
네임스페이스
클래스
파일들
파일 목록
파일 멤버
모두
클래스
네임스페이스들
파일들
함수
변수
타입정의
열거형 타입
열거형 멤버
Friends
매크로
그룹들
페이지들
examples
advanced
human_phantom
phantom.cc
이 파일의 문서화 페이지로 가기
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
// Authors: S. Guatelli and M. G. Pia, INFN Genova, Italy
27
//
28
// Based on code developed by the undergraduate student G. Guerrieri
29
// Note: this is a preliminary beta-version of the code; an improved
30
// version will be distributed in the next Geant4 public release, compliant
31
// with the design in a forthcoming publication, and subject to a
32
// design and code review.
33
//
34
35
#include <stdexcept>
36
37
#include "
globals.hh
"
38
39
#include "
G4UImanager.hh
"
40
#include "
G4UIsession.hh
"
41
#include "
G4TransportationManager.hh
"
42
43
#ifdef G4VIS_USE
44
#include "
G4VisExecutive.hh
"
45
#endif
46
47
#ifdef G4UI_USE
48
#include "
G4UIExecutive.hh
"
49
#endif
50
51
#include "
G4HumanPhantomConstruction.hh
"
52
#include "
G4HumanPhantomPhysicsList.hh
"
53
#include "
G4HumanPhantomActionInitialization.hh
"
54
55
#ifdef G4MULTITHREADED
56
#include "
G4MTRunManager.hh
"
57
#else
58
#include "
G4RunManager.hh
"
59
#endif
60
61
int
main
(
int
argc,
char
** argv)
62
{
63
#ifdef G4MULTITHREADED
64
G4MTRunManager
* runManager =
new
G4MTRunManager
;
65
runManager->
SetNumberOfThreads
(4);
// Is equal to 2 by default
66
#else
67
G4RunManager
* runManager =
new
G4RunManager
;
68
#endif
69
70
// Set mandatory initialization classes
71
G4HumanPhantomConstruction
* userPhantom =
new
G4HumanPhantomConstruction
();
72
runManager->
SetUserInitialization
(userPhantom);
73
74
runManager->
SetUserInitialization
(
new
G4HumanPhantomPhysicsList
);
75
76
#ifdef G4VIS_USE
77
G4VisManager
* visManager =
new
G4VisExecutive
;
78
visManager->
Initialize
();
79
#endif
80
81
82
G4HumanPhantomActionInitialization
* actions =
new
G4HumanPhantomActionInitialization
();
83
runManager->
SetUserInitialization
(actions);
84
85
86
G4UImanager
* UImanager =
G4UImanager::GetUIpointer
();
87
88
if
(argc==1)
// Define UI session for interactive mode.
89
{
90
#ifdef G4UI_USE
91
G4cout
<<
" UI session starts ..."
<<
G4endl
;
92
G4UIExecutive
* ui =
new
G4UIExecutive
(argc, argv);
93
UImanager->
ApplyCommand
(
"/control/execute default.mac"
);
94
ui->
SessionStart
();
95
delete
ui;
96
#endif
97
}
98
else
// Batch mode
99
{
100
G4String
command =
"/control/execute "
;
101
G4String
fileName = argv[1];
102
UImanager -> ApplyCommand(command+fileName);
103
}
104
105
// job termination
106
#ifdef G4VIS_USE
107
delete
visManager;
108
#endif
109
110
delete
runManager;
111
112
return
0;
113
}
G4MTRunManager::SetNumberOfThreads
void SetNumberOfThreads(G4int n)
Definition:
G4MTRunManager.cc:171
G4UIExecutive.hh
G4UImanager::ApplyCommand
G4int ApplyCommand(const char *aCommand)
Definition:
G4UImanager.cc:466
G4endl
#define G4endl
Definition:
G4ios.hh:61
G4MTRunManager.hh
G4String
Definition:
examples/extended/parallel/TopC/ParN02/AnnotatedFiles/G4String.hh:45
G4HumanPhantomPhysicsList
Definition:
G4HumanPhantomPhysicsList.hh:43
G4RunManager
Definition:
G4RunManager.hh:138
G4UImanager::GetUIpointer
static G4UImanager * GetUIpointer()
Definition:
G4UImanager.cc:73
G4RunManager::SetUserInitialization
virtual void SetUserInitialization(G4VUserDetectorConstruction *userInit)
Definition:
G4RunManager.cc:860
G4TransportationManager.hh
G4UImanager
Definition:
G4UImanager.hh:58
G4UIsession.hh
G4UIExecutive
Definition:
G4UIExecutive.hh:60
G4VisManager
Definition:
G4VisManager.hh:124
G4MTRunManager
Definition:
G4MTRunManager.hh:51
G4HumanPhantomActionInitialization.hh
globals.hh
G4RunManager.hh
main
int main(int argc, char **argv)
Definition:
genwindef.cc:359
G4VisExecutive
Definition:
G4VisExecutive.hh:120
G4UIExecutive::SessionStart
void SessionStart()
Definition:
G4UIExecutive.cc:304
G4VisExecutive.hh
G4HumanPhantomConstruction
Definition:
G4HumanPhantomConstruction.hh:45
G4cout
G4GLOB_DLL std::ostream G4cout
G4VisManager::Initialize
void Initialize()
G4HumanPhantomConstruction.hh
G4HumanPhantomPhysicsList.hh
G4HumanPhantomActionInitialization
Definition:
G4HumanPhantomActionInitialization.hh:37
G4UImanager.hh
다음에 의해 생성됨 :
1.8.5