Import Geant4 4.1.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-08 16:39:52 +02:00
parent 921d3b1cda
commit 330b82b769
4524 changed files with 178689 additions and 43575 deletions
+4 -5
View File
@@ -21,8 +21,8 @@
// ********************************************************************
//
//
// $Id: G4UIcmdWithAnInteger.cc,v 1.3 2001/07/11 10:01:16 gunter Exp $
// GEANT4 tag $Name: geant4-04-00 $
// $Id: G4UIcmdWithAnInteger.cc,v 1.4 2002/04/26 22:03:35 asaim Exp $
// GEANT4 tag $Name: geant4-04-01 $
//
//
@@ -37,11 +37,10 @@ G4UIcmdWithAnInteger::G4UIcmdWithAnInteger
SetParameter(intParam);
}
G4int G4UIcmdWithAnInteger::GetNewIntValue(G4String paramString)
G4int G4UIcmdWithAnInteger::GetNewIntValue(const char* paramString)
{
G4int vl;
const char* t = paramString;
G4std::istrstream is((char*)t);
G4std::istrstream is((char*)paramString);
is >> vl;
return vl;
}