Import Geant4 10.4.1 source tree

This commit is contained in:
Gabriele Cosmo
2018-03-02 09:34:30 +01:00
parent fc6af9e721
commit fe04dcb406
341 changed files with 18389 additions and 24522 deletions
+4
View File
@@ -17,6 +17,10 @@ committal in the CVS repository !
* Reverse chronological order (last date on top), please *
----------------------------------------------------------
11-December-2017 - G.Cosmo (externals-V10-03-09)
- CLHEP: in MixMaxRng::modadd(), fixed guard for assembly code to protect
builds on 32-bit systems.
15-November-2017 - G.Cosmo (externals-V10-03-08)
- CLHEP: fixed print_state() method to proper C++ in MixMaxRng.
+4
View File
@@ -17,6 +17,10 @@ committal in the CVS repository !
* Reverse chronological order (last date on top), please *
----------------------------------------------------------
11 December 2017 - G.Cosmo
- MixMaxRng: fixed guard for assembly code in modadd() to protect
builds on 32-bit systems.
15 November 2017 - G.Cosmo
- MixMaxRng: fixed print_state() method to proper C++.
+1 -1
View File
@@ -705,7 +705,7 @@ myuint_t MixMaxRng::apply_bigskip( myuint_t* Vout, myuint_t* Vin, myID_t cluster
myuint_t MixMaxRng::modadd(myuint_t foo, myuint_t bar)
{
#if (defined(__x86_64__) || defined(__i386__)) && defined(__GNUC__) && (!defined(__ICC))
#if defined(__x86_64__) && defined(__GNUC__) && (!defined(__ICC))
//#warning Using assembler routine in modadd
myuint_t out;
/* Assembler trick suggested by Andrzej Görlich */