Import Geant4 11.2.2 source tree
This commit is contained in:
@@ -6,6 +6,16 @@ It must **not** be used as a substitute for writing good git commit messages!
|
||||
|
||||
-------------------------------------------------------------------------------
|
||||
|
||||
## 2024-05-02 Gabriele Cosmo (hadr-lend-V11-01-04)
|
||||
- Fixed compilation warnings for potentially initialised local variables in
|
||||
ptwXY_createFromFunctionZeroCrossing().
|
||||
|
||||
## 2024-04-24 Pere Mato
|
||||
- Math macros such as M_PI are not standard. To define them the macro
|
||||
_USE_MATH_DEFINES needs to be defined before including <cmath>.
|
||||
- macro WIN32 is not standard, the correect macro is _WIN32.
|
||||
- <BaseTsd.h> should be <basetsd.h> for MinGW.
|
||||
|
||||
## 2024-01-29 Vladimir Ivanchenko (hadr-lend-V11-01-03)
|
||||
- MCGIDI_product, MCGIDI_outputChannel, MCGIDI_distribution - fixed alma9-gcc131
|
||||
compilation warnings seen in CMSSW
|
||||
|
||||
@@ -9,10 +9,6 @@
|
||||
#define MCGIDI_VERSION_MINOR 0
|
||||
#define MCGIDI_VERSION_PATCHLEVEL 0
|
||||
|
||||
#ifdef WIN32
|
||||
#define M_PI 3.141592653589793238463
|
||||
#endif
|
||||
|
||||
#include <GIDI_settings.hh>
|
||||
#include <map>
|
||||
#include <vector>
|
||||
|
||||
@@ -6,15 +6,12 @@
|
||||
#ifndef specialFunctions_h_included
|
||||
#define specialFunctions_h_included
|
||||
|
||||
#define _USE_MATH_DEFINES
|
||||
#include <math.h>
|
||||
#include <float.h>
|
||||
|
||||
#include "nf_utilities.h"
|
||||
|
||||
#ifdef WIN32
|
||||
#define M_PI 3.141592653589793238463
|
||||
#endif
|
||||
|
||||
#if defined __cplusplus
|
||||
extern "C" {
|
||||
namespace GIDI {
|
||||
|
||||
@@ -3,11 +3,9 @@
|
||||
# <<END-copyright>>
|
||||
*/
|
||||
#include <string.h>
|
||||
#define _USE_MATH_DEFINES
|
||||
#include <cmath>
|
||||
|
||||
#ifdef WIN32
|
||||
#define M_PI 3.141592653589793238463
|
||||
#endif
|
||||
|
||||
#include "MCGIDI_fromTOM.h"
|
||||
#include "MCGIDI_misc.h"
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
# <<END-copyright>>
|
||||
*/
|
||||
#include <string.h>
|
||||
#define _USE_MATH_DEFINES
|
||||
#include <cmath>
|
||||
|
||||
#include "MCGIDI.h"
|
||||
|
||||
@@ -54,6 +54,7 @@
|
||||
*/
|
||||
|
||||
#include <stdlib.h>
|
||||
#define _USE_MATH_DEFINES
|
||||
#include <cmath>
|
||||
|
||||
#include "nf_specialFunctions.h"
|
||||
|
||||
@@ -120,7 +120,7 @@ static nfu_status ptwXY_createFromFunctionZeroCrossing( ptwXYPoints *ptwXY, doub
|
||||
if ( y2 == y1 ) return ( nfu_badInput );
|
||||
|
||||
int i;
|
||||
double x, y;
|
||||
double x = 0, y = 0;
|
||||
nfu_status status;
|
||||
|
||||
for( i = 0; i < 16; i++ ) {
|
||||
|
||||
@@ -11,8 +11,8 @@
|
||||
#include <fcntl.h>
|
||||
#include <errno.h>
|
||||
|
||||
#if defined(WIN32) || defined(__MINGW32__)
|
||||
#include <BaseTsd.h>
|
||||
#if defined(_WIN32)
|
||||
#include <basetsd.h>
|
||||
#include <io.h>
|
||||
#include <windows.h>
|
||||
#define realpath( a, b ) GetFullPathName( a, PATH_MAX, b, NULL )
|
||||
|
||||
Reference in New Issue
Block a user