Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
AnaEx03.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 analysis/AnaEx03/AnaEx03.cc
27 /// \brief Main program of the analysis/AnaEx03 example
28 //
29 //
30 // $Id: AnaEx01.cc,v 1.15 2010-11-08 10:38:44 maire Exp $
31 //
32 //
33 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
34 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
35 
36 #include "G4RunManager.hh"
37 #include "G4UImanager.hh"
38 
39 #include "DetectorConstruction.hh"
40 #include "PhysicsList.hh"
41 #include "PrimaryGeneratorAction.hh"
42 #include "RunAction.hh"
43 #include "EventAction.hh"
44 #include "SteppingAction.hh"
45 #include "HistoManager.hh"
46 
47 #ifdef G4VIS_USE
48 #include "G4VisExecutive.hh"
49 #endif
50 
51 #ifdef G4UI_USE
52 #include "G4UIExecutive.hh"
53 #endif
54 
55 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
56 
57 int main(int argc,char** argv)
58 {
59  // Construct the default run manager
60  //
61  G4RunManager * runManager = new G4RunManager;
62 
63  // Set mandatory initialization classes
64  //
66  runManager->SetUserInitialization(detector);
67  //
68  PhysicsList* physics = new PhysicsList;
69  runManager->SetUserInitialization(physics);
70 
71  // set an HistoManager
72  //
73  HistoManager* histo = new HistoManager();
74 
75  // Set user action classes
76  //
77  PrimaryGeneratorAction* gen_action =
78  new PrimaryGeneratorAction(detector);
79  runManager->SetUserAction(gen_action);
80  //
81  RunAction* run_action = new RunAction(histo);
82  runManager->SetUserAction(run_action);
83  //
84  EventAction* event_action = new EventAction(run_action,histo);
85  runManager->SetUserAction(event_action);
86  //
87  SteppingAction* stepping_action =
88  new SteppingAction(detector, event_action);
89  runManager->SetUserAction(stepping_action);
90 
91  // Initialize G4 kernel
92  //
93  runManager->Initialize();
94 
95  // Get the pointer to the User Interface manager
96  //
98 
99 #ifdef G4VIS_USE
100  G4VisManager* visManager = new G4VisExecutive;
101  visManager->Initialize();
102 #endif
103 
104  if (argc!=1) // batch mode
105  {
106  G4String command = "/control/execute ";
107  G4String fileName = argv[1];
108  UImanager->ApplyCommand(command+fileName);
109  }
110  else
111  { // interactive mode : define visualization and UI terminal
112 #ifdef G4UI_USE
113  G4UIExecutive* ui = new G4UIExecutive(argc, argv);
114 #ifdef G4VIS_USE
115  UImanager->ApplyCommand("/control/execute vis.mac");
116 #endif
117  ui->SessionStart();
118  delete ui;
119 #endif
120 
121 #ifdef G4VIS_USE
122  delete visManager;
123 #endif
124  }
125 
126  // Job termination
127  delete histo;
128  delete runManager;
129 
130  return 0;
131 }
132 
133 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
virtual void SetUserInitialization(G4VUserDetectorConstruction *userInit)
static G4UImanager * GetUIpointer()
Definition: G4UImanager.cc:58
int main(int argc, char **argv)
Definition: AnaEx03.cc:57
void Initialize()
virtual void Initialize()
G4int ApplyCommand(const char *aCommand)
Definition: G4UImanager.cc:419
virtual void SetUserAction(G4UserRunAction *userAction)