Import Geant4 9.1.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-09 15:37:50 +02:00
parent a8e9364cea
commit 96c8bcd0af
6923 changed files with 198390 additions and 41849 deletions
@@ -24,8 +24,8 @@
// ********************************************************************
//
//
// $Id: G4String.icc,v 1.8 2006/06/29 19:03:07 gunter Exp $
// GEANT4 tag $Name: geant4-09-00 $
// $Id: G4String.icc,v 1.9 2007/11/13 17:35:06 gcosmo Exp $
// GEANT4 tag $Name: geant4-09-01 $
//
//
//---------------------------------------------------------------
@@ -360,12 +360,12 @@ G4bool G4String::contains(char c) const
{ return false; }
}
G4String G4String::strip (G4int stripType, char c)
G4String G4String::strip (G4int strip_Type, char c)
{
G4String retVal = *this;
if(length()==0) { return retVal; }
str_size i=0;
switch ( stripType ) {
switch ( strip_Type ) {
case leading:
{
for(i=0;i<length();i++)