#include <boost/python.hpp>
#include "G4Version.hh"
#include "G4VSolid.hh"
Go to the source code of this file.
Definition at line 40 of file pyG4VSolid.cc.
Referenced by BOOST_PYTHON_MODULE().
42 class_<G4VSolid, G4VSolid*, boost::noncopyable>
43 (
"G4VSolid",
"solid class", no_init)
45 .def(
"GetName", &G4VSolid::GetName)
46 .def(
"SetName", &G4VSolid::SetName)
47 .def(
"DumpInfo", &G4VSolid::DumpInfo)
49 .def(
"GetCubicVolume", &G4VSolid::GetCubicVolume)
50 #if G4VERSION_NUMBER >=820 51 .def(
"GetSurfaceArea", &G4VSolid::GetSurfaceArea)
53 #if G4VERSION_NUMBER >=800 54 .def(
"GetPointOnSurface", &G4VSolid::GetPointOnSurface)