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

Go to the source code of this file.

Namespaces

 pyQgeom
 

Functions

void pyQgeom::Construct ()
 
 BOOST_PYTHON_MODULE (Qgeom)
 

Function Documentation

BOOST_PYTHON_MODULE ( Qgeom  )

Definition at line 61 of file pyQgeom.cc.

References pyQgeom::Construct().

61  {
62 
63  class_<QDetectorConstruction, QDetectorConstruction*,
64  bases<G4VUserDetectorConstruction> >
65  ("QDetectorConstruction", "my detector")
66  ;
67 
68  // ---
69  def("Construct", Construct);
70 }
void Construct()
Definition: pyQgeom.cc:47