Loading...
Searching...
No Matches
Functions
geotest.cc File Reference

Main program of the persistency/gdml/G02 example. More...

#include "G4RunManagerFactory.hh"
#include "G4UImanager.hh"
#include "globals.hh"
#include "QGSP_BERT.hh"
#include "G02DetectorConstruction.hh"
#include "G02PrimaryGeneratorAction.hh"
#include "G02RunAction.hh"
#include "G4VisExecutive.hh"
#include "G4UIExecutive.hh"

Go to the source code of this file.

Functions

int main (int argc, char **argv)
 

Detailed Description

Main program of the persistency/gdml/G02 example.

Definition in file geotest.cc.

Function Documentation

◆ main()

int main ( int  argc,
char **  argv 
)

Definition at line 58 of file geotest.cc.

59{
60 // Construct a serial run manager
61 //
62 auto* runManager = G4RunManagerFactory::CreateRunManager(G4RunManagerType::SerialOnly);
63
64 // Set mandatory initialization and user action classes
65 //
67 runManager->SetUserInitialization(detector);
68 runManager->SetUserInitialization(new QGSP_BERT);
69 runManager->SetUserAction(new G02PrimaryGeneratorAction);
70 G02RunAction* runAction = new G02RunAction;
71 runManager->SetUserAction(runAction);
72
73 // Initialisation of runManager via macro for the interactive mode
74 // This gives possibility to give different names for GDML file to READ
75
76 // Initialize visualization
77 //
78 G4VisManager* visManager = new G4VisExecutive;
79 visManager->Initialize();
80
81 // Open a UI session: will stay there until the user types "exit"
82 //
83 G4UImanager* UImanager = G4UImanager::GetUIpointer();
84
85 if ( argc==1 ) // Automatically run default macro for writing...
86 {
87 G4UIExecutive* ui = new G4UIExecutive(argc, argv);
88 UImanager->ApplyCommand("/control/execute vis.mac");
89 ui->SessionStart();
90 delete ui;
91 }
92 else // Interactive, provides macro in input
93 {
94 G4UIExecutive* ui = new G4UIExecutive(argc, argv);
95 G4String command = "/control/execute ";
96 G4String fileName = argv[1];
97 UImanager->ApplyCommand(command+fileName);
98 ui->SessionStart();
99 delete ui;
100 }
101
102 // Job termination
103 //
104 delete visManager;
105 delete runManager;
106
107 return 0;
108}
Detector construction used in GDML read/write example.
Primary generator action used in GDML read/write example.
Run action used in GDML read/write example.

Applications | User Support | Publications | Collaboration