Geant4-11
Namespaces | Typedefs | Functions
pyG4ProcVector.cc File Reference
#include <boost/python.hpp>
#include <boost/python/suite/indexing/vector_indexing_suite.hpp>
#include "G4VProcess.hh"

Go to the source code of this file.

Namespaces

namespace  pyG4ProcVector
 

Typedefs

typedef std::vector< G4VProcess * > pyG4ProcVector::G4ProcVector
 

Functions

void export_G4ProcVector ()
 

Function Documentation

◆ export_G4ProcVector()

void export_G4ProcVector ( )

Definition at line 48 of file pyG4ProcVector.cc.

49{
50 class_<G4ProcVector> ("G4ProcVector", "process vector")
51 .def(vector_indexing_suite<G4ProcVector>())
52 ;
53}

Referenced by BOOST_PYTHON_MODULE().