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

Main program of the microyz example. More...

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

Go to the source code of this file.

Functions

int main (int argc, char **argv)
 

Detailed Description

Main program of the microyz example.

Definition in file microyz.cc.

Function Documentation

int main ( int  argc,
char **  argv 
)

Definition at line 56 of file microyz.cc.

57 {
58  // Detect interactive mode (if no arguments) and define UI session
59  G4UIExecutive* ui = 0;
60  if ( argc == 1 ) {
61  ui = new G4UIExecutive(argc, argv);
62  }
63 
64  // Construct the default run manager
65 
66 #ifdef G4MULTITHREADED
67  G4MTRunManager* runManager = new G4MTRunManager;
68 #else
69  G4RunManager* runManager = new G4RunManager;
70 #endif
71 
72  // Set mandatory initialization classes
73  runManager->SetUserInitialization(new DetectorConstruction());
74 
75  runManager->SetUserInitialization(new PhysicsList);
76 
77  // Set user action classes
78  runManager->SetUserInitialization(new ActionInitialization());
79 
80  // Initialize visualization
81  G4VisManager* visManager = new G4VisExecutive;
82  // G4VisExecutive can take a verbosity argument - see /vis/verbose guidance.
83  // G4VisManager* visManager = new G4VisExecutive("Quiet");
84  visManager->Initialize();
85 
86  // Get the pointer to the User Interface manager
87  G4UImanager* UImanager = G4UImanager::GetUIpointer();
88 
89  // Process macro or start UI session
90  if ( ! ui ) {
91  // batch mode
92  G4String command = "/control/execute ";
93  G4String fileName = argv[1];
94  UImanager->ApplyCommand(command+fileName);
95  }
96  else {
97  // interactive mode
98  UImanager->ApplyCommand("/control/execute init_vis.mac");
99  ui->SessionStart();
100  delete ui;
101  }
102 
103  // Job termination
104  // Free the store: user actions, physics_list and detector_description are
105  // owned and deleted by the run manager, so they should not be deleted
106  // in the main() program !
107  //
108  delete visManager;
109  delete runManager;
110 }