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

Go to the source code of this file.

Namespaces

 pyEMSTDpl
 

Functions

PhysicsListEMstdpyEMSTDpl::Construct ()
 
 BOOST_PYTHON_MODULE (EMSTDpl)
 

Function Documentation

BOOST_PYTHON_MODULE ( EMSTDpl  )

Definition at line 65 of file pyEMSTDpl.cc.

References pyEMSTDpl::Construct().

65  {
66 
67  class_<PhysicsListEMstd, PhysicsListEMstd*, bases<G4VUserPhysicsList> >
68  ("PhysicsListEMstd", "Electron/Gamma EM-standard physics list")
69  ;
70 
71  // ---
72  def("Construct", Construct,
73  return_value_policy<reference_existing_object>());
74 
75 }
PhysicsListEMstd * Construct()
Definition: pyEMSTDpl.cc:47