Import Geant4 4.0.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-08 16:18:25 +02:00
parent 36c080dca6
commit 921d3b1cda
3990 changed files with 185376 additions and 82884 deletions
@@ -6,7 +6,7 @@
// and all its terms.
//
// $Id: algorithm,v 1.3 1999/11/16 17:42:57 gcosmo Exp $
// GEANT4 tag $Name: geant4-01-00-ref-01 $
// GEANT4 tag $Name: geant4-04-00 $
//
// ---------------- algorithm ----------------
//
@@ -7,7 +7,7 @@
//
//
// $Id: complex,v 1.3 2000/06/15 17:32:10 gcosmo Exp $
// GEANT4 tag $Name: geant4-01-01-ref-08 $
// GEANT4 tag $Name: geant4-04-00 $
//
// ---------------- complex ----------------
//
@@ -0,0 +1,23 @@
// This code implementation is the intellectual property of
// the authors in the GEANT4 collaboration.
//
// By copying, distributing or modifying the Program (or any work
// based on the Program) you indicate your acceptance of this statement,
// and all its terms.
//
// $Id: deque,v 1.2 2001/10/22 14:33:31 gcosmo Exp $
// GEANT4 tag $Name: geant4-04-00 $
//
// ---------------- deque ----------------
//
#ifndef G4_DEQUE_H
#define G4_DEQUE_H
#ifdef G4USE_OLDSTL
#include <deque.h>
#else
#include <deque>
#endif /* G4USE_OLDSTL */
#endif /* G4_DEQUE_H */
@@ -6,7 +6,7 @@
// and all its terms.
//
// $Id: fstream,v 1.3 1999/11/16 17:43:06 gcosmo Exp $
// GEANT4 tag $Name: geant4-01-00-ref-01 $
// GEANT4 tag $Name: geant4-04-00 $
//
// ---------------- fstream ----------------
//
@@ -6,7 +6,7 @@
// and all its terms.
//
// $Id: functional,v 1.3 1999/11/16 17:43:06 gcosmo Exp $
// GEANT4 tag $Name: geant4-01-00-ref-01 $
// GEANT4 tag $Name: geant4-04-00 $
//
// ---------------- functional ----------------
//
@@ -6,7 +6,7 @@
// and all its terms.
//
// $Id: iomanip,v 1.3 1999/11/16 17:43:08 gcosmo Exp $
// GEANT4 tag $Name: geant4-01-00-ref-01 $
// GEANT4 tag $Name: geant4-04-00 $
//
// ---------------- iomanip ----------------
//
@@ -6,7 +6,7 @@
// and all its terms.
//
// $Id: iostream,v 1.3 1999/11/16 17:43:08 gcosmo Exp $
// GEANT4 tag $Name: geant4-01-00-ref-01 $
// GEANT4 tag $Name: geant4-04-00 $
//
// ---------------- iostream ----------------
//
+1 -1
View File
@@ -6,7 +6,7 @@
// and all its terms.
//
// $Id: list,v 1.1 2000/08/22 07:54:26 hpw Exp $
// GEANT4 tag $Name: $
// GEANT4 tag $Name: geant4-04-00 $
//
// ---------------- list ----------------
//
+1 -1
View File
@@ -6,7 +6,7 @@
// and all its terms.
//
// $Id: map,v 1.3 1999/11/16 17:43:08 gcosmo Exp $
// GEANT4 tag $Name: geant4-01-00-ref-01 $
// GEANT4 tag $Name: geant4-04-00 $
//
// ---------------- map ----------------
//
+1 -1
View File
@@ -6,7 +6,7 @@
// and all its terms.
//
// $Id: queue,v 1.1 2000/08/02 09:49:56 gcosmo Exp $
// GEANT4 tag $Name: $
// GEANT4 tag $Name: geant4-04-00 $
//
// ---------------- queue ----------------
//
+1 -1
View File
@@ -6,7 +6,7 @@
// and all its terms.
//
// $Id: set,v 1.3 1999/11/16 17:43:08 gcosmo Exp $
// GEANT4 tag $Name: geant4-01-00-ref-01 $
// GEANT4 tag $Name: geant4-04-00 $
//
// ---------------- set ----------------
//
@@ -6,7 +6,7 @@
// and all its terms.
//
// $Id: streambuf,v 1.3 1999/11/16 17:43:09 gcosmo Exp $
// GEANT4 tag $Name: geant4-01-00-ref-01 $
// GEANT4 tag $Name: geant4-04-00 $
//
// ---------------- streambuf ----------------
//
@@ -6,7 +6,7 @@
// and all its terms.
//
// $Id: strstream,v 1.3 1999/11/16 17:43:09 gcosmo Exp $
// GEANT4 tag $Name: geant4-01-00-ref-01 $
// GEANT4 tag $Name: geant4-04-00 $
//
// ---------------- strstream ----------------
//
@@ -6,7 +6,7 @@
// and all its terms.
//
// $Id: vector,v 1.3 1999/11/16 17:43:09 gcosmo Exp $
// GEANT4 tag $Name: geant4-01-00-ref-01 $
// GEANT4 tag $Name: geant4-04-00 $
//
// ---------------- vector ----------------
//
@@ -0,0 +1,10 @@
#ifndef __CMATH__
#define __CMATH__
#include <math.h>
inline float abs (float x) { return fabs (x); }
inline double abs (double x) { return fabs (x); }
inline long double abs (long double x) { return fabs (x); }
#endif // __CMATH__
@@ -0,0 +1 @@
#include<stdio.h>
@@ -0,0 +1,8 @@
// The -*- C++ -*- standard library header.
// This file is part of the GNU ANSI C++ Library.
#ifndef __CSTDLIB__
#define __CSTDLIB__
#include <stdlib.h>
#endif
@@ -0,0 +1,8 @@
#ifndef __STD_CSTRING
#define __STD_CSTRING
#include <string.h>
int strcasecmp(const char *s1, const char *s2) { return strcmp(s1,s2); }
#endif /*__STD_CSTRING*/
@@ -0,0 +1,10 @@
#ifndef __CMATH__
#define __CMATH__
#include <math.h>
inline float abs (float x) { return fabs (x); }
inline double abs (double x) { return fabs (x); }
inline long double abs (long double x) { return fabs (x); }
#endif // __CMATH__
@@ -0,0 +1 @@
#include <stdio.h>
@@ -0,0 +1,8 @@
// The -*- C++ -*- standard library header.
// This file is part of the GNU ANSI C++ Library.
#ifndef __CSTDLIB__
#define __CSTDLIB__
#include <stdlib.h>
#endif
@@ -0,0 +1 @@
#include <string>
@@ -0,0 +1 @@
#include <fstream.h>
@@ -0,0 +1 @@
#include <iomanip.h>
@@ -0,0 +1 @@
#include <iostream.h>
@@ -0,0 +1 @@
#include <strstream.h>
@@ -0,0 +1 @@
#include <iostream.h>
@@ -0,0 +1,10 @@
#ifndef __CMATH__
#define __CMATH__
#include <math.h>
inline float abs (float x) { return fabs (x); }
inline double abs (double x) { return fabs (x); }
inline long double abs (long double x) { return fabs (x); }
#endif // __CMATH__
@@ -0,0 +1 @@
#include<stdio.h>
@@ -0,0 +1,8 @@
// The -*- C++ -*- standard library header.
// This file is part of the GNU ANSI C++ Library.
#ifndef __CSTDLIB__
#define __CSTDLIB__
#include <stdlib.h>
#endif
@@ -0,0 +1 @@
#include <string.h>