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

Go to the source code of this file.

Functions

void export_G4ElementVector ()
 

Function Documentation

◆ export_G4ElementVector()

void export_G4ElementVector ( )

Definition at line 41 of file pyG4ElementVector.cc.

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

Referenced by BOOST_PYTHON_MODULE().