Geant4  v4-10.4-release
 모두 클래스 네임스페이스들 파일들 함수 변수 타입정의 열거형 타입 열거형 멤버 Friends 매크로 그룹들 페이지들
ExUCN.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 // $Id: ExUCN.cc 75572 2013-11-04 11:46:08Z gcosmo $
27 //
30 //
31 //
32 //
33 //
34 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
35 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
36 
37 #ifndef WIN32
38 #include <unistd.h>
39 #endif
40 
41 #include "G4Types.hh"
42 
43 #include "ExUCNPhysicsList.hh"
46 
47 #ifdef G4MULTITHREADED
48 #include "G4MTRunManager.hh"
49 #else
50 #include "G4RunManager.hh"
51 #endif
52 
53 #include "G4UImanager.hh"
54 #include "G4UIcommand.hh"
55 
56 #include "Randomize.hh"
57 
58 #include "G4VisExecutive.hh"
59 #include "G4UIExecutive.hh"
60 
61 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
62 
63 namespace {
64  void PrintUsage() {
65  G4cerr << " Usage: " << G4endl;
66  G4cerr << " ExUCN [-m macro ] [-u UIsession] [-t nThreads] [-r seed] "
67  << G4endl;
68  G4cerr << " note: -t option is available only for multi-threaded mode."
69  << G4endl;
70  }
71 }
72 
73 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
74 
75 int main(int argc,char** argv)
76 {
77  // Evaluate arguments
78  //
79  if ( argc > 9 ) {
80  PrintUsage();
81  return 1;
82  }
83 
84  G4String macro;
86 #ifdef G4MULTITHREADED
87  G4int nThreads = 0;
88 #endif
89 
90  G4long myseed = 1234;
91  for ( G4int i=1; i<argc; i=i+2 ) {
92  if ( G4String(argv[i]) == "-m" ) macro = argv[i+1];
93  else if ( G4String(argv[i]) == "-u" ) session = argv[i+1];
94  else if ( G4String(argv[i]) == "-r" ) myseed = atoi(argv[i+1]);
95 #ifdef G4MULTITHREADED
96  else if ( G4String(argv[i]) == "-t" ) {
97  nThreads = G4UIcommand::ConvertToInt(argv[i+1]);
98  }
99 #endif
100  else {
101  PrintUsage();
102  return 1;
103  }
104  }
105 
106  // Instantiate G4UIExecutive if interactive mode
107  G4UIExecutive* ui = nullptr;
108  if ( argc == 1 ) {
109  ui = new G4UIExecutive(argc, argv);
110  }
111 
112  // Choose the Random engine
113  //
114  G4Random::setTheEngine(new CLHEP::RanecuEngine);
115 
116  // Construct the default run manager
117  //
118 #ifdef G4MULTITHREADED
119  G4MTRunManager * runManager = new G4MTRunManager;
120  if ( nThreads > 0 ) runManager->SetNumberOfThreads(nThreads);
121 #else
122  G4RunManager * runManager = new G4RunManager;
123 #endif
124 
125  // Seed the random number generator manually
126  G4Random::setTheSeed(myseed);
127 
128  // Set mandatory initialization classes
129  //
130  // Detector construction
132  // Physics list
133  runManager->SetUserInitialization(new ExUCNPhysicsList());
134  // User action initialization
136 
137  // Initialize G4 kernel
138  //
139  runManager->Initialize();
140 
141  // Initialize visualization
142  //
143  G4VisManager* visManager = new G4VisExecutive;
144  // G4VisExecutive can take a verbosity argument - see /vis/verbose guidance.
145  // G4VisManager* visManager = new G4VisExecutive("Quiet");
146  visManager->Initialize();
147 
148  // Get the pointer to the User Interface manager
149  //
150  G4UImanager* UImanager = G4UImanager::GetUIpointer();
151 
152  if ( macro.size() ) {
153  // batch mode
154  G4String command = "/control/execute ";
155  UImanager->ApplyCommand(command+macro);
156  }
157  else
158  { // interactive mode : define UI session
159  UImanager->ApplyCommand("/control/execute vis.mac");
160  if (ui->IsGUI())
161  UImanager->ApplyCommand("/control/execute gui.mac");
162  ui->SessionStart();
163  delete ui;
164  }
165 
166  // Job termination
167  // Free the store: user actions, physics_list and detector_description are
168  // owned and deleted by the run manager, so they should not
169  // be deleted in the main() program !
170 
171  delete visManager;
172  delete runManager;
173 
174  return 0;
175 }
176 
177 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
Definition of the ExUCNPhysicsList class.
void SetNumberOfThreads(G4int n)
static G4UIterminal * session
G4int ApplyCommand(const char *aCommand)
Definition: G4UImanager.cc:466
#define G4endl
Definition: G4ios.hh:61
Definition of the ExUCNActionInitialization class.
static G4UImanager * GetUIpointer()
Definition: G4UImanager.cc:73
static G4int ConvertToInt(const char *st)
Definition: G4UIcommand.cc:449
virtual void SetUserInitialization(G4VUserDetectorConstruction *userInit)
long G4long
Definition: G4Types.hh:80
int main(int argc, char **argv)
Definition: genwindef.cc:359
G4GLOB_DLL std::ostream G4cerr
int G4int
Definition: G4Types.hh:78
Definition of the ExUCNDetectorConstruction class.
void Initialize()
G4bool IsGUI() const
Action initialization class.
virtual void Initialize()