Import Geant4 9.1.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-09 15:37:50 +02:00
parent a8e9364cea
commit 96c8bcd0af
6923 changed files with 198390 additions and 41849 deletions
+20 -3
View File
@@ -23,8 +23,8 @@
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
// $Id: pyG4Orb.cc,v 1.4 2006/06/29 15:32:13 gunter Exp $
// $Name: geant4-09-00 $
// $Id: pyG4Orb.cc,v 1.5 2007/07/13 04:57:50 kmura Exp $
// $Name: geant4-09-01 $
// ====================================================================
// pyG4Orb.cc
//
@@ -35,6 +35,20 @@
using namespace boost::python;
// ====================================================================
// wrappers
// ====================================================================
namespace pyG4Orb {
G4Orb* CreateOrb(const G4String& name, G4double pRmax)
{
return new G4Orb(name, pRmax);
}
}
using namespace pyG4Orb;
// ====================================================================
// module definition
// ====================================================================
@@ -47,8 +61,11 @@ void export_G4Orb()
// ---
.def("GetRadius", &G4Orb::GetRadius)
.def("SetRadius", &G4Orb::SetRadius)
.def("GetCubicVolume", &G4Orb::GetCubicVolume)
// operators
.def(self_ns::str(self))
;
// Create solid
def("CreateOrb", CreateOrb, return_value_policy<manage_new_object>());
}