Import Geant4 10.2.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-10 14:11:04 +02:00
parent c9b32a6c0a
commit d4af681f38
4886 changed files with 420149 additions and 1023309 deletions
+2 -2
View File
@@ -24,7 +24,7 @@
// ********************************************************************
//
//
// $Id: G4UIcommand.cc 84281 2014-10-13 07:21:50Z gcosmo $
// $Id: G4UIcommand.cc 89953 2015-05-06 08:09:12Z gcosmo $
//
//
@@ -225,7 +225,7 @@ G4int G4UIcommand::DoIt(G4String parameterList)
if(CheckNewValue( correctParameters ))
{ return fParameterOutOfRange+99; }
if(workerThreadOnly && !G4Threading::IsWorkerThread()) return 0;
if(workerThreadOnly && G4Threading::IsMasterThread()) return 0;
messenger->SetNewValue( this, correctParameters );
return 0;
+15 -1
View File
@@ -24,7 +24,7 @@
// ********************************************************************
//
//
// $Id: G4UImanager.cc 85249 2014-10-27 08:28:57Z gcosmo $
// $Id: G4UImanager.cc 94366 2015-11-13 08:15:49Z gcosmo $
//
//
// ---------------------------------------------------------------------
@@ -144,6 +144,20 @@ G4UImanager::G4UImanager(const G4UImanager& ui)
savedCommand= ui.savedCommand;
session = ui.session;
treeTop = ui.treeTop;
verboseLevel = ui.verboseLevel;
saveHistory = ui.saveHistory;
CoutMessenger = 0;
maxHistSize = ui.maxHistSize;
pauseAtBeginOfEvent = ui.pauseAtBeginOfEvent;
pauseAtEndOfEvent = ui.pauseAtEndOfEvent;
isMaster = ui.isMaster;
bridges = ui.bridges;
ignoreCmdNotFound = ui.ignoreCmdNotFound;
stackCommandsForBroadcast = ui.stackCommandsForBroadcast;
commandStack = ui.commandStack;
threadID = ui.threadID;
threadCout = ui.threadCout;
CreateMessenger();
}
const G4UImanager & G4UImanager::operator=(const G4UImanager &right)