Import Geant4 6.2.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-09 10:56:29 +02:00
parent 1d812b78b1
commit e083ffb441
1415 changed files with 111223 additions and 21207 deletions
@@ -21,8 +21,8 @@
// ********************************************************************
//
//
// $Id: G4LogicalSkinSurface.cc,v 1.11 2003/12/01 14:53:26 gcosmo Exp $
// GEANT4 tag $Name: geant4-06-00-patch-01 $
// $Id: G4LogicalSkinSurface.cc,v 1.12 2004/05/19 08:14:42 gcosmo Exp $
// GEANT4 tag $Name: geant4-06-02 $
//
// --------------------------------------------------------------------
// G4LogicalSkinSurface Implementation
@@ -137,3 +137,13 @@ void G4LogicalSkinSurface::DumpInfo()
}
G4cout << G4endl;
}
void G4LogicalSkinSurface::CleanSurfaceTable()
{
std::vector<G4LogicalSkinSurface*>::iterator pos;
for(pos=theSurfaceTable.begin(); pos!=theSurfaceTable.end(); pos++)
{
if (*pos) delete *pos;
}
theSurfaceTable.clear();
}