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

Go to the source code of this file.

Classes

struct  pyG4VUserDetectorConstruction::CB_G4VUserDetectorConstruction
 

Namespaces

 pyG4VUserDetectorConstruction
 

Functions

void export_G4VUserDetectorConstruction ()
 

Function Documentation

void export_G4VUserDetectorConstruction ( )

Definition at line 58 of file pyG4VUserDetectorConstruction.cc.

References pyExN03geom::Construct().

Referenced by BOOST_PYTHON_MODULE().

59 {
60  class_<CB_G4VUserDetectorConstruction, CB_G4VUserDetectorConstruction*,
61  boost::noncopyable>
62  ("G4VUserDetectorConstruction",
63  "base class of user detector construction")
64 
65  .def("Construct",
67  return_value_policy<reference_existing_object>())
68  ;
69 }
void Construct()
Definition: pyExN01geom.cc:47