Main program of the electromagnetic/TestEm2 example.
More...
#include "G4RunManager.hh"
#include "G4MTRunManager.hh"
#include "G4UImanager.hh"
#include "G4UIcommand.hh"
#include "Randomize.hh"
#include "DetectorConstruction.hh"
#include "PhysicsList.hh"
#include "ActionInitialization.hh"
#include "SteppingVerbose.hh"
Go to the source code of this file.
|
int | main (int argc, char **argv) |
|
Main program of the electromagnetic/TestEm2 example.
Definition in file TestEm2.cc.
int main |
( |
int |
argc, |
|
|
char ** |
argv |
|
) |
| |
Definition at line 56 of file TestEm2.cc.
59 G4Random::setTheEngine(
new CLHEP::RanecuEngine);
61 #ifdef G4MULTITHREADED 62 G4MTRunManager * runManager =
new G4MTRunManager();
63 G4int nThreads = G4Threading::G4GetNumberOfCores();
64 if (argc==3) nThreads = G4UIcommand::ConvertToInt(argv[2]);
65 runManager->SetNumberOfThreads(nThreads);
67 G4VSteppingVerbose::SetInstance(
new SteppingVerbose);
68 G4RunManager * runManager =
new G4RunManager();
73 runManager->SetUserInitialization(detector);
74 runManager->SetUserInitialization(
new PhysicsList());
77 runManager->SetUserInitialization(
new ActionInitialization(detector));
80 G4UImanager* UI = G4UImanager::GetUIpointer();
84 G4String command =
"/control/execute ";
86 UI->ApplyCommand(command+fileName);
92 G4VisManager* visManager =
new G4VisExecutive;
93 visManager->Initialize();
97 G4UIExecutive * ui =
new G4UIExecutive(argc,argv);
TConfigurablePhysicsList< ModularPhysicsList > PhysicsList