Geant4.10
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Functions
exampleP02.cc File Reference

Main program of the persistency/P02 example. More...

#include "ExP02DetectorConstruction.hh"
#include "ExP02DetConstrReader.hh"
#include "ExP02PhysicsList.hh"
#include "ExP02PrimaryGeneratorAction.hh"
#include "G4RunManager.hh"
#include "G4UImanager.hh"

Go to the source code of this file.

Functions

int main (int argc, char **argv)
 

Detailed Description

Main program of the persistency/P02 example.

Definition in file exampleP02.cc.

Function Documentation

int main ( int  argc,
char **  argv 
)

Definition at line 54 of file exampleP02.cc.

References G4UImanager::ApplyCommand(), G4UImanager::GetUIpointer(), G4RunManager::Initialize(), G4VisManager::Initialize(), G4UIExecutive::SessionStart(), G4RunManager::SetUserAction(), and G4RunManager::SetUserInitialization().

55 {
56 
57  if(argc==1)
58  {
59  std::cout << "Please give 'write' or 'read' as argument " << std::endl;
60  return 0;
61  }
62 
64 
65  if(std::string(argv[1]) == "read")
66  {
67  det = new ExP02DetConstrReader;
68  }
69  else if(std::string(argv[1]) == "write")
70  {
71  det = new ExP02DetectorConstruction;
72  }
73  else
74  {
75  std::cout << "Wrong argument!" << std::endl;
76  return 0;
77  }
78 
79  // Run manager
80  G4RunManager * runManager = new G4RunManager;
81 
82  // UserInitialization classes (mandatory)
83  runManager->SetUserInitialization(det);
84  runManager->SetUserInitialization(new ExP02PhysicsList);
85 
86 #ifdef G4VIS_USE
87  // Visualization, if you choose to have it!
88  G4VisManager* visManager = new G4VisExecutive;
89  visManager->Initialize();
90 #endif
91 
92  // UserAction classes
93  runManager->SetUserAction(new ExP02PrimaryGeneratorAction());
94 
95  //Initialize G4 kernel
96  runManager->Initialize();
97 
98  //get the pointer to the User Interface manager
99  G4UImanager * UImanager = G4UImanager::GetUIpointer();
100 
101 #ifdef G4UI_USE
102  G4UIExecutive* ui = new G4UIExecutive(argc, argv);
103 #ifdef G4VIS_USE
104  UImanager->ApplyCommand("/control/execute vis.mac");
105 #endif
106  ui->SessionStart();
107  delete ui;
108 #endif
109 
110 #ifdef G4VIS_USE
111  delete visManager;
112 #endif
113  delete runManager;
114 
115  return 0;
116 }
virtual void SetUserInitialization(G4VUserDetectorConstruction *userInit)
Detector construction reader using ROOT I/O.
static G4UImanager * GetUIpointer()
Definition: G4UImanager.cc:58
void Initialize()
virtual void Initialize()
Physics list.
G4int ApplyCommand(const char *aCommand)
Definition: G4UImanager.cc:419
virtual void SetUserAction(G4UserRunAction *userAction)