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

Go to the source code of this file.

Functions

void export_G4IntersectionSolid ()
 

Function Documentation

void export_G4IntersectionSolid ( )

Definition at line 39 of file pyG4IntersctionSolid.cc.

Referenced by BOOST_PYTHON_MODULE().

40 {
41  class_<G4IntersectionSolid,G4IntersectionSolid*,
42  bases<G4BooleanSolid>,boost::noncopyable>
43  ("G4IntersectionSolid", "intersection solid class", no_init)
44  // ---
45  .def(init<const G4String&, G4VSolid*, G4VSolid*>())
46  .def(init<const G4String&, G4VSolid*, G4VSolid*,
47  G4RotationMatrix*, const G4ThreeVector&>())
48  .def(init<const G4String&, G4VSolid*, G4VSolid*,
49  const G4Transform3D&>())
50  ;
51 }