Import Geant4 9.1.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-09 15:37:50 +02:00
parent a8e9364cea
commit 96c8bcd0af
6923 changed files with 198390 additions and 41849 deletions
@@ -1,5 +1,5 @@
# $Id: GNUmakefile,v 1.1 2006/11/20 08:53:12 kmura Exp $
# $Name: geant4-09-00 $
# $Name: geant4-09-01 $
# ===========================================================
# Makefile for building Geant4Py modules
# ===========================================================
@@ -23,12 +23,12 @@
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
// $Id: pyPhysicsLists.cc,v 1.3 2007/06/07 09:06:43 kmura Exp $
// $Name: geant4-09-00 $
// $Id: pyPhysicsLists.cc,v 1.5 2007/11/25 19:40:13 kmura Exp $
// $Name: geant4-09-01 $
// ====================================================================
// pyPhysicsLists.cc
//
// 2005 Q
// 2007 Q
// ====================================================================
#include <boost/python.hpp>
#include "pyG4Version.hh"
@@ -82,6 +82,14 @@
#include "QGSP_NQE.hh"
#endif
#if G4VERSION_NUMBER >= 910
#include "FTFP_BERT.hh"
#include "FTF_BIC.hh"
#include "QGSC_BERT.hh"
#include "QGS_BIC.hh"
#include "QGSP_BIC2.hh"
#endif
using namespace boost::python;
// ====================================================================
@@ -240,5 +248,23 @@ void export_PhysicsLists()
;
#endif
#if G4VERSION_NUMBER >= 910
class_<FTFP_BERT, FTFP_BERT*, bases<G4VUserPhysicsList> >
("FTFP_BERT", "FTFP_BERT physics list")
;
class_<FTF_BIC, FTF_BIC*, bases<G4VUserPhysicsList> >
("FTF_BIC", "FTFP_BIC physics list")
;
class_<QGSC_BERT, QGSC_BERT*, bases<G4VUserPhysicsList> >
("QGSC_BERT", "QGSC_BERT physics list")
;
class_<QGS_BIC, QGS_BIC*, bases<G4VUserPhysicsList> >
("QGS_BIC", "QGS_BIC physics list")
;
class_<QGSP_BIC2, QGSP_BIC2*, bases<G4VUserPhysicsList> >
("QGSP_BIC2", "QGSP_BIC2 physics list")
;
#endif
}
@@ -24,7 +24,7 @@
// ********************************************************************
//
// $Id: pymodG4physicslists.cc,v 1.2 2007/05/28 03:11:20 kmura Exp $
// $Name: geant4-09-00 $
// $Name: geant4-09-01 $
// ====================================================================
// pymodG4physicslists.cc [Geant4Py module]
//