Import Geant4 9.6.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-09 17:01:34 +02:00
parent b1eb5424d2
commit e2d2f9810a
10384 changed files with 698580 additions and 628834 deletions
@@ -23,8 +23,7 @@
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
// $Id: G4UIExecutive.hh,v 1.4 2009-11-20 22:10:31 kmura Exp $
// GEANT4 tag $Name: not supported by cvs2svn $
// $Id$
//
// ====================================================================
// G4UIExecutive.hh
@@ -50,33 +49,54 @@
// ...
//
// ====================================================================
#ifndef G4UI_EXECUTIVE_H
#define G4UI_EXECUTIVE_H 1
#ifndef G4UI_EXECUTIVE_HH
#define G4UI_EXECUTIVE_HH
#include "G4VUIshell.hh"
#include <map>
class G4UIsession;
class G4UIExecutive {
private:
G4UIsession* session;
G4VUIshell* shell;
G4bool isGUI;
public:
G4UIExecutive(G4int argc, char** argv);
G4UIExecutive(G4int argc, char** argv, const G4String& type = "");
~G4UIExecutive();
G4bool IsGUI() const;
G4UIsession* GetSession() const;
G4bool IsGUI() const;
void SetPrompt(const G4String& prompt);
void SetLsColor(TermColorIndex dirColor, TermColorIndex cmdColor);
void SessionStart();
private:
enum SessionType { kNone, kQt, kXm, kWin32, kWt, kGag, kTcsh, kCsh };
SessionType selected;
G4UIsession* session;
G4VUIshell* shell;
G4bool isGUI;
std::map<G4String, G4String> sessionMap;
void SelectSessionByArg(const G4String& stype);
void SelectSessionByEnv();
void SelectSessionByFile(const G4String& appname);
void SelectSessionByBestGuess();
};
#include "G4UIExecutive.icc"
// ====================================================================
inline G4UIsession* G4UIExecutive::GetSession() const
{
return session;
}
inline G4bool G4UIExecutive::IsGUI() const
{
return isGUI;
}
#endif