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

Main program of the electromagnetic/TestEm3 example. More...

#include "G4RunManager.hh"
#include "G4UImanager.hh"
#include "Randomize.hh"
#include "DetectorConstruction.hh"
#include "PhysicsList.hh"
#include "PrimaryGeneratorAction.hh"
#include "RunAction.hh"
#include "EventAction.hh"
#include "TrackingAction.hh"
#include "SteppingAction.hh"
#include "SteppingVerbose.hh"

Go to the source code of this file.

Functions

int main (int argc, char **argv)
 

Detailed Description

Main program of the electromagnetic/TestEm3 example.

Definition in file TestEm3.cc.

Function Documentation

int main ( int  argc,
char **  argv 
)

Definition at line 57 of file TestEm3.cc.

References G4UImanager::ApplyCommand(), G4UImanager::GetUIpointer(), G4VisManager::Initialize(), G4UIExecutive::SessionStart(), G4VSteppingVerbose::SetInstance(), CLHEP::HepRandom::setTheEngine(), G4RunManager::SetUserAction(), and G4RunManager::SetUserInitialization().

57  {
58 
59  //choose the Random engine
61 
62  //my Verbose output class
64 
65  // Construct the default run manager
66  G4RunManager * runManager = new G4RunManager;
67 
68  // set mandatory initialization classes
70  runManager->SetUserInitialization(detector);
71  runManager->SetUserInitialization(new PhysicsList);
72 
73  // primary generator
74  PrimaryGeneratorAction* primary = new PrimaryGeneratorAction(detector);
75  runManager->SetUserAction(primary);
76 
77  // set user action classes
78  RunAction* runAct = new RunAction(detector,primary);
79  EventAction* evtAct = new EventAction(detector,runAct);
80  TrackingAction* trkAct = new TrackingAction(detector,runAct);
81  SteppingAction* stpAct = new SteppingAction(detector,runAct,evtAct);
82 
83  runManager->SetUserAction(runAct);
84  runManager->SetUserAction(evtAct);
85  runManager->SetUserAction(trkAct);
86  runManager->SetUserAction(stpAct);
87 
88  // get the pointer to the User Interface manager
90 
91  if (argc!=1) // batch mode
92  {
93  G4String command = "/control/execute ";
94  G4String fileName = argv[1];
95  UI->ApplyCommand(command+fileName);
96  }
97 
98  else //define visualization and UI terminal for interactive mode
99  {
100 #ifdef G4VIS_USE
101  G4VisManager* visManager = new G4VisExecutive;
102  visManager->Initialize();
103 #endif
104 
105 #ifdef G4UI_USE
106  G4UIExecutive * ui = new G4UIExecutive(argc,argv);
107  ui->SessionStart();
108  delete ui;
109 #endif
110 
111 #ifdef G4VIS_USE
112  delete visManager;
113 #endif
114  }
115 
116  // job termination
117  //
118  delete runManager;
119 
120  return 0;
121 }
virtual void SetUserInitialization(G4VUserDetectorConstruction *userInit)
static G4UImanager * GetUIpointer()
Definition: G4UImanager.cc:58
void Initialize()
static void SetInstance(G4VSteppingVerbose *Instance)
static void setTheEngine(HepRandomEngine *theNewEngine)
Definition: Random.cc:170
G4int ApplyCommand(const char *aCommand)
Definition: G4UImanager.cc:419
virtual void SetUserAction(G4UserRunAction *userAction)