Import Geant4 10.3.1 source tree

This commit is contained in:
Gabriele Cosmo
2017-02-28 16:16:20 +01:00
parent a3452e42ac
commit 4597adb7c4
267 changed files with 14761 additions and 24650 deletions
@@ -24,7 +24,7 @@
// ********************************************************************
//
//
// $Id: G4UIcontrolMessenger.hh 98731 2016-08-09 10:49:49Z gcosmo $
// $Id: G4UIcontrolMessenger.hh 102562 2017-02-09 08:27:31Z gcosmo $
//
#ifndef G4UIcontrolMessenger_h
@@ -34,6 +34,7 @@
class G4UIdirectory;
class G4UIcmdWithAString;
class G4UIcmdWithABool;
class G4UIcmdWithAnInteger;
class G4UIcmdWithoutParameter;
class G4UIcommand;
@@ -49,6 +50,7 @@ class G4UIcommand;
// /control/foreach
// /control/suppressAbortion
// /control/verbose
// /control/useDoublePrecision
// /control/saveHistory
// /control/stopSavingHistory
// /control/alias
@@ -88,6 +90,7 @@ class G4UIcontrolMessenger : public G4UImessenger
G4UIcmdWithAString * ExecuteCommand;
G4UIcmdWithAnInteger * suppressAbortionCommand;
G4UIcmdWithAnInteger * verboseCommand;
G4UIcmdWithABool * doublePrecCommand;
G4UIcmdWithAString * historyCommand;
G4UIcmdWithoutParameter * stopStoreHistoryCommand;
G4UIcommand * aliasCommand;
+8 -1
View File
@@ -24,7 +24,7 @@
// ********************************************************************
//
//
// $Id: G4UImanager.hh 85249 2014-10-27 08:28:57Z gcosmo $
// $Id: G4UImanager.hh 102562 2017-02-09 08:27:31Z gcosmo $
//
#ifndef G4UImanager_h
@@ -293,6 +293,13 @@ class G4UImanager : public G4VStateDependent
void SetThreadIgnoreInit(G4bool flg = true);
inline G4MTcoutDestination* GetThreadCout() {return threadCout;};
private:
static G4bool doublePrecisionStr;
public:
inline static void UseDoublePrecisionStr(G4bool val) { doublePrecisionStr = val; }
inline static G4bool DoublePrecisionStr() { return doublePrecisionStr; }
};
#endif