Import Geant4 9.3.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-09 16:15:05 +02:00
parent b79225fb37
commit 74cad5e589
3877 changed files with 234205 additions and 167127 deletions
+12 -2
View File
@@ -23,8 +23,8 @@
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
// $Id: G4UIbatch.hh,v 1.10 2007/07/16 10:15:12 kmura Exp $
// GEANT4 tag $Name: geant4-09-02 $
// $Id: G4UIbatch.hh,v 1.11 2009/11/06 08:58:53 kmura Exp $
// GEANT4 tag $Name: geant4-09-03 $
//
// ====================================================================
// G4UIbatch.hh
@@ -69,9 +69,19 @@ public:
~G4UIbatch();
G4UIsession* GetPreviousSession() const;
virtual G4UIsession* SessionStart();
virtual void PauseSessionStart(G4String Prompt);
};
// ============================================================================
// inlines
inline G4UIsession* G4UIbatch::GetPreviousSession() const
{
return previousSession;
}
#endif
+7 -2
View File
@@ -24,8 +24,8 @@
// ********************************************************************
//
//
// $Id: G4UIcommandTree.hh,v 1.16 2008/01/30 11:20:03 lgarnier Exp $
// GEANT4 tag $Name: geant4-09-02 $
// $Id: G4UIcommandTree.hh,v 1.17 2009/05/07 09:33:51 lgarnier Exp $
// GEANT4 tag $Name: geant4-09-03 $
//
#ifndef G4UIcommandTree_h
@@ -56,6 +56,10 @@ class G4UIcommandTree
void RemoveCommand(G4UIcommand * aCommand);
G4UIcommand * FindPath(const char* commandPath);
G4UIcommandTree * FindCommandTree(const char* commandPath);
G4String CompleteCommandPath(const G4String commandPath);
// Complete most available caracters in common into command path in the command line
// given
void List();
void ListCurrent();
void ListCurrentWithNum();
@@ -64,6 +68,7 @@ class G4UIcommandTree
private:
G4String CreateFileName(const char* pName);
G4String ModStr(const char* strS);
G4String GetFirstMatchedString(const G4String&,const G4String&) const;
std::vector<G4UIcommand*> command;
std::vector<G4UIcommandTree*> tree;