Geant4  10.03.p03
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
geotest.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 //
30 // $Id: geotest.cc 105221 2017-07-14 13:03:54Z gcosmo $
31 //
32 //
33 // --------------------------------------------------------------
34 // GEANT 4 - geotest
35 //
36 // --------------------------------------------------------------
37 
38 // Geant4 includes
39 //
40 #include "G4RunManager.hh"
41 #include "G4UImanager.hh"
42 #include "globals.hh"
43 
44 // A pre-built physics list
45 //
46 #include "QGSP_BERT.hh"
47 
48 // Example includes
49 //
52 #include "G02RunAction.hh"
53 
54 #include "G4VisExecutive.hh"
55 #include "G4UIExecutive.hh"
56 
57 // --------------------------------------------------------------
58 
59 int main(int argc, char** argv)
60 {
61  // Construct the default run manager
62  //
63  G4RunManager* runManager = new G4RunManager;
64 
65  // Set mandatory initialization and user action classes
66  //
68  runManager->SetUserInitialization(detector);
69  runManager->SetUserInitialization(new QGSP_BERT);
71  G02RunAction* runAction = new G02RunAction;
72  runManager->SetUserAction(runAction);
73 
74  // Initialisation of runManager via macro for the interactive mode
75  // This gives possibility to give different names for GDML file to READ
76 
77  // Initialize visualization
78  //
79  G4VisManager* visManager = new G4VisExecutive;
80  visManager->Initialize();
81 
82  // Open a UI session: will stay there until the user types "exit"
83  //
84  G4UImanager* UImanager = G4UImanager::GetUIpointer();
85 
86  if ( argc==1 ) // Automatically run default macro for writing...
87  {
88  G4UIExecutive* ui = new G4UIExecutive(argc, argv);
89  UImanager->ApplyCommand("/control/execute vis.mac");
90  ui->SessionStart();
91  delete ui;
92  }
93  else // Interactive, provides macro in input
94  {
95  G4UIExecutive* ui = new G4UIExecutive(argc, argv);
96  G4String command = "/control/execute ";
97  G4String fileName = argv[1];
98  UImanager->ApplyCommand(command+fileName);
99  ui->SessionStart();
100  delete ui;
101  }
102 
103  // Job termination
104  //
105  delete visManager;
106  delete runManager;
107 
108  return 0;
109 }
virtual void SetUserInitialization(G4VUserDetectorConstruction *userInit)
Definition of the G02DetectorConstruction class.
Definition of the G02RunAction class.
int main(int argc, char **argv)
Definition: genwindef.cpp:30
static G4UImanager * GetUIpointer()
Definition: G4UImanager.cc:59
void Initialize()
Definition of the G02PrimaryGeneratorAction class.
Detector construction used in GDML read/write example.
Run action used in GDML read/write example.
Definition: G02RunAction.hh:52
Primary generator action used in GDML read/write example.
G4int ApplyCommand(const char *aCommand)
Definition: G4UImanager.cc:447
virtual void SetUserAction(G4UserRunAction *userAction)