Import Geant4 3.0.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-08 15:55:53 +02:00
parent e7d7193284
commit cfcb558cfe
3050 changed files with 91703 additions and 48310 deletions
@@ -6,7 +6,7 @@
// and all its terms.
//
// $Id: G4UIArrayString.hh,v 1.1 2000/03/26 23:02:33 asaim Exp $
// GEANT4 tag $Name: geant4-02-00 $
// GEANT4 tag $Name: geant4-03-00 $
//
#ifndef G4UIArrayString_h
+1 -1
View File
@@ -6,7 +6,7 @@
// and all its terms.
//
// $Id: G4UIWin32.hh,v 1.9 2000/05/26 14:58:29 barrand Exp $
// GEANT4 tag $Name: geant4-02-00 $
// GEANT4 tag $Name: geant4-03-00 $
//
#ifndef G4UIWin32_h
#define G4UIWin32_h
+1 -1
View File
@@ -6,7 +6,7 @@
// and all its terms.
//
// $Id: G4UIXaw.hh,v 1.4 1999/12/15 14:50:46 gunter Exp $
// GEANT4 tag $Name: geant4-02-00 $
// GEANT4 tag $Name: geant4-03-00 $
//
#ifndef G4UIXaw_h
#define G4UIXaw_h
+1 -1
View File
@@ -6,7 +6,7 @@
// and all its terms.
//
// $Id: G4UIXm.hh,v 1.10 2000/05/26 14:58:30 barrand Exp $
// GEANT4 tag $Name: geant4-02-00 $
// GEANT4 tag $Name: geant4-03-00 $
//
#ifndef G4UIXm_h
#define G4UIXm_h
+3 -3
View File
@@ -5,8 +5,8 @@
// based on the Program) you indicate your acceptance of this statement,
// and all its terms.
//
// $Id: G4UIcsh.hh,v 1.1 2000/03/26 23:03:46 asaim Exp $
// GEANT4 tag $Name: geant4-02-00 $
// $Id: G4UIcsh.hh,v 1.2 2000/07/22 10:52:28 asaim Exp $
// GEANT4 tag $Name: geant4-03-00 $
//
#ifndef G4UIcsh_h
@@ -26,7 +26,7 @@ public:
G4UIcsh(const G4String& prompt="%s> ");
~G4UIcsh();
virtual G4String GetCommandLine();
virtual G4String GetCommandLine(const char* msg=0);
};
+4 -4
View File
@@ -5,8 +5,8 @@
// based on the Program) you indicate your acceptance of this statement,
// and all its terms.
//
// $Id: G4UItcsh.hh,v 1.1 2000/03/26 23:03:47 asaim Exp $
// GEANT4 tag $Name: geant4-02-00 $
// $Id: G4UItcsh.hh,v 1.2 2000/07/22 10:52:28 asaim Exp $
// GEANT4 tag $Name: geant4-03-00 $
//
#ifndef G4UItcsh_h
@@ -51,7 +51,7 @@
class G4UItcsh : public G4VUIshell {
protected:
virtual void MakePrompt();
virtual void MakePrompt(const char* msg=0);
G4int cursorPosition; // cursor position
G4String commandLine; // command line string;
@@ -104,7 +104,7 @@ public:
~G4UItcsh();
void SetLsColor(TermColorIndex dirColor, TermColorIndex cmdColor);
virtual G4String GetCommandLine();
virtual G4String GetCommandLine(const char* msg=0);
};
inline G4bool G4UItcsh::IsCursorLast() const
@@ -5,8 +5,8 @@
// based on the Program) you indicate your acceptance of this statement,
// and all its terms.
//
// $Id: G4UIterminal.hh,v 1.5 2000/03/26 23:03:48 asaim Exp $
// GEANT4 tag $Name: geant4-02-00 $
// $Id: G4UIterminal.hh,v 1.6 2000/07/22 10:52:28 asaim Exp $
// GEANT4 tag $Name: geant4-03-00 $
//
#ifndef G4UIterminal_h
@@ -69,7 +69,7 @@ public:
private:
void ExecuteCommand(G4String aCommand);
G4String GetCommand();
G4String GetCommand(const char* msg=0);
G4bool GetHelpChoice(G4int& aInt);
void ExitHelp();
@@ -5,8 +5,8 @@
// based on the Program) you indicate your acceptance of this statement,
// and all its terms.
//
// $Id: G4VUIshell.hh,v 1.1 2000/03/26 23:03:48 asaim Exp $
// GEANT4 tag $Name: geant4-02-00 $
// $Id: G4VUIshell.hh,v 1.3 2000/11/27 11:01:51 asaim Exp $
// GEANT4 tag $Name: geant4-03-00 $
//
#ifndef G4VUIshell_h
@@ -41,7 +41,7 @@ class G4VUIshell {
protected:
G4String promptString;
G4String promptSetting; // including %-directive
virtual void MakePrompt(); // make prompt string
virtual void MakePrompt(const char* msg=0); // make prompt string
G4int nColumn; // column size of terminal (default=80)
// color code support (effective if your terminal supports color code.)
@@ -61,7 +61,7 @@ protected:
public:
G4VUIshell(const G4String& prompt="> ");
~G4VUIshell();
virtual ~G4VUIshell();
void SetNColumn(G4int ncol);
void SetPrompt(const G4String& prompt);
@@ -74,7 +74,7 @@ public:
// "candidate" is specified with full path.
// get command string from a command line
virtual G4String GetCommandLine()= 0;
virtual G4String GetCommandLine(const char* msg=0)= 0;
};