Import Geant4 9.6.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-09 17:01:34 +02:00
parent b1eb5424d2
commit e2d2f9810a
10384 changed files with 698580 additions and 628834 deletions
@@ -45,14 +45,14 @@ using namespace boost::python;
namespace pyG4UImanager {
// ApplyCommand
G4int(G4UImanager::*f1_ApplyCommand)(const char*)= &G4UImanager::ApplyCommand;
G4int(G4UImanager::*f2_ApplyCommand)(G4String)= &G4UImanager::ApplyCommand;
G4int(G4UImanager::*f1_ApplyCommand)(const char*) = &G4UImanager::ApplyCommand;
G4int(G4UImanager::*f2_ApplyCommand)(const G4String&) =
&G4UImanager::ApplyCommand;
// CreateHTML
BOOST_PYTHON_MEMBER_FUNCTION_OVERLOADS(f_CreateHTML, CreateHTML, 0, 1);
//////////////////////////////////////////////
G4int ApplyUICommand_1(const G4String& cmdstr)
//////////////////////////////////////////////
@@ -130,6 +130,9 @@ void export_G4UImanager()
.def("ApplyCommand", f1_ApplyCommand)
.def("ApplyCommand", f2_ApplyCommand)
.def("CreateHTML", &G4UImanager::CreateHTML, f_CreateHTML())
.def("SetMacroSearchPath", &G4UImanager::SetMacroSearchPath)
.def("GetMacroSearchPath", &G4UImanager::GetMacroSearchPath,
return_value_policy<return_by_value>())
// ---
.def("SetPauseAtBeginOfEvent", &G4UImanager::SetPauseAtBeginOfEvent)
.def("GetPauseAtBeginOfEvent", &G4UImanager::GetPauseAtBeginOfEvent)