Geant4  10.02.p01
userVisAction.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 //
28 
29 #include "B1DetectorConstruction.hh"
30 #include "B1ActionInitialization.hh"
31 
32 #ifdef G4MULTITHREADED
33 #include "G4MTRunManager.hh"
34 #else
35 #include "G4RunManager.hh"
36 #endif
37 
38 #include "G4UImanager.hh"
39 #include "QBBC.hh"
40 
41 #ifdef G4VIS_USE
42 #include "G4VisExecutive.hh"
43 #include "UVA_VisAction.hh"
44 #endif
45 
46 #ifdef G4UI_USE
47 #include "G4UIExecutive.hh"
48 #endif
49 
50 #include "Randomize.hh"
51 #include "G4SystemOfUnits.hh"
52 
53 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
54 
55 int main(int argc,char** argv)
56 {
57  // Choose the Random engine
58  //
59  G4Random::setTheEngine(new CLHEP::RanecuEngine);
60 
61  // Construct the default run manager
62  //
63 #ifdef G4MULTITHREADED
64  G4MTRunManager* runManager = new G4MTRunManager;
65 #else
66  G4RunManager* runManager = new G4RunManager;
67 #endif
68 
69  // Set mandatory initialization classes
70  //
71  // Detector construction
73 
74  // Physics list
75  G4VModularPhysicsList* physicsList = new QBBC;
76  physicsList->SetVerboseLevel(1);
77  runManager->SetUserInitialization(physicsList);
78 
79  // User action initialization
81 
82  // Initialize G4 kernel
83  //
84  runManager->Initialize();
85 
86 #ifdef G4VIS_USE
87  // Initialize visualization
88  G4VisManager* visManager = new G4VisExecutive;
89  // G4VisExecutive can take a verbosity argument - see /vis/verbose guidance.
90  // G4VisManager* visManager = new G4VisExecutive("Quiet");
91  visManager->Initialize();
92  // Register User Vis Action with optional extent
93  visManager->SetUserAction
94  (new UVA_VisAction, G4VisExtent(-20*cm,-10*cm,-25*cm,-15*cm,20*cm,40*cm));
95 #endif
96 
97  // Get the pointer to the User Interface manager
99 
100  if (argc!=1) {
101  // batch mode
102  G4String command = "/control/execute ";
103  G4String fileName = argv[1];
104  UImanager->ApplyCommand(command+fileName);
105  }
106  else {
107  // interactive mode : define UI session
108 #ifdef G4UI_USE
109  G4UIExecutive* ui = new G4UIExecutive(argc, argv);
110 #ifdef G4VIS_USE
111  UImanager->ApplyCommand("/control/execute init_vis.mac");
112 #else
113  UImanager->ApplyCommand("/control/execute init.mac");
114 #endif
115  ui->SessionStart();
116  delete ui;
117 #endif
118  }
119 
120  // Job termination
121  // Free the store: user actions, physics_list and detector_description are
122  // owned and deleted by the run manager, so they should not be deleted
123  // in the main() program !
124 
125 #ifdef G4VIS_USE
126  delete visManager;
127 #endif
128  delete runManager;
129 
130  return 0;
131 }
132 
133 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
static const double cm
Definition: G4SIunits.hh:118
virtual void SetUserInitialization(G4VUserDetectorConstruction *userInit)
int main(int argc, char **argv)
Detector construction class to define materials and geometry.
static G4UImanager * GetUIpointer()
Definition: G4UImanager.cc:58
Definition of the UVA_VisAction class.
void SetVerboseLevel(G4int value)
void Initialize()
Action initialization class.
void SetUserAction(G4VUserVisAction *pVisAction, const G4VisExtent &=G4VisExtent::NullExtent)
virtual void Initialize()
Definition: QBBC.hh:44
G4int ApplyCommand(const char *aCommand)
Definition: G4UImanager.cc:446