Import Geant4 5.2.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-09 10:28:22 +02:00
parent fbd4999cf7
commit 4aea781e80
5454 changed files with 223141 additions and 67347 deletions
+3 -14
View File
@@ -6,25 +6,14 @@
// and all its terms.
//
//
// $Id: complex,v 1.3 2000/06/15 17:32:10 gcosmo Exp $
// GEANT4 tag $Name: geant4-05-01 $
// $Id: complex,v 1.4 2003/06/06 16:17:15 gcosmo Exp $
// GEANT4 tag $Name: geant4-05-02 $
//
// ---------------- complex ----------------
//
#ifndef G4_COMPLEX_H
#define G4_COMPLEX_H
#ifndef G4USE_STD_NAMESPACE
#if defined(__hpux) || defined(__linux)
#include <complex>
typedef complex<double> G4complex;
#else
#include <complex.h>
typedef complex G4complex;
#endif
#else
#include <complex>
typedef std::complex<double> G4complex;
#endif
#include <complex>
#endif /* G4_COMPLEX_H */