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

Main program of the exoticphysics/phonon example. More...

#include "G4RunManager.hh"
#include "G4UImanager.hh"
#include "G4UserSteppingAction.hh"
#include "XDetectorConstruction.hh"
#include "XPhysicsList.hh"
#include "XPrimaryGeneratorAction.hh"
#include "XPhononStackingAction.hh"

Go to the source code of this file.

Functions

int main (int argc, char **argv)
 

Detailed Description

Main program of the exoticphysics/phonon example.

Definition in file XGeBox.cc.

Function Documentation

int main ( int  argc,
char **  argv 
)

Definition at line 49 of file XGeBox.cc.

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

50 {
51 
52 
53  // Construct the run manager
54  //
55  G4RunManager * runManager = new G4RunManager;
56 
57  // Set mandatory initialization classes
58  //
60  runManager->SetUserInitialization(detector);
61  //
62  G4VUserPhysicsList* physics = new XPhysicsList();
63  physics->SetCuts();
64  runManager->SetUserInitialization(physics);
65 
66  // Set user action classes
67  //
68 
69  runManager->SetUserAction(new XPhononStackingAction);
70  // runManager->SetUserAction(new DriftingElectronStackingAction);
71  // runManager->SetUserAction(new XPhononTrackingAction);
72  // runManager->SetUserAction(new PhononSteppingAction);
73 
75  runManager->SetUserAction(gen_action);
76  //
77 
78 #ifdef G4VIS_USE
79  // Visualization manager
80  //
81  G4VisManager* visManager = new G4VisExecutive;
82  visManager->Initialize();
83 #endif
84 
85  // Initialize G4 kernel
86  //
87  runManager->Initialize();
88 
89  // Get the pointer to the User Interface manager
90  //
91  G4UImanager* UImanager = G4UImanager::GetUIpointer();
92 
93  if (argc==1) // Define UI session for interactive mode
94  {
95 #ifdef G4UI_USE
96  G4UIExecutive * ui = new G4UIExecutive(argc,argv);
97 #ifdef G4VIS_USE
98  UImanager->ApplyCommand("/control/execute vis.mac");
99 #endif
100  ui->SessionStart();
101  delete ui;
102 #endif
103  }
104  else // Batch mode
105  {
106  G4String command = "/control/execute ";
107  G4String fileName = argv[1];
108  UImanager->ApplyCommand(command+fileName);
109  }
110 
111 #ifdef G4VIS_USE
112  delete visManager;
113 #endif
114  delete runManager;
115 
116  return 0;
117 }
virtual void SetUserInitialization(G4VUserDetectorConstruction *userInit)
static G4UImanager * GetUIpointer()
Definition: G4UImanager.cc:58
void Initialize()
virtual void Initialize()
G4int ApplyCommand(const char *aCommand)
Definition: G4UImanager.cc:419
virtual void SetUserAction(G4UserRunAction *userAction)