Import Geant4 4.0.0 source tree
This commit is contained in:
@@ -21,8 +21,8 @@
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id: G4UIArrayString.hh,v 1.1.4.1 2001/06/28 19:10:21 gunter Exp $
|
||||
// GEANT4 tag $Name: $
|
||||
// $Id: G4UIArrayString.hh,v 1.2 2001/07/11 10:01:19 gunter Exp $
|
||||
// GEANT4 tag $Name: geant4-04-00 $
|
||||
//
|
||||
|
||||
#ifndef G4UIArrayString_h
|
||||
|
||||
@@ -21,8 +21,8 @@
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id: G4UIWin32.hh,v 1.9.4.1 2001/06/28 19:10:21 gunter Exp $
|
||||
// GEANT4 tag $Name: $
|
||||
// $Id: G4UIWin32.hh,v 1.10 2001/07/11 10:01:19 gunter Exp $
|
||||
// GEANT4 tag $Name: geant4-04-00 $
|
||||
//
|
||||
#ifndef G4UIWin32_h
|
||||
#define G4UIWin32_h
|
||||
|
||||
@@ -21,8 +21,8 @@
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id: G4UIXaw.hh,v 1.4.4.1 2001/06/28 19:10:22 gunter Exp $
|
||||
// GEANT4 tag $Name: $
|
||||
// $Id: G4UIXaw.hh,v 1.5 2001/07/11 10:01:20 gunter Exp $
|
||||
// GEANT4 tag $Name: geant4-04-00 $
|
||||
//
|
||||
#ifndef G4UIXaw_h
|
||||
#define G4UIXaw_h
|
||||
|
||||
@@ -21,8 +21,8 @@
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id: G4UIXm.hh,v 1.10.4.1 2001/06/28 19:10:22 gunter Exp $
|
||||
// GEANT4 tag $Name: $
|
||||
// $Id: G4UIXm.hh,v 1.11 2001/07/11 10:01:20 gunter Exp $
|
||||
// GEANT4 tag $Name: geant4-04-00 $
|
||||
//
|
||||
#ifndef G4UIXm_h
|
||||
#define G4UIXm_h
|
||||
|
||||
@@ -21,8 +21,8 @@
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id: G4UIcsh.hh,v 1.2.4.1 2001/06/28 19:10:22 gunter Exp $
|
||||
// GEANT4 tag $Name: $
|
||||
// $Id: G4UIcsh.hh,v 1.3 2001/07/11 10:01:20 gunter Exp $
|
||||
// GEANT4 tag $Name: geant4-04-00 $
|
||||
//
|
||||
|
||||
#ifndef G4UIcsh_h
|
||||
|
||||
@@ -21,8 +21,8 @@
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id: G4UItcsh.hh,v 1.2.4.1 2001/06/28 19:10:22 gunter Exp $
|
||||
// GEANT4 tag $Name: $
|
||||
// $Id: G4UItcsh.hh,v 1.5 2001/11/26 19:15:08 asaim Exp $
|
||||
// GEANT4 tag $Name: geant4-04-00 $
|
||||
//
|
||||
|
||||
#ifndef G4UItcsh_h
|
||||
@@ -69,8 +69,8 @@ class G4UItcsh : public G4VUIshell {
|
||||
protected:
|
||||
virtual void MakePrompt(const char* msg=0);
|
||||
|
||||
G4int cursorPosition; // cursor position
|
||||
G4String commandLine; // command line string;
|
||||
G4int cursorPosition; // cursor position
|
||||
G4String commandLineBuf; // temp. command line;
|
||||
G4bool IsCursorLast() const;
|
||||
// Is cursor position at the last of command line ?
|
||||
@@ -125,7 +125,7 @@ public:
|
||||
|
||||
inline G4bool G4UItcsh::IsCursorLast() const
|
||||
{
|
||||
if(cursorPosition == commandLine.length()+1) return TRUE;
|
||||
if(cursorPosition == G4int(commandLine.length()+1)) return TRUE;
|
||||
else return FALSE;
|
||||
}
|
||||
|
||||
|
||||
@@ -21,8 +21,8 @@
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id: G4UIterminal.hh,v 1.6.4.1 2001/06/28 19:10:22 gunter Exp $
|
||||
// GEANT4 tag $Name: $
|
||||
// $Id: G4UIterminal.hh,v 1.7 2001/07/11 10:01:20 gunter Exp $
|
||||
// GEANT4 tag $Name: geant4-04-00 $
|
||||
//
|
||||
|
||||
#ifndef G4UIterminal_h
|
||||
|
||||
@@ -21,8 +21,8 @@
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id: G4VUIshell.hh,v 1.3.4.1 2001/06/28 19:10:22 gunter Exp $
|
||||
// GEANT4 tag $Name: $
|
||||
// $Id: G4VUIshell.hh,v 1.5 2001/11/26 19:15:08 asaim Exp $
|
||||
// GEANT4 tag $Name: geant4-04-00 $
|
||||
//
|
||||
|
||||
#ifndef G4VUIshell_h
|
||||
@@ -55,8 +55,8 @@ class G4UIcommandTree;
|
||||
|
||||
class G4VUIshell {
|
||||
protected:
|
||||
G4String promptString;
|
||||
G4String promptSetting; // including %-directive
|
||||
G4String promptString;
|
||||
virtual void MakePrompt(const char* msg=0); // make prompt string
|
||||
G4int nColumn; // column size of terminal (default=80)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user