Geant4  v4-10.4-release
 모두 클래스 네임스페이스들 파일들 함수 변수 타입정의 열거형 타입 열거형 멤버 Friends 매크로 그룹들 페이지들
field01.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: field01.cc 110139 2018-05-16 07:33:34Z gcosmo $
27 //
30 //
31 //
32 //
33 //
34 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
35 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
36 
37 #include "G4Types.hh"
38 
39 #ifdef G4MULTITHREADED
40 #include "G4MTRunManager.hh"
41 #else
42 #include "F01SteppingVerbose.hh"
43 #include "G4RunManager.hh"
44 #endif
45 
48 
49 #include "G4UImanager.hh"
50 #include "FTFP_BERT.hh"
51 #include "G4StepLimiterPhysics.hh"
52 #include "Randomize.hh"
53 
54 #include "G4VisExecutive.hh"
55 #include "G4UIExecutive.hh"
56 
57 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
58 
59 int main(int argc,char** argv)
60 {
61  // Instantiate G4UIExecutive if there are no arguments (interactive mode)
62  G4UIExecutive* ui = nullptr;
63  if ( argc == 1 ) {
64  ui = new G4UIExecutive(argc, argv);
65  }
66 
67  // Choose the Random engine
68  //
69  G4Random::setTheEngine(new CLHEP::RanecuEngine);
70 
71  // Construct the default run manager
72  //
73 #ifdef G4MULTITHREADED
74  G4MTRunManager * runManager = new G4MTRunManager;
75 #else
77  G4RunManager * runManager = new G4RunManager;
78 #endif
79 
80  // Set mandatory initialization classes
81  //
82  // Detector construction
84  runManager->SetUserInitialization(detector);
85  // Physics list
86  G4VModularPhysicsList* physicsList = new FTFP_BERT;
87  physicsList->RegisterPhysics(new G4StepLimiterPhysics());
88  runManager->SetUserInitialization(physicsList);
89  // User action initialization
90  runManager->SetUserInitialization(new F01ActionInitialization(detector));
91 
92  // Initialize G4 kernel
93  //
94  runManager->Initialize();
95 
96  // Initialize visualization
97  //
98  G4VisManager* visManager = new G4VisExecutive;
99  // G4VisExecutive can take a verbosity argument - see /vis/verbose guidance.
100  // G4VisManager* visManager = new G4VisExecutive("Quiet");
101  visManager->Initialize();
102 
103  // Get the pointer to the User Interface manager
104  //
105  G4UImanager* UImanager = G4UImanager::GetUIpointer();
106 
107  if (!ui) // batch mode
108  {
109  G4String command = "/control/execute ";
110  G4String fileName = argv[1];
111  UImanager->ApplyCommand(command+fileName);
112  }
113  else
114  { // interactive mode : define UI session
115  if (ui->IsGUI())
116  UImanager->ApplyCommand("/control/execute gui.mac");
117  UImanager->ApplyCommand("/control/execute vis.mac");
118  ui->SessionStart();
119  delete ui;
120  }
121 
122  // Job termination
123  // Free the store: user actions, physics_list and detector_description are
124  // owned and deleted by the run manager, so they should not
125  // be deleted in the main() program !
126 
127  delete visManager;
128  delete runManager;
129 
130  return 0;
131 }
132 
133 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
G4int ApplyCommand(const char *aCommand)
Definition: G4UImanager.cc:466
Action initialization class.
Definition of the F01ActionInitialization class.
static G4UImanager * GetUIpointer()
Definition: G4UImanager.cc:73
virtual void SetUserInitialization(G4VUserDetectorConstruction *userInit)
void RegisterPhysics(G4VPhysicsConstructor *)
Definition of the F01SteppingVerbose class.
int main(int argc, char **argv)
Definition: genwindef.cc:359
TFTFP_BERT< G4VModularPhysicsList > FTFP_BERT
Definition: FTFP_BERT.hh:63
static void SetInstance(G4VSteppingVerbose *Instance)
void Initialize()
Definition of the F01DetectorConstruction class.
G4bool IsGUI() const
virtual void Initialize()