Geant4-11
Functions
pyG4MaterialTable.cc File Reference
#include <boost/python.hpp>
#include <boost/python/suite/indexing/vector_indexing_suite.hpp>
#include "G4Material.hh"
#include "G4MaterialTable.hh"

Go to the source code of this file.

Functions

void export_G4MaterialTable ()
 

Function Documentation

◆ export_G4MaterialTable()

void export_G4MaterialTable ( )

Definition at line 41 of file pyG4MaterialTable.cc.

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

Referenced by BOOST_PYTHON_MODULE().