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

Main program of the electromagnetic/TestEm12 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/TestEm12 example.

Definition in file TestEm12.cc.

Function Documentation

int main ( int  argc,
char **  argv 
)

Definition at line 58 of file TestEm12.cc.

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

58  {
59 
60  //choose the Random engine
62 
63  //my Verbose output class
65 
66  //Construct the default run manager
67  G4RunManager * runManager = new G4RunManager;
68 
69  //set mandatory initialization classes
71  PhysicsList* phys;
73  runManager->SetUserInitialization(det = new DetectorConstruction);
74  runManager->SetUserInitialization(phys = new PhysicsList);
75  runManager->SetUserAction(kin = new PrimaryGeneratorAction());
76 
77  //set user action classes
78  RunAction* run;
79  EventAction* event;
80 
81  runManager->SetUserAction(run = new RunAction(det,phys,kin));
82  runManager->SetUserAction(event = new EventAction(run));
83  runManager->SetUserAction(new TrackingAction(run,kin));
84  runManager->SetUserAction(new SteppingAction(run,event));
85 
86  //get the pointer to the User Interface manager
88 
89  if (argc!=1) // batch mode
90  {
91  G4String command = "/control/execute ";
92  G4String fileName = argv[1];
93  UI->ApplyCommand(command+fileName);
94  }
95 
96  else //define visualization and UI terminal for interactive mode
97  {
98 #ifdef G4VIS_USE
99  G4VisManager* visManager = new G4VisExecutive;
100  visManager->Initialize();
101 #endif
102 
103 #ifdef G4UI_USE
104  G4UIExecutive * ui = new G4UIExecutive(argc,argv);
105  ui->SessionStart();
106  delete ui;
107 #endif
108 
109 #ifdef G4VIS_USE
110  delete visManager;
111 #endif
112  }
113 
114  //job termination
115  //
116  delete runManager;
117 
118  return 0;
119 }
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)