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

Main program of the medical/fanoCavity example. More...

#include "G4Types.hh"
#include "G4RunManager.hh"
#include "G4UImanager.hh"
#include "Randomize.hh"
#include "DetectorConstruction.hh"
#include "PhysicsList.hh"
#include "PrimaryGeneratorAction.hh"
#include "ActionInitialization.hh"
#include "RunAction.hh"
#include "EventAction.hh"
#include "TrackingAction.hh"
#include "SteppingAction.hh"
#include "SteppingVerbose.hh"
#include "StackingAction.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 medical/fanoCavity example.

Definition in file fanoCavity.cc.

Function Documentation

int main ( int  argc,
char **  argv 
)

Definition at line 60 of file fanoCavity.cc.

60  {
61 
62  //detect interactive mode (if no arguments) and define UI session
63  G4UIExecutive* ui = nullptr;
64  if (argc == 1) ui = new G4UIExecutive(argc,argv);
65 
66  //Construct the default run manager
67 #ifdef G4MULTITHREADED
68  G4MTRunManager* runManager = new G4MTRunManager;
69  G4int nThreads = 2;
70  if (argc==3) {
71  int iTmp = G4UIcommand::ConvertToInt(argv[2]);
72  nThreads = (iTmp<0)? G4Threading::G4GetNumberOfCores() : iTmp;
73  }
74  runManager->SetNumberOfThreads(nThreads);
75 #else
76  G4VSteppingVerbose::SetInstance(new SteppingVerbose);
77  G4RunManager* runManager = new G4RunManager;
78 #endif
79 
80  //set mandatory initialization classes
82  PhysicsList* phys;
83 
84  runManager->SetUserInitialization(det = new DetectorConstruction);
85  runManager->SetUserInitialization(phys = new PhysicsList(det));
86 
87  //set user action classes
88  runManager->SetUserInitialization(new ActionInitialization(det));
89 
90  //initialize visualization
91  G4VisManager* visManager = nullptr;
92 
93  //get the pointer to the User Interface manager
94  G4UImanager* UImanager = G4UImanager::GetUIpointer();
95 
96  if (ui) {
97  //interactive mode
98  visManager = new G4VisExecutive;
99  visManager->Initialize();
100  ui->SessionStart();
101  delete ui;
102  }
103  else {
104  //batch mode
105  G4String command = "/control/execute ";
106  G4String fileName = argv[1];
107  UImanager->ApplyCommand(command+fileName);
108  }
109 
110  //job termination
111  delete visManager;
112  delete runManager;
113 }
TConfigurablePhysicsList< ModularPhysicsList > PhysicsList
Definition: PhysicsList.h:83