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_mgt
#
# 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()
+5 -1
View File
@@ -16,6 +16,10 @@ committal in the CVS repository !
* Reverse chronological order (last date on top), please *
----------------------------------------------------------
April 16th, 2021 B. Morgan
- Migrate build to modular CMake API
- tag : : proc-biasmng-V10-07-00
Nov 3rd, 2016, M. Verderi
- remove obsolete BAC_DenyInteraction value in G4BiasingAppliedCase
enum and clean up of obsolete (and commeted out) portion of codes
@@ -49,7 +53,7 @@ November 10th, 2014 M. Verderi
November 7th, 2014 M. Verderi
- G4VBiasingOperation : suppression of DenyProcessPostStepDoIt(...)
as redondant and special case of ApplyFinalStateBiasing(...).
tag : proc-biasmng-V10-00-00
tag : proc-biasmng-V10-00-00
November 22nd, 2013 A.Howard
@@ -1,64 +1,26 @@
#------------------------------------------------------------------------------
# sources.cmake
# Module : G4biasing_mgt
# Package: Geant4.src.G4processes.G4biasing_mgt
#
# 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_mgt module build definition
#
# Define the Geant4 Module.
#
GEANT4_DEFINE_MODULE(NAME G4biasing_mgt
HEADERS
G4VProcessPlacer.hh
G4ProcessPlacer.hh
G4BiasingAppliedCase.hh
G4BiasingOperationManager.hh
G4VBiasingInteractionLaw.hh
G4VBiasingOperation.hh
G4VBiasingOperator.hh
SOURCES
G4VProcessPlacer.cc
G4ProcessPlacer.cc
G4BiasingOperationManager.cc
G4VBiasingOperation.cc
G4VBiasingOperator.cc
GRANULAR_DEPENDENCIES
G4cuts
G4detector
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(G4biasing_mgt
PUBLIC_HEADERS
G4VProcessPlacer.hh
G4ProcessPlacer.hh
G4BiasingAppliedCase.hh
G4BiasingOperationManager.hh
G4VBiasingInteractionLaw.hh
G4VBiasingOperation.hh
G4VBiasingOperator.hh
SOURCES
G4VProcessPlacer.cc
G4ProcessPlacer.cc
G4BiasingOperationManager.cc
G4VBiasingOperation.cc
G4VBiasingOperator.cc)
geant4_module_link_libraries(G4biasing_mgt
PUBLIC
G4globman
G4track
PRIVATE
G4partman
G4procman)