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
@@ -1,17 +0,0 @@
#------------------------------------------------------------------------------
# CMakeLists.txt
# Module : G4biasing
# Package: Geant4.src.G4processes.G4biasing.G4biasing_imp
#
# 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()
+4 -1
View File
@@ -16,11 +16,14 @@ committal in the CVS repository !
* Reverse chronological order (last date on top), please *
----------------------------------------------------------
April 16th, 2021 B. Morgan
- Migrate build to modular CMake API
September 4th, 2020 G.Cosmo
- Fixed Coverity defect warnings for data initialisation and leaks in classes
G4WeightCutOffProcess, G4ImportanceProcess and G4WeightWindowProcess.
February 17th, 2020 V.Ivanchenko
February 17th, 2020 V.Ivanchenko
- G4ImportanceProcess: added process type as fParallel
February 26th, 2018 A.Howard
@@ -1,74 +1,40 @@
#------------------------------------------------------------------------------
# sources.cmake
# Module : G4biasing_imp
# Package: Geant4.src.G4processes.G4biasing_imp
#
# 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
#
#
#------------------------------------------------------------------------------
# G4biasing_imp module build definition
#
# Define the Geant4 Module.
#
GEANT4_DEFINE_MODULE(NAME G4biasing_imp
HEADERS
G4GeometrySampler.hh
G4ImportanceConfigurator.hh
G4ImportanceProcess.hh
G4PlaceOfAction.hh
G4SamplingPostStepAction.hh
G4VSampler.hh
G4VSamplerConfigurator.hh
G4WeightCutOffConfigurator.hh
G4WeightCutOffProcess.hh
G4WeightWindowConfigurator.hh
G4WeightWindowProcess.hh
SOURCES
G4GeometrySampler.cc
G4ImportanceConfigurator.cc
G4ImportanceProcess.cc
G4SamplingPostStepAction.cc
G4VSampler.cc
G4VSamplerConfigurator.cc
G4WeightCutOffConfigurator.cc
G4WeightCutOffProcess.cc
G4WeightWindowConfigurator.cc
G4WeightWindowProcess.cc
GRANULAR_DEPENDENCIES
G4cuts
G4detector
G4emutils
G4geombias
G4geometrymng
G4globman
G4hits
G4intercoms
G4magneticfield
G4materials
G4navigation
G4partman
G4procman
G4track
G4transportation
G4volumes
G4biasing_mgt
GLOBAL_DEPENDENCIES
G4digits_hits
G4geometry
G4global
G4intercoms
G4materials
G4particles
G4track
LINK_LIBRARIES
)
# List any source specific properties here
geant4_add_module(G4biasing_imp
PUBLIC_HEADERS
G4GeometrySampler.hh
G4ImportanceConfigurator.hh
G4ImportanceProcess.hh
G4PlaceOfAction.hh
G4SamplingPostStepAction.hh
G4VSampler.hh
G4VSamplerConfigurator.hh
G4WeightCutOffConfigurator.hh
G4WeightCutOffProcess.hh
G4WeightWindowConfigurator.hh
G4WeightWindowProcess.hh
SOURCES
G4GeometrySampler.cc
G4ImportanceConfigurator.cc
G4ImportanceProcess.cc
G4SamplingPostStepAction.cc
G4VSampler.cc
G4VSamplerConfigurator.cc
G4WeightCutOffConfigurator.cc
G4WeightCutOffProcess.cc
G4WeightWindowConfigurator.cc
G4WeightWindowProcess.cc)
geant4_module_link_libraries(G4biasing_imp
PUBLIC
G4biasing_mgt
G4geombias
G4geometrymng
G4globman
G4magneticfield
G4navigation
G4procman
G4transportation
PRIVATE
G4track)