Geant4  10.03.p03
 All Classes 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 //
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 #include "FTFP_BERT.hh"
39 
40 #include "DetectorConstruction.hh"
41 #include "PrimaryGeneratorAction.hh"
42 #include "RunAction.hh"
43 #include "EventAction.hh"
44 #include "SteppingAction.hh"
45 #include "HistoManager.hh"
46 
47 #include "G4VisExecutive.hh"
48 #include "G4UIExecutive.hh"
49 
50 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
51 
52 int main(int argc,char** argv)
53 {
54  // Detect interactive mode (if no arguments) and define UI session
55  //
56  G4UIExecutive* ui = 0;
57  if ( argc == 1 ) {
58  ui = new G4UIExecutive(argc, argv);
59  }
60 
61  // Construct the default run manager
62  //
63  G4RunManager * runManager = new G4RunManager;
64 
65  // Set mandatory initialization classes
66  //
68  runManager->SetUserInitialization(detector);
69  //
70  runManager->SetUserInitialization(new FTFP_BERT);
71 
72  // set an HistoManager
73  //
74  HistoManager* histo = new HistoManager();
75 
76  // Set user action classes
77  //
78  PrimaryGeneratorAction* gen_action =
79  new PrimaryGeneratorAction(detector);
80  runManager->SetUserAction(gen_action);
81  //
82  RunAction* run_action = new RunAction(histo);
83  runManager->SetUserAction(run_action);
84  //
85  EventAction* event_action = new EventAction(run_action,histo);
86  runManager->SetUserAction(event_action);
87  //
88  SteppingAction* stepping_action =
89  new SteppingAction(detector, event_action);
90  runManager->SetUserAction(stepping_action);
91 
92  // Initialize G4 kernel
93  //
94  runManager->Initialize();
95 
96  // Initialize visualization
97  //
98  G4VisManager* visManager = new G4VisExecutive;
99  visManager->Initialize();
100 
101  // Get the pointer to the User Interface manager
102  //
103  G4UImanager* UImanager = G4UImanager::GetUIpointer();
104 
105  if ( ! ui ) {
106  // batch mode
107  G4String command = "/control/execute ";
108  G4String fileName = argv[1];
109  UImanager->ApplyCommand(command+fileName);
110  }
111  else {
112  // interactive mode
113  UImanager->ApplyCommand("/control/execute init_vis.mac");
114  ui->SessionStart();
115  delete ui;
116  }
117 
118  // Job termination
119  delete visManager;
120  delete histo;
121  delete runManager;
122 
123  return 0;
124 }
125 
126 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
The primary generator action class with particle gun.
virtual void SetUserInitialization(G4VUserDetectorConstruction *userInit)
int main(int argc, char **argv)
Definition: genwindef.cpp:30
Event action class.
Definition: EventAction.hh:45
static G4UImanager * GetUIpointer()
Definition: G4UImanager.cc:59
void Initialize()
virtual void Initialize()
Detector construction class to define materials and geometry.
Run action class.
Definition: RunAction.hh:45
G4int ApplyCommand(const char *aCommand)
Definition: G4UImanager.cc:447
virtual void SetUserAction(G4UserRunAction *userAction)