Import Geant4 9.5.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-09 16:46:55 +02:00
parent 89a9605df1
commit b1eb5424d2
10957 changed files with 888481 additions and 160139 deletions
@@ -24,8 +24,8 @@
// ********************************************************************
//
//
// $Id: G4PhysicalVolumeStore.cc,v 1.20 2008/07/10 09:41:20 gcosmo Exp $
// GEANT4 tag $Name: geant4-09-02 $
// $Id: G4PhysicalVolumeStore.cc,v 1.20 2008-07-10 09:41:20 gcosmo Exp $
// GEANT4 tag $Name: not supported by cvs2svn $
//
// G4PhysicalVolumeStore
//
@@ -171,11 +171,12 @@ G4PhysicalVolumeStore::GetVolume(const G4String& name, G4bool verbose) const
}
if (verbose)
{
G4cerr << "ERROR - G4PhysicalVolumeStore::GetVolume()" << G4endl
std::ostringstream message;
message << "Volume NOT found in store !" << G4endl
<< " Volume " << name << " NOT found in store !" << G4endl
<< " Returning NULL pointer." << G4endl;
G4Exception("G4PhysicalVolumeStore::GetVolume()", "InvalidQuery",
JustWarning, "Volume NOT found in store !");
<< " Returning NULL pointer.";
G4Exception("G4PhysicalVolumeStore::GetVolume()",
"GeomMgt1001", JustWarning, message);
}
return 0;
}