Import Geant4 10.3.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-12-09 12:35:28 +01:00
parent 4ec577e5c4
commit a3452e42ac
3514 changed files with 210500 additions and 89628 deletions
+12 -4
View File
@@ -24,18 +24,26 @@
// ********************************************************************
//
//
// $Id: G4UIsession.cc 67965 2013-03-13 09:35:29Z gcosmo $
// $Id: G4UIsession.cc 98731 2016-08-09 10:49:49Z gcosmo $
//
//
// ---------------------------------------------------------------------
#include "G4UIsession.hh"
G4UIsession::G4UIsession() {;}
G4int G4UIsession::inSession = 0;
G4UIsession::G4UIsession() : ifBatch(0)
{
inSession++;
}
G4UIsession::~G4UIsession() {;}
G4UIsession::G4UIsession(G4int iBatch) : ifBatch(iBatch)
{;}
G4UIsession * G4UIsession::SessionStart() { return NULL; }
G4UIsession::~G4UIsession()
{ if(!ifBatch) { inSession--; } }
G4UIsession * G4UIsession::SessionStart() { return nullptr; }
void G4UIsession::PauseSessionStart(const G4String&) {;}