LArSoft  v09_90_00
Liquid Argon Software toolkit - https://larsoft.org/
TestEm11.cc File Reference

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

#include "G4Types.hh"
#include "G4RunManager.hh"
#include "G4UImanager.hh"
#include "Randomize.hh"
#include "DetectorConstruction.hh"
#include "PhysicsList.hh"
#include "ActionInitialization.hh"
#include "SteppingVerbose.hh"
#include "G4UIExecutive.hh"
#include "G4VisExecutive.hh"

Go to the source code of this file.

Functions

int main (int argc, char **argv)
 

Detailed Description

Main program of the electromagnetic/TestEm11 example.

Definition in file TestEm11.cc.

Function Documentation

int main ( int  argc,
char **  argv 
)

Definition at line 54 of file TestEm11.cc.

54  {
55 
56  //detect interactive mode (if no arguments) and define UI session
57  G4UIExecutive* ui = nullptr;
58  if (argc == 1) ui = new G4UIExecutive(argc,argv);
59 
60  //choose the Random engine
61  G4Random::setTheEngine(new CLHEP::RanecuEngine);
62 
63  //choose local stepping verbose
64  G4VSteppingVerbose::SetInstance(new SteppingVerbose);
65 
66  //Construct the default run manager
67 #ifdef G4MULTITHREADED
68  G4MTRunManager* runManager = new G4MTRunManager;
69  // Number of threads can be defined via 3rd argument
70  G4int nThreads = std::min(G4Threading::G4GetNumberOfCores(),4);
71  if (argc==3) nThreads = G4UIcommand::ConvertToInt(argv[2]);
72  runManager->SetNumberOfThreads(nThreads);
73  G4cout << "===== TestEm11 is started with "
74  << runManager->GetNumberOfThreads() << " threads =====" << G4endl;
75 #else
76  G4RunManager* runManager = new G4RunManager;
77 #endif
78 
79  //set mandatory initialization classes
81  runManager->SetUserInitialization(det);
82 
83  PhysicsList* phys = new PhysicsList;
84  runManager->SetUserInitialization(phys);
85 
86  runManager->SetUserInitialization(new ActionInitialization(det, phys));
87 
88  //initialize visualization
89  G4VisManager* visManager = nullptr;
90 
91  //get the pointer to the User Interface manager
92  G4UImanager* UImanager = G4UImanager::GetUIpointer();
93 
94  if (ui) {
95  //interactive mode
96  visManager = new G4VisExecutive;
97  visManager->Initialize();
98  ui->SessionStart();
99  delete ui;
100  }
101  else {
102  //batch mode
103  G4String command = "/control/execute ";
104  G4String fileName = argv[1];
105  UImanager->ApplyCommand(command+fileName);
106  }
107 
108  //job termination
109  delete visManager;
110  delete runManager;
111 }
TConfigurablePhysicsList< ModularPhysicsList > PhysicsList
Definition: PhysicsList.h:83