Geant4  v4-10.4-release
 모두 클래스 네임스페이스들 파일들 함수 변수 타입정의 열거형 타입 열거형 멤버 Friends 매크로 그룹들 페이지들
icsd.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 // This example is provided by the Geant4-DNA collaboration
27 // Any report or published results obtained using the Geant4-DNA software
28 // shall cite the following Geant4-DNA collaboration publication:
29 // Med. Phys. 37 (2010) 4692-4708
30 // J. Comput. Phys. 274 (2014) 841-882
31 // The Geant4-DNA web site is available at http://geant4-dna.org
32 //
33 // $Id$
34 //
37 
38 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
39 #include "G4Types.hh"
40 
41 #ifdef G4MULTITHREADED
42  #include "G4MTRunManager.hh"
43 #else
44  #include "G4RunManager.hh"
45 #endif
46 
47 #include "G4UImanager.hh"
48 #include "G4UIterminal.hh"
49 #include "G4UItcsh.hh"
50 #include "G4UIExecutive.hh"
51 
52 #include "G4VisExecutive.hh"
53 
54 #include "ActionInitialization.hh"
55 #include "DetectorConstruction.hh"
56 #include "PhysicsList.hh"
57 
58 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
59 
60 int main(int argc,char** argv)
61 {
62  G4String macroName ("");
63 
64  // Detect if the user gave an argument (or not)
65  if(argc == 1) // Only the name of the program was used (no argument)
66  {
67  // We set the name of the macro to be used by default
68  macroName = "icsd.mac";
69  }
70  else if(argc == 2) // One argument was supplied
71  {
72  // The first argument is the name if the macro file to be used
73  macroName = argv[1];
74  }
75  else // More than one argument was supplied
76  {
77  G4Exception("main", "WRONG ARGUMENT NUMBER", FatalException,
78  "To many argument were provided.");
79  return 0;
80  }
81 
82  // Choose the Random engine
83  G4Random::setTheEngine(new CLHEP::RanecuEngine);
84 
85  // Construct the default run manager
86 
87 #ifdef G4MULTITHREADED
88  G4MTRunManager* runManager = new G4MTRunManager;
89  runManager->SetNumberOfThreads(2); // Is equal to 2 by default
90 #else
91  G4RunManager* runManager = new G4RunManager;
92 #endif
93 
94  // Set mandatory user initialization classes
96  runManager->SetUserInitialization(detector);
97  runManager->SetUserInitialization(new PhysicsList);
98 
99  // User action initialization
100  runManager->SetUserInitialization(new ActionInitialization());
101 
102  // Initialize G4 kernel
103  runManager->Initialize();
104 
105  // Get the pointer to the User Interface manager
106  G4UImanager* UImanager = G4UImanager::GetUIpointer();
107  G4String command = "/control/execute ";
108  UImanager->ApplyCommand(command+macroName);
109 
110  delete runManager;
111 
112  return 0;
113 }
114 
void SetNumberOfThreads(G4int n)
G4int ApplyCommand(const char *aCommand)
Definition: G4UImanager.cc:466
static G4UImanager * GetUIpointer()
Definition: G4UImanager.cc:73
virtual void SetUserInitialization(G4VUserDetectorConstruction *userInit)
int main(int argc, char **argv)
Definition: genwindef.cc:359
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
Definition: G4Exception.hh:65
virtual void Initialize()
Simple detector construction with a box volume placed in a world.