Import Geant4 11.0.0.beta source tree

This commit is contained in:
Gabriele Cosmo
2021-06-25 16:12:29 +02:00
parent c968e26a39
commit 6399a014b6
4200 changed files with 207479 additions and 237366 deletions
-17
View File
@@ -1,17 +0,0 @@
#------------------------------------------------------------------------------
# CMakeLists.txt
# Module : G4scoring
# Package: Geant4.src.G4processes.G4scoring
#
# CMakeLists.txt for building a single granular library.
#
# Generated on : 24/9/2010
#
#
#------------------------------------------------------------------------------
if(GEANT4_BUILD_GRANULAR_LIBS)
include(Geant4MacroLibraryTargets)
GEANT4_GRANULAR_LIBRARY_TARGET(COMPONENT sources.cmake)
endif()
+11 -8
View File
@@ -16,12 +16,15 @@ committal in the CVS repository !
* Reverse chronological order (last date on top), please *
----------------------------------------------------------
April 16, 2021, Ben Morgan (procscore-V10-07-00)
- Migrate build to modular CMake API
May 13, 2020, M. Asai (procscore-V10-06-01)
- G4ParallelWorldProcess.hh: make some private methods and data members
protected so that this class can be extendable.
February 10, 2020, V. Ivanchenko (procscore-V10-06-00)
- G4ParallelWorldProcess.cc, G4ParallelWorldScoringProcess.cc
- G4ParallelWorldProcess.cc, G4ParallelWorldScoringProcess.cc
- use new PDG code for optical photon "-22"
November 24, 2018, M. Asai (procscore-V10-04-01)
@@ -47,8 +50,8 @@ July 13, 2015, A. Dotti (procscore-V10-01-01)
February 12, 2015, J.Apostolakis (procscore-V10-01-00)
- G4ParallelWorldProcess: verbosity to check Update of fieldtrack
(protected with custom flag. )
(protected with custom flag. )
November 20, 2014, M.Asai (procscore-V10-00-01)
- Coverity fixes.
@@ -70,7 +73,7 @@ March 17, 2013, M.Asai (procscore-V09-06-01)
GeomNav1002.
March 27, 2013, M.Asai (procscore-V09-06-00)
- G4ParallelWorldProcess now sets G4Navigator::SetPushVerbosity(false)
- G4ParallelWorldProcess now sets G4Navigator::SetPushVerbosity(false)
for the navigator of the parallel world to reduce the warning message
GeomNav1002.
@@ -87,9 +90,9 @@ October 9, 2012, M.Asai (procscore-V09-05-04)
- Fix a compilation warning.
October 5, 2012, M.Asai (procscore-V09-05-03)
- Introducing "HyperStep" G4Step object owned by G4ParallelWorldProcess,
- Introducing "HyperStep" G4Step object owned by G4ParallelWorldProcess,
which may possess touchables in pre- and post-step points belonging
in different worlds.
in different worlds.
July 10, 2012, G.Cosmo (procscore-V09-05-02)
- Explicitly use inclusion of headers for system of units and physical
@@ -136,8 +139,8 @@ November 23, 2010 J.Apostolakis (procscore-V09-03-00)
in a Voxel-based "Regular" volume.
Requires tag in run, "run-V09-03-08".
November 18, 2010 J.Apostolakis
- Added G4EnergySplitter (created by Pedro Arce)
November 18, 2010 J.Apostolakis
- Added G4EnergySplitter (created by Pedro Arce)
September 7th, 2008 M.Asai (procscore-V09-01-01)
- Correction of incorrect modification in the previous tag.
+31 -61
View File
@@ -1,64 +1,34 @@
#------------------------------------------------------------------------------
# sources.cmake
# Module : G4scoring
# Package: Geant4.src.G4processes.G4scoring
#
# Sources description for a library.
# Lists the sources and headers of the code explicitly.
# Lists include paths needed.
# Lists the internal granular and global dependencies of the library.
# Source specific properties should be added at the end.
#
# Generated on : 24/9/2010
#
#
#------------------------------------------------------------------------------
# - G4scoring module build definition
#
# Define the Geant4 Module.
#
GEANT4_DEFINE_MODULE(NAME G4scoring
HEADERS
G4EnergySplitter.hh
G4EnergySplitter.icc
G4ParallelWorldProcess.hh
G4ParallelWorldProcessStore.hh
G4ParallelWorldScoringProcess.hh
G4ScoreSplittingProcess.hh
SOURCES
G4EnergySplitter.cc
G4ParallelWorldProcess.cc
G4ParallelWorldProcessStore.cc
G4ParallelWorldScoringProcess.cc
G4ScoreSplittingProcess.cc
GRANULAR_DEPENDENCIES
G4cuts
G4detector
G4muons
G4emutils
G4geombias
G4geometrymng
G4globman
G4hits
G4intercoms
G4magneticfield
G4materials
G4navigation
G4partman
G4procman
G4track
G4transportation
G4volumes
GLOBAL_DEPENDENCIES
G4digits_hits
G4geometry
G4global
G4intercoms
G4materials
G4particles
G4track
LINK_LIBRARIES
)
# List any source specific properties here
geant4_add_module(G4scoring
PUBLIC_HEADERS
G4EnergySplitter.hh
G4EnergySplitter.icc
G4ParallelWorldProcess.hh
G4ParallelWorldProcessStore.hh
G4ParallelWorldScoringProcess.hh
G4ScoreSplittingProcess.hh
SOURCES
G4EnergySplitter.cc
G4ParallelWorldProcess.cc
G4ParallelWorldProcessStore.cc
G4ParallelWorldScoringProcess.cc
G4ScoreSplittingProcess.cc)
geant4_module_link_libraries(G4scoring
PUBLIC
G4geometrymng
G4globman
G4intercoms
G4magneticfield
G4navigation
G4procman
PRIVATE
G4cuts
G4detector
G4emutils
G4materials
G4muons
G4partman
G4track)