Import Geant4 3.1.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-08 16:03:00 +02:00
parent cfcb558cfe
commit 137e303ecc
2843 changed files with 37082 additions and 38426 deletions
@@ -0,0 +1,19 @@
// This code implementation is the intellectual property of
// the GEANT4 collaboration.
//
// By copying, distributing or modifying the Program (or any work
// based on the Program) you indicate your acceptance of this statement,
// and all its terms.
//
// $Id: G4SceneList.cc,v 1.4 2001/03/07 14:37:48 johna Exp $
// GEANT4 tag $Name: geant4-03-01 $
#include "G4SceneList.hh"
void G4SceneList::remove(G4Scene* scene) {
G4SceneListIterator iScene;
for (iScene = begin(); iScene != end(); ++iScene) {
if (*iScene == scene) break;
}
if (iScene != end()) erase(iScene);
}