LArSoft  v09_90_00
Liquid Argon Software toolkit - https://larsoft.org/
Ultra.cc File Reference
#include "G4Types.hh"
#include "G4RunManager.hh"
#include "G4UImanager.hh"
#include "Randomize.hh"
#include "G4VisExecutive.hh"
#include "G4UIExecutive.hh"
#include "UltraActionInitializer.hh"
#include "UltraDetectorConstruction.hh"
#include "UltraPhysicsList.hh"

Go to the source code of this file.

Functions

int main (int argc, char **argv)
 

Function Documentation

int main ( int  argc,
char **  argv 
)

Definition at line 57 of file Ultra.cc.

57  {
58 
59 //choose the Random engine from CLHEP
60 //(lets use C++ implementation of Jame's RANLUX generator)
61 
62  G4Random::setTheEngine(new CLHEP::RanluxEngine);
63 
64 #ifdef G4MULTITHREADED
65  G4MTRunManager* runManager = new G4MTRunManager;
66  //runManager->SetNumberOfThreads(2);
67 #else
68  G4RunManager* runManager = new G4RunManager;
69 #endif
70 
71  // UserInitialization classes - mandatory
72  runManager->SetUserInitialization(new UltraDetectorConstruction);
73  runManager->SetUserInitialization(new UltraPhysicsList());
74 
75  // UserAction classes - optional
76  runManager->SetUserInitialization(new UltraActionInitializer());
77 
78  // Detect interactive mode (if no arguments) and define UI session
79  G4UIExecutive* ui = 0;
80  if ( argc == 1 ) {
81  ui = new G4UIExecutive(argc, argv);
82  }
83 
84  // Initialise visualization
85  G4VisManager* visManager = new G4VisExecutive;
86  visManager->Initialize();
87 
88  // Get the Pointer to the UI Manager
89  G4UImanager* UImanager = G4UImanager::GetUIpointer();
90 
91  // User interactions
92  // Define (G)UI for interactive mode
93  if(argc==1)
94  {
95  UImanager->ApplyCommand("/control/execute VisDirect.mac");
96  ui->SessionStart();
97  delete ui;
98  }
99  else // Batch mode
100  {
101  G4String command = "/control/execute ";
102  G4String fileName = argv[1];
103  UImanager->ApplyCommand(command+fileName);
104  }
105 
106  delete visManager;
107  delete runManager;
108 
109  return 0;
110 }