Geant4-11
Functions
pyG4ElementTable.cc File Reference
#include <boost/python.hpp>
#include <boost/python/suite/indexing/vector_indexing_suite.hpp>
#include "G4Element.hh"
#include "G4ElementTable.hh"

Go to the source code of this file.

Functions

void export_G4ElementTable ()
 

Function Documentation

◆ export_G4ElementTable()

void export_G4ElementTable ( )

Definition at line 41 of file pyG4ElementTable.cc.

42{
43 class_<G4ElementTable> ("G4ElementTable", "element table")
44 .def(vector_indexing_suite<G4ElementTable>())
45 .def(self_ns::str(self))
46 ;
47}

Referenced by BOOST_PYTHON_MODULE().