Import Geant4 11.1.2 source tree
This commit is contained in:
+11
-1
@@ -6,7 +6,17 @@ It must **not** be used as a substitute for writing good git commit messages!
|
||||
|
||||
-------------------------------------------------------------------------------
|
||||
|
||||
## 2022-12-20 Vladimir Ivanchenko (global-V11-00-34)
|
||||
## 2023-06-15 Gabriele Cosmo (global-V11-00-35)
|
||||
- Updated tag IDs for geant4-11-01-patch-02.
|
||||
|
||||
## 2023-04-06 Gabriele Cosmo
|
||||
- Fixed typo in G4Backtrace class description.
|
||||
Reported in [GitHub PR#57](https://github.com/Geant4/geant4/pull/57).
|
||||
|
||||
## 2023-02-10 Gabriele Cosmo (global-V11-00-34)
|
||||
- Updated tag IDs for geant4-11-01-patch-01.
|
||||
|
||||
## 2022-12-20 Vladimir Ivanchenko
|
||||
- G4DataVector: simplified inline methods in order to remove compilation
|
||||
warnings at some CMSSW platforms
|
||||
|
||||
|
||||
@@ -37,13 +37,13 @@
|
||||
// These should not interfere with debuggers and/or G4FPEDetection.
|
||||
// In order to turn off handling for one or more signals, one can do:
|
||||
//
|
||||
// G4BackTrace::DefaultSignals() = std::set<int>{};
|
||||
// G4BackTrace::DefaultSignals() = std::set<int>{ SIGSEGV };
|
||||
// G4Backtrace::DefaultSignals() = std::set<int>{};
|
||||
// G4Backtrace::DefaultSignals() = std::set<int>{ SIGSEGV };
|
||||
//
|
||||
// and so on, *before* creating the run-manager. After the run-manager
|
||||
// has been created, one should disable the signals:
|
||||
//
|
||||
// G4BackTrace::Disable(G4BackTrace::DefaultSignals());
|
||||
// G4Backtrace::Disable(G4BackTrace::DefaultSignals());
|
||||
//
|
||||
// Additionally, at runtime, the environment variable "G4BACKTRACE" can
|
||||
// be set to select a specific set of signals or none, e.g. in bash:
|
||||
|
||||
@@ -40,11 +40,11 @@
|
||||
// |--> patch number
|
||||
|
||||
#ifndef G4VERSION_NUMBER
|
||||
#define G4VERSION_NUMBER 1111
|
||||
#define G4VERSION_NUMBER 1112
|
||||
#endif
|
||||
|
||||
#ifndef G4VERSION_TAG
|
||||
#define G4VERSION_TAG "$Name: geant4-11-01-patch-01 $"
|
||||
#define G4VERSION_TAG "$Name: geant4-11-01-patch-02 $"
|
||||
#endif
|
||||
|
||||
// as variables
|
||||
@@ -53,10 +53,10 @@
|
||||
#include "G4Types.hh"
|
||||
|
||||
#ifdef G4MULTITHREADED
|
||||
static const G4String G4Version = "$Name: geant4-11-01-patch-01 [MT]$";
|
||||
static const G4String G4Version = "$Name: geant4-11-01-patch-02 [MT]$";
|
||||
#else
|
||||
static const G4String G4Version = "$Name: geant4-11-01-patch-01 $";
|
||||
static const G4String G4Version = "$Name: geant4-11-01-patch-02 $";
|
||||
#endif
|
||||
static const G4String G4Date = "(10-February-2023)";
|
||||
static const G4String G4Date = "(15-June-2023)";
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user