Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4UIExecutive Class Reference

#include <G4UIExecutive.hh>

Public Member Functions

 G4UIExecutive (G4int argc, char **argv, const G4String &type="")
 
 ~G4UIExecutive ()
 
G4UIsessionGetSession () const
 
G4bool IsGUI () const
 
void SetVerbose (G4bool val)
 
void SetPrompt (const G4String &prompt)
 
void SetLsColor (TermColorIndex dirColor, TermColorIndex cmdColor)
 
void SessionStart ()
 

Detailed Description

Definition at line 62 of file G4UIExecutive.hh.

Constructor & Destructor Documentation

◆ G4UIExecutive()

G4UIExecutive::G4UIExecutive ( G4int argc,
char ** argv,
const G4String & type = "" )

Definition at line 78 of file G4UIExecutive.cc.

79 : selected(kNone), session(nullptr), shell(nullptr), isGUI(false), verbose(true)
80{
81 if (verbose) {
82 G4cout << "Available UI session types: [ ";
83 if (qt_build) G4cout << "Qt, ";
84 if (xm_build) G4cout << "Xm, ";
85 if (win32_build) G4cout << "Win32, ";
86 if (tcsh_build) G4cout << "tcsh, ";
87 G4cout << "csh ]" << G4endl;
88 }
89
90 // selecting session type...
91 // 1st priority : in case argumant specified
92 G4String stype = G4StrUtil::to_lower_copy(type); // session type is case-insensitive.
93 if (! type.empty()) SelectSessionByArg(stype);
94
95 // 2nd priority : refer environment variables (as backword compatibility)
96 if (selected == kNone) SelectSessionByEnv();
97
98 // 3rd priority : refer $HOME/.g4session
99 if (selected == kNone) {
100 const G4String& appinput = argv[0];
101 G4String appname = "";
102 std::size_t islash = appinput.find_last_of("/\\");
103 if (islash == G4String::npos)
104 appname = appinput;
105 else
106 appname = appinput.substr(islash + 1, appinput.size() - islash - 1);
107
108 SelectSessionByFile(appname);
109 }
110
111 // 4th, best guess of session type
112 if (selected == kNone) SelectSessionByBestGuess();
113
114 // instantiate a session...
115 switch (selected) {
116 case kQt:
117#if defined(G4UI_BUILD_QT_SESSION)
118 session = new G4UIQt(argc, argv);
119 isGUI = true;
120#endif
121 break;
122 case kXm:
123#if defined(G4UI_BUILD_XM_SESSION)
124 session = new G4UIXm(argc, argv);
125 isGUI = true;
126#endif
127 break;
128 case kWin32:
129#if defined(G4UI_BUILD_WIN32_SESSION)
130 DISCARD_PARAMETER(argc);
131 DISCARD_PARAMETER(argv);
132 session = new G4UIWin32();
133 isGUI = true;
134#endif
135 break;
136 case kTcsh:
137#if ! (defined(WIN32) || defined(__MINGW32__))
138 DISCARD_PARAMETER(argc);
139 DISCARD_PARAMETER(argv);
140 shell = new G4UItcsh;
141 session = new G4UIterminal(shell);
142#endif
143 break;
144 case kCsh:
145 DISCARD_PARAMETER(argc);
146 DISCARD_PARAMETER(argv);
147 shell = new G4UIcsh;
148 session = new G4UIterminal(shell);
149 default:
150 break;
151 }
152
153 // fallback (csh)
154 if (session == nullptr) {
155 G4Exception("G4UIExecutive::G4UIExecutive()", "UI0002", JustWarning,
156 "Specified session type is not build in your system,\n"
157 "or no session type is specified.\n"
158 "A fallback session type is used.");
159
160 selected = kCsh;
161 DISCARD_PARAMETER(argc);
162 DISCARD_PARAMETER(argv);
163 shell = new G4UIcsh;
164 session = new G4UIterminal(shell);
165 }
166}
@ JustWarning
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
#define DISCARD_PARAMETER(p)
#define G4endl
Definition G4ios.hh:67
G4GLOB_DLL std::ostream G4cout

◆ ~G4UIExecutive()

G4UIExecutive::~G4UIExecutive ( )

Definition at line 169 of file G4UIExecutive.cc.

169{ delete session; }

Member Function Documentation

◆ GetSession()

G4UIsession * G4UIExecutive::GetSession ( ) const
inline

Definition at line 107 of file G4UIExecutive.hh.

107{ return session; }

◆ IsGUI()

G4bool G4UIExecutive::IsGUI ( ) const
inline

Definition at line 109 of file G4UIExecutive.hh.

109{ return isGUI; }

◆ SessionStart()

void G4UIExecutive::SessionStart ( )

Definition at line 292 of file G4UIExecutive.cc.

292{ session->SessionStart(); }

◆ SetLsColor()

void G4UIExecutive::SetLsColor ( TermColorIndex dirColor,
TermColorIndex cmdColor )

Definition at line 286 of file G4UIExecutive.cc.

287{
288 if (shell != nullptr) shell->SetLsColor(dirColor, cmdColor);
289}

◆ SetPrompt()

void G4UIExecutive::SetPrompt ( const G4String & prompt)

Definition at line 280 of file G4UIExecutive.cc.

281{
282 if (shell != nullptr) shell->SetPrompt(prompt);
283}

◆ SetVerbose()

void G4UIExecutive::SetVerbose ( G4bool val)
inline

Definition at line 111 of file G4UIExecutive.hh.

111{ verbose = val; }

The documentation for this class was generated from the following files: