Main program of the medical/fanoCavity2 example.
More...
#include "G4Types.hh"
#include "G4RunManager.hh"
#include "G4UImanager.hh"
#include "Randomize.hh"
#include "ActionInitialization.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"
#include "G4UIExecutive.hh"
#include "G4VisExecutive.hh"
Go to the source code of this file.
|
int | main (int argc, char **argv) |
|
Main program of the medical/fanoCavity2 example.
Definition in file fanoCavity2.cc.
int main |
( |
int |
argc, |
|
|
char ** |
argv |
|
) |
| |
Definition at line 59 of file fanoCavity2.cc.
62 G4UIExecutive* ui =
nullptr;
63 if (argc == 1) ui =
new G4UIExecutive(argc,argv);
66 CLHEP::HepRandom::setTheEngine(
new CLHEP::RanecuEngine);
68 #ifdef G4MULTITHREADED 69 G4MTRunManager* runManager =
new G4MTRunManager;
70 G4int nThreads = std::min(G4Threading::G4GetNumberOfCores(),2);
71 if (argc==3) nThreads = G4UIcommand::ConvertToInt(argv[2]);
72 runManager->SetNumberOfThreads(nThreads);
73 G4cout <<
"===== fanoCavity2 is started with " 74 << runManager->GetNumberOfThreads() <<
" threads =====" << G4endl;
76 G4VSteppingVerbose::SetInstance(
new SteppingVerbose);
77 G4RunManager* runManager =
new G4RunManager;
85 runManager->SetUserInitialization(phys =
new PhysicsList());
88 runManager->SetUserInitialization(
new ActionInitialization(det));
91 G4VisManager* visManager =
nullptr;
94 G4UImanager* UImanager = G4UImanager::GetUIpointer();
98 visManager =
new G4VisExecutive;
99 visManager->Initialize();
100 UImanager->ApplyCommand(
"/control/execute vis.mac");
106 G4String command =
"/control/execute ";
108 UImanager->ApplyCommand(command+fileName);
TConfigurablePhysicsList< ModularPhysicsList > PhysicsList