Geant4  9.6.p02
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
A01app.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 // $Id$
30 // --------------------------------------------------------------
31 //
32 // --------------------------------------------------------------
33 // GEANT 4 - A01app
34 // --------------------------------------------------------------
35 // Comments
36 // Tutorial for Geant4 lectures
37 // --------------------------------------------------------------
38 
39 
40 #include "G4RunManager.hh"
41 #include "G4UImanager.hh"
42 
44 #include "A01PhysicsList.hh"
46 
47 #include "A01EventAction.hh"
48 
49 #ifdef G4VIS_USE
50 #include "G4VisExecutive.hh"
51 #endif
52 
53 #ifdef G4UI_USE
54 #include "G4UIExecutive.hh"
55 #endif
56 
57 int main(int argc,char** argv)
58 {
59  // RunManager construction
60  G4RunManager* runManager = new G4RunManager;
61 
62 #ifdef G4VIS_USE
63  // Visualization manager construction
64  G4VisManager* visManager = new G4VisExecutive;
65  visManager->Initialize();
66 #endif
67 
68  // mandatory user initialization classes
70  runManager->SetUserInitialization(new A01PhysicsList);
71 
72  // initialize Geant4 kernel
73  runManager->Initialize();
74 
75  // mandatory user action class
77 
78  // optional user action classes
79  runManager->SetUserAction(new A01EventAction);
80 
81  if(argc>1)
82  // execute an argument macro file if exist
83  {
85  G4String command = "/control/execute ";
86  G4String fileName = argv[1];
87  UImanager->ApplyCommand(command+fileName);
88  }
89  else
90  // start interactive session
91  {
92 #ifdef G4UI_USE
93  G4UIExecutive* ui = new G4UIExecutive(argc, argv);
94  ui->SessionStart();
95  delete ui;
96 #endif
97  }
98 
99 #ifdef G4VIS_USE
100  delete visManager;
101 #endif
102 
103  delete runManager;
104 
105  return 0;
106 }
107