123 lines
4.2 KiB
C++
123 lines
4.2 KiB
C++
//
|
|
// ********************************************************************
|
|
// * License and Disclaimer *
|
|
// * *
|
|
// * The Geant4 software is copyright of the Copyright Holders of *
|
|
// * the Geant4 Collaboration. It is provided under the terms and *
|
|
// * conditions of the Geant4 Software License, included in the file *
|
|
// * LICENSE and available at http://cern.ch/geant4/license . These *
|
|
// * include a list of copyright holders. *
|
|
// * *
|
|
// * Neither the authors of this software system, nor their employing *
|
|
// * institutes,nor the agencies providing financial support for this *
|
|
// * work make any representation or warranty, express or implied, *
|
|
// * regarding this software system or assume any liability for its *
|
|
// * use. Please see the license in the file LICENSE and URL above *
|
|
// * for the full disclaimer and the limitation of liability. *
|
|
// * *
|
|
// * This code implementation is the result of the scientific and *
|
|
// * technical work of the GEANT4 collaboration. *
|
|
// * By using, copying, modifying or distributing the software (or *
|
|
// * any work based on the software) you agree to acknowledge its *
|
|
// * use in resulting scientific publications, and indicate your *
|
|
// * acceptance of all terms of the Geant4 Software license. *
|
|
// ********************************************************************
|
|
//
|
|
// $Id: pymodG4geometry.cc,v 1.9 2007/11/13 08:05:27 kmura Exp $
|
|
// $Name: geant4-09-01 $
|
|
// ====================================================================
|
|
// pymodG4geometry.cc [Geant4Py module]
|
|
//
|
|
// 2005 Q
|
|
// ====================================================================
|
|
#include <boost/python.hpp>
|
|
|
|
using namespace boost::python;
|
|
|
|
// ====================================================================
|
|
// module definition
|
|
// ====================================================================
|
|
void export_G4VTouchable();
|
|
void export_G4TouchableHistory();
|
|
void export_G4VPhysicalVolume();
|
|
void export_G4PVPlacement();
|
|
void export_G4PVReplica();
|
|
void export_G4LogicalVolume();
|
|
void export_G4Region();
|
|
void export_G4VSolid();
|
|
void export_G4Box();
|
|
void export_G4Cons();
|
|
void export_G4Para();
|
|
void export_G4Torus();
|
|
void export_G4Trd();
|
|
void export_G4Orb();
|
|
void export_G4Sphere();
|
|
void export_G4Trap();
|
|
void export_G4Tubs();
|
|
void export_G4Polycone();
|
|
void export_G4Polyhedra();
|
|
void export_G4EllipticalTube();
|
|
void export_G4Ellipsoid();
|
|
void export_G4EllipticalCone();
|
|
void export_G4Hype();
|
|
void export_G4Tet();
|
|
void export_G4TwistedBox();
|
|
void export_G4TwistedTrap();
|
|
void export_G4TwistedTrd();
|
|
void export_G4TwistedTubs();
|
|
void export_G4BooleanSolid();
|
|
void export_G4UnionSolid();
|
|
void export_G4IntersectionSolid();
|
|
void export_G4SubtractionSolid();
|
|
void export_G4TransportationManager();
|
|
void export_G4Navigator();
|
|
void export_G4FieldManager();
|
|
void export_G4Field();
|
|
void export_G4MagneticField();
|
|
void export_G4UniformMagField();
|
|
void export_G4ChordFinder();
|
|
|
|
BOOST_PYTHON_MODULE(G4geometry)
|
|
{
|
|
export_G4VTouchable();
|
|
export_G4TouchableHistory();
|
|
export_G4VPhysicalVolume();
|
|
export_G4PVPlacement();
|
|
export_G4PVReplica();
|
|
export_G4LogicalVolume();
|
|
export_G4Region();
|
|
export_G4VSolid();
|
|
export_G4Box();
|
|
export_G4Cons();
|
|
export_G4Para();
|
|
export_G4Torus();
|
|
export_G4Trd();
|
|
export_G4Orb();
|
|
export_G4Sphere();
|
|
export_G4Trap();
|
|
export_G4Tubs();
|
|
export_G4Polycone();
|
|
export_G4Polyhedra();
|
|
export_G4EllipticalTube();
|
|
export_G4Ellipsoid();
|
|
export_G4EllipticalCone();
|
|
export_G4Hype();
|
|
export_G4Tet();
|
|
export_G4TwistedBox();
|
|
export_G4TwistedTrap();
|
|
export_G4TwistedTrd();
|
|
export_G4TwistedTubs();
|
|
export_G4BooleanSolid();
|
|
export_G4UnionSolid();
|
|
export_G4IntersectionSolid();
|
|
export_G4SubtractionSolid();
|
|
export_G4TransportationManager();
|
|
export_G4Navigator();
|
|
export_G4FieldManager();
|
|
export_G4Field();
|
|
export_G4MagneticField();
|
|
export_G4UniformMagField();
|
|
export_G4ChordFinder();
|
|
}
|
|
|