Import Geant4 11.0.0 source tree
This commit is contained in:
committed by
Ben Morgan
parent
6399a014b6
commit
80e2389dd8
@@ -16,7 +16,6 @@ endif()
|
||||
geant4_add_pymodule(pyG4visualization
|
||||
pyG4ASCIITree.cc
|
||||
pyG4DAWNFILE.cc
|
||||
pyG4HepRep.cc
|
||||
pyG4HepRepFile.cc
|
||||
pyG4OpenGLImmediateX.cc
|
||||
pyG4OpenGLImmediateXm.cc
|
||||
@@ -25,7 +24,6 @@ geant4_add_pymodule(pyG4visualization
|
||||
pyG4RayTracer.cc
|
||||
pyG4RayTracerX.cc
|
||||
pyG4VGraphicsSystem.cc
|
||||
pyG4VRML1File.cc
|
||||
pyG4VRML2File.cc
|
||||
pyG4VisManager.cc
|
||||
pymodG4visualization.cc
|
||||
@@ -37,7 +35,7 @@ target_link_libraries(pyG4visualization PRIVATE
|
||||
G4RayTracer
|
||||
G4VRML
|
||||
G4visHepRep
|
||||
G4vis_management
|
||||
G4vis_management
|
||||
)
|
||||
|
||||
if(GEANT4_USE_OPENGL_X11 OR GEANT4_USE_XM)
|
||||
|
||||
@@ -1,45 +0,0 @@
|
||||
//
|
||||
// ********************************************************************
|
||||
// * 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. *
|
||||
// ********************************************************************
|
||||
//
|
||||
// ====================================================================
|
||||
// pyG4HepRep.cc
|
||||
//
|
||||
// 2005 Q
|
||||
// ====================================================================
|
||||
#include <boost/python.hpp>
|
||||
#include "G4HepRep.hh"
|
||||
|
||||
using namespace boost::python;
|
||||
|
||||
// ====================================================================
|
||||
// module definition
|
||||
// ====================================================================
|
||||
void export_G4HepRep()
|
||||
{
|
||||
class_<G4HepRep, G4HepRep*, bases<G4VGraphicsSystem> >
|
||||
("G4HepRep", "HepRep visualization module")
|
||||
;
|
||||
}
|
||||
|
||||
@@ -1,45 +0,0 @@
|
||||
//
|
||||
// ********************************************************************
|
||||
// * 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. *
|
||||
// ********************************************************************
|
||||
//
|
||||
// ====================================================================
|
||||
// pyG4VRML1File.cc
|
||||
//
|
||||
// 2005 Q
|
||||
// ====================================================================
|
||||
#include <boost/python.hpp>
|
||||
#include "G4VRML1File.hh"
|
||||
|
||||
using namespace boost::python;
|
||||
|
||||
// ====================================================================
|
||||
// module definition
|
||||
// ====================================================================
|
||||
void export_G4VRML1File()
|
||||
{
|
||||
class_<G4VRML1File, G4VRML1File*, bases<G4VGraphicsSystem> >
|
||||
("G4VRML1File", "VRML-1(file) visualization module")
|
||||
;
|
||||
}
|
||||
|
||||
@@ -38,10 +38,8 @@ using namespace boost::python;
|
||||
|
||||
void export_G4VisManager();
|
||||
void export_G4VGraphicsSystem();
|
||||
void export_G4VRML1File();
|
||||
void export_G4VRML2File();
|
||||
void export_G4DAWNFILE();
|
||||
void export_G4HepRep();
|
||||
void export_G4HepRepFile();
|
||||
void export_G4ASCIITree();
|
||||
void export_G4RayTracer();
|
||||
@@ -60,14 +58,12 @@ void export_G4OpenGLImmediateXm();
|
||||
void export_G4RayTracerX();
|
||||
#endif
|
||||
|
||||
BOOST_PYTHON_MODULE(G4visualization)
|
||||
BOOST_PYTHON_MODULE(G4visualization)
|
||||
{
|
||||
export_G4VisManager();
|
||||
export_G4VGraphicsSystem();
|
||||
export_G4VRML1File();
|
||||
export_G4VRML2File();
|
||||
export_G4DAWNFILE();
|
||||
export_G4HepRep();
|
||||
export_G4HepRepFile();
|
||||
export_G4ASCIITree();
|
||||
export_G4RayTracer();
|
||||
|
||||
Reference in New Issue
Block a user