Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
clGeometry.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 /// \file g3tog4/clGeometry/clGeometry.cc
27 /// \brief Main program of the g3tog4/clGeometry example
28 //
29 //
30 // $Id$
31 //
32 //
33 
34 // package includes
36 
37 // common package includes
38 #include "ExG4EventAction01.hh"
39 #include "ExG4RunAction01.hh"
41 
42 // geant4 includes
43 #include "FTFP_BERT.hh"
44 #include "G3VolTable.hh"
45 #include "G4RunManager.hh"
46 #include "G4UImanager.hh"
47 #include "G4ios.hh"
48 
49 // visualization
50 #ifdef G4VIS_USE
51 #include "G4VisExecutive.hh"
52 #endif
53 
54 // (G)UI
55 #ifdef G4UI_USE
56 #include "G4UIExecutive.hh"
57 #endif
58 
59 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
60 
61 int main(int argc, char** argv)
62 {
63  G4String inFile;
64  G4String macroFile = "";
65  G4bool batchMode = false;
66 
67  if (argc < 2 || argc >= 4) {
68  G4cerr << "clGeometry: Correct syntax: clGeometry <call_list_file> [ <macro_file> ]"
69  << G4endl;
70  G4cerr << "If only one argument is specified, interactive mode will be "
71  << "entered." << G4endl << "The second argument, if specified, is "
72  << "the name of the macro file (batch mode)." << G4endl;
73 
74  return EXIT_FAILURE;
75  }
76  if (argc >= 2) {
77  // Process the command line
78  inFile = argv[1];
79  G4cout << "Geometry data file: " << inFile << G4endl;
80  std::ifstream in(inFile);
81  if (!in) {
82  G4cerr << "Cannot open input file \"" << inFile << "\"" << G4endl;
83  return EXIT_FAILURE;
84  }
85  }
86  if (argc == 3) {
87  batchMode = true;
88  macroFile = argv[2];
89  std::ifstream mac(macroFile);
90  if (!mac) {
91  G4cout << "Cannot open macro file """ << macroFile << """" << G4endl;
92  return 2;
93  }
94  }
95 
96  // Construct the default run manager
97  G4RunManager* runManager = new G4RunManager;
98 
99  // set mandatory initialization classes
100  runManager->SetUserInitialization(new G3toG4DetectorConstruction(inFile));
101  runManager->SetUserInitialization(new FTFP_BERT);
102 
103  // set user action classes
104  runManager->SetUserAction(new ExG4PrimaryGeneratorAction01());
105  runManager->SetUserAction(new ExG4RunAction01);
106  runManager->SetUserAction(new ExG4EventAction01);
107 
108  // Initialize G4 kernel
109  //
110  runManager->Initialize();
111 
112  //----------------
113  // Visualization:
114  //----------------
115 
116  // the pointer to the User Interface manager
117  G4UImanager* uiManager = G4UImanager::GetUIpointer();
118 
119  if ( batchMode ) {
120  // batch mode
121  uiManager->ApplyCommand("/control/execute init.mac");
122  G4String command = "/control/execute ";
123  uiManager->ApplyCommand(command+macroFile);
124  }
125  else {
126  // interactive mode : define UI session
127 #ifdef G4UI_USE
128  G4UIExecutive* ui = new G4UIExecutive(argc, argv);
129 #ifdef G4VIS_USE
130  G4VisManager* visManager = new G4VisExecutive;
131  visManager -> Initialize();
132  uiManager->ApplyCommand("/control/execute init_vis.mac");
133 #else
134  uiManager->ApplyCommand("/control/execute init.mac");
135 #endif
136  ui->SessionStart();
137  delete ui;
138 #endif
139 
140 #ifdef G4VIS_USE
141  delete visManager;
142 #endif
143  }
144 
145  delete runManager;
146  return EXIT_SUCCESS;
147 }
virtual void SetUserInitialization(G4VUserDetectorConstruction *userInit)
Definition of the G3toG4DetectorConstruction class.
void Initialize()
Definition: errprop.cc:96
Definition of the ExG4PrimaryGeneratorAction01 class.
static G4UImanager * GetUIpointer()
Definition: G4UImanager.cc:58
G4GLOB_DLL std::ostream G4cout
Definition of the ExG4EventAction01 class.
bool G4bool
Definition: G4Types.hh:79
int main(int argc, char **argv)
Definition: clGeometry.cc:61
virtual void Initialize()
#define G4endl
Definition: G4ios.hh:61
Definition of the ExG4RunAction01 class.
The primary generator class with particle gun.
G4int ApplyCommand(const char *aCommand)
Definition: G4UImanager.cc:419
G4GLOB_DLL std::ostream G4cerr
virtual void SetUserAction(G4UserRunAction *userAction)