32 #include <boost/python.hpp> 
   36 using namespace boost::python;
 
   43   class_<G4Colour> (
"G4Color", 
"color class", no_init)
 
   46     .def(init<G4double>())
 
   47     .def(init<G4double, G4double>())
 
   48     .def(init<G4double, G4double, G4double>())
 
   49     .def(init<G4double, G4double, G4double, G4double>())
 
   50     .def(init<G4ThreeVector>())
 
   57     .def(self_ns::str(
self))
 
G4double GetAlpha() const 
 
G4double GetGreen() const