Import Geant4 10.3.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-12-09 12:35:28 +01:00
parent 4ec577e5c4
commit a3452e42ac
3514 changed files with 210500 additions and 89628 deletions
@@ -23,7 +23,7 @@
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
// $Id: pyG4AtomicShells.cc 66892 2013-01-17 10:57:59Z gunter $
// $Id: pyG4AtomicShells.cc 101514 2016-11-18 15:30:57Z gcosmo $
// ====================================================================
// pyG4AtomicShells.cc
//
@@ -40,7 +40,7 @@ using namespace boost::python;
void export_G4AtomicShells()
{
class_<G4AtomicShells, boost::noncopyable>
("G4AtomicShells", "Atomic subshell binding energy table")
("G4AtomicShells", "Atomic subshell binding energy table", no_init)
.def("GetNumberOfShells", &G4AtomicShells::GetNumberOfShells)
.staticmethod("GetNumberOfShells")
@@ -23,7 +23,7 @@
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
// $Id: pyG4Element.cc 76884 2013-11-18 12:54:03Z gcosmo $
// $Id: pyG4Element.cc 101514 2016-11-18 15:30:57Z gcosmo $
// ====================================================================
// pyG4Element.cc
//
@@ -105,8 +105,5 @@ void export_G4Element()
return_internal_reference<>())
// ---
.def("Print", Print)
.def(self == self)
.def(self != self)
;
}
@@ -23,7 +23,7 @@
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
// $Id: pyG4NistManager.cc 76884 2013-11-18 12:54:03Z gcosmo $
// $Id: pyG4NistManager.cc 101514 2016-11-18 15:30:57Z gcosmo $
// ====================================================================
// pyG4NistManager.cc
//
@@ -52,9 +52,9 @@ BOOST_PYTHON_MEMBER_FUNCTION_OVERLOADS(f_FindOrBuildElement,
FindOrBuildElement, 1, 2)
// PrintElement
void(G4NistManager::*f1_PrintElement)(const G4String&)
void(G4NistManager::*f1_PrintElement)(const G4String&) const
= &G4NistManager::PrintElement;
void(G4NistManager::*f2_PrintElement)(G4int)
void(G4NistManager::*f2_PrintElement)(G4int) const
= &G4NistManager::PrintElement;
// FindOrBuildMaterial
@@ -148,4 +148,3 @@ void export_G4NistManager()
;
#endif
}