32 #include <boost/python.hpp> 
   35 using namespace boost::python;
 
   40 namespace pyG4EllipticalTube {
 
   52 using namespace pyG4EllipticalTube;
 
   59   class_<G4EllipticalTube, G4EllipticalTube*, bases<G4VSolid> >
 
   60     (
"G4EllipticalTube", 
"elliptical tube solid class", no_init)
 
   62     .def(init<const G4String&, G4double, G4double, G4double>())
 
   72     .def(self_ns::str(
self))
 
   77         return_value_policy<manage_new_object>());
 
void SetDy(const G4double newDy)
 
void SetDz(const G4double newDz)
 
void SetDx(const G4double newDx)
 
void export_G4EllipticalTube()
 
G4EllipticalTube * CreateEllipticalTube(const G4String &name, G4double theDx, G4double theDy, G4double theDz)