LArSoft  v09_90_00
Liquid Argon Software toolkit - https://larsoft.org/
pyG4Hype.cc File Reference
#include <boost/python.hpp>
#include "G4Hype.hh"

Go to the source code of this file.

Namespaces

 pyG4Hype
 

Functions

G4Hype * pyG4Hype::CreateHype (const G4String &name, G4double newInnerRadius, G4double newOuterRadius, G4double newInnerStereo, G4double newOuterStereo, G4double newHalfLenZ)
 
void export_G4Hype ()
 

Function Documentation

void export_G4Hype ( )

Definition at line 61 of file pyG4Hype.cc.

References pyG4Hype::CreateHype().

Referenced by BOOST_PYTHON_MODULE().

62 {
63  class_<G4Hype, G4Hype*, bases<G4VSolid> >
64  ("G4Hype", "hyperbolic solid class", no_init)
65  // constructors
66  .def(init<const G4String&, G4double, G4double, G4double,
67  G4double, G4double>())
68  // ---
69  .def("GetInnerRadius", &G4Hype::GetInnerRadius)
70  .def("GetOuterRadius", &G4Hype::GetOuterRadius)
71  .def("GetZHalfLength", &G4Hype::GetZHalfLength)
72  .def("GetInnerStereo", &G4Hype::GetInnerStereo)
73  .def("GetOuterStereo", &G4Hype::GetOuterStereo)
74  .def("SetInnerRadius", &G4Hype::SetInnerRadius)
75  .def("SetOuterRadius", &G4Hype::SetOuterRadius)
76  .def("SetZHalfLength", &G4Hype::SetZHalfLength)
77  .def("SetInnerStereo", &G4Hype::SetInnerStereo)
78  .def("SetOuterStereo", &G4Hype::SetOuterStereo)
79  // operators
80  .def(self_ns::str(self))
81  ;
82 
83  // Create solid
84  def("CreateHype", CreateHype, return_value_policy<manage_new_object>());
85 
86 }
G4Hype * CreateHype(const G4String &name, G4double newInnerRadius, G4double newOuterRadius, G4double newInnerStereo, G4double newOuterStereo, G4double newHalfLenZ)
Definition: pyG4Hype.cc:41