Import Geant4 8.0.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-09 14:36:02 +02:00
parent d93e1e39a9
commit 8a51e0bc40
5471 changed files with 99628 additions and 55248 deletions
+1 -1
View File
@@ -22,7 +22,7 @@
//
//
// $Id: G3DetTable.cc,v 1.11 2003/06/16 16:50:47 gunter Exp $
// GEANT4 tag $Name: geant4-07-01 $
// GEANT4 tag $Name: geant4-08-00 $
//
#include "globals.hh"
#include "G3DetTable.hh"
+1 -1
View File
@@ -22,7 +22,7 @@
//
//
// $Id: G3DetTableEntry.cc,v 1.4 2001/07/11 09:58:58 gunter Exp $
// GEANT4 tag $Name: geant4-07-01 $
// GEANT4 tag $Name: geant4-08-00 $
//
#include "globals.hh"
#include "G3DetTableEntry.hh"
+1 -1
View File
@@ -22,7 +22,7 @@
//
//
// $Id: G3Division.cc,v 1.16 2004/12/07 08:33:38 gcosmo Exp $
// GEANT4 tag $Name: geant4-07-01 $
// GEANT4 tag $Name: geant4-08-00 $
//
// by I.Hrivnacova, V.Berejnoi 13.10.99
+4 -4
View File
@@ -21,12 +21,12 @@
// ********************************************************************
//
//
// $Id: G3EleTable.cc,v 1.13 2003/06/16 16:50:49 gunter Exp $
// GEANT4 tag $Name: geant4-07-01 $
// $Id: G3EleTable.cc,v 1.15 2005/11/14 18:21:22 gcosmo Exp $
// GEANT4 tag $Name: geant4-08-00 $
//
#include "G4Types.hh"
#include "G4strstreambuf.hh"
#include <sstream>
#include "G4ios.hh"
#include "G3EleTable.hh"
@@ -63,7 +63,7 @@ G3EleTable::parse(G4double& Z, char* name, char* sym, G4double& A){
G4int rc = 0;
if (Z>0 && Z <=_MaxEle){
G4int z = (G4int) Z-1;
std::istrstream in(_EleNames[z]);
std::istringstream in(_EleNames[z]);
in >> name >> sym >> A;
} else {
rc = -1;
+1 -1
View File
@@ -22,7 +22,7 @@
//
//
// $Id: G3MatTable.cc,v 1.15 2001/07/16 15:38:20 gcosmo Exp $
// GEANT4 tag $Name: geant4-07-01 $
// GEANT4 tag $Name: geant4-08-00 $
//
// by I.Hrivnacova, 27 Sep 99
+1 -1
View File
@@ -22,7 +22,7 @@
//
//
// $Id: G3MatTableEntry.cc,v 1.3 2001/07/11 09:58:59 gunter Exp $
// GEANT4 tag $Name: geant4-07-01 $
// GEANT4 tag $Name: geant4-08-00 $
//
// by I.Hrivnacova, 27 Sep 99
+1 -1
View File
@@ -22,7 +22,7 @@
//
//
// $Id: G3MedTable.cc,v 1.14 2003/01/27 10:45:48 gcosmo Exp $
// GEANT4 tag $Name: geant4-07-01 $
// GEANT4 tag $Name: geant4-08-00 $
//
// by I.Hrivnacova, 27 Sep 99
+1 -1
View File
@@ -22,7 +22,7 @@
//
//
// $Id: G3MedTableEntry.cc,v 1.3 2001/07/11 09:58:59 gunter Exp $
// GEANT4 tag $Name: geant4-07-01 $
// GEANT4 tag $Name: geant4-08-00 $
//
// by I.Hrivnacova, 27 Sep 99
+1 -1
View File
@@ -22,7 +22,7 @@
//
//
// $Id: G3NegVolPars.cc,v 1.12 2005/06/27 15:28:27 gunter Exp $
// GEANT4 tag $Name: geant4-07-01 $
// GEANT4 tag $Name: geant4-08-00 $
//
// modified by I. Hrivnacova, 13.10.99
+5 -6
View File
@@ -21,12 +21,12 @@
// ********************************************************************
//
//
// $Id: G3PartTable.cc,v 1.12 2003/06/16 16:50:51 gunter Exp $
// GEANT4 tag $Name: geant4-07-01 $
// $Id: G3PartTable.cc,v 1.13 2005/11/14 18:21:22 gcosmo Exp $
// GEANT4 tag $Name: geant4-08-00 $
//
#include "G4Types.hh"
#include <strstream>
#include <sstream>
#include <iomanip>
#include "G3PartTable.hh"
@@ -63,10 +63,9 @@ G3PartTable::Put(G4int partid, G4ParticleDefinition *partpt){
void
G3PartTable::HashID(G4int partid, G4String& theHashID){
char s[20];
std::ostrstream ostr(s, sizeof s);
std::ostringstream ostr;
ostr << "Part" << partid << std::ends;
theHashID = s;
theHashID = ostr.str();
}
void
+1 -1
View File
@@ -22,7 +22,7 @@
//
//
// $Id: G3Pos.cc,v 1.8 2001/07/11 09:58:59 gunter Exp $
// GEANT4 tag $Name: geant4-07-01 $
// GEANT4 tag $Name: geant4-08-00 $
//
// modified by I.Hrivnacova, 13.10.99
+1 -1
View File
@@ -22,7 +22,7 @@
//
//
// $Id: G3RotTable.cc,v 1.15 2001/07/16 15:38:21 gcosmo Exp $
// GEANT4 tag $Name: geant4-07-01 $
// GEANT4 tag $Name: geant4-08-00 $
//
// by I.Hrivnacova, 27 Sep 99
+1 -1
View File
@@ -22,7 +22,7 @@
//
//
// $Id: G3RotTableEntry.cc,v 1.3 2001/07/11 09:58:59 gunter Exp $
// GEANT4 tag $Name: geant4-07-01 $
// GEANT4 tag $Name: geant4-08-00 $
//
// by I.Hrivnacova, 27 Sep 99
+1 -1
View File
@@ -22,7 +22,7 @@
//
//
// $Id: G3VolTable.cc,v 1.21 2003/06/16 16:50:52 gunter Exp $
// GEANT4 tag $Name: geant4-07-01 $
// GEANT4 tag $Name: geant4-08-00 $
//
// modified by I.Hrivnacova, 13.10.99
+1 -1
View File
@@ -22,7 +22,7 @@
//
//
// $Id: G3VolTableEntry.cc,v 1.11 2003/06/16 16:50:53 gunter Exp $
// GEANT4 tag $Name: geant4-07-01 $
// GEANT4 tag $Name: geant4-08-00 $
//
// modified by I.Hrivnacova, 13.10.99
+1 -1
View File
@@ -6,7 +6,7 @@
// and all its terms.
//
// $Id: G3fillParams.cc.archive,v 1.2 2003/06/16 16:50:54 gunter Exp $
// GEANT4 tag $Name: geant4-07-01 $
// GEANT4 tag $Name: geant4-08-00 $
//
// extracted from clparse.cc by I. Hrivnacova, 30.7.99
+1 -1
View File
@@ -22,7 +22,7 @@
//
//
// $Id: G3toG4BuildTree.cc,v 1.19 2005/05/26 14:18:11 gcosmo Exp $
// GEANT4 tag $Name: geant4-07-01 $
// GEANT4 tag $Name: geant4-08-00 $
//
// modified by I. Hrivnacova, 2.8.99
+1 -1
View File
@@ -22,7 +22,7 @@
//
//
// $Id: G3toG4MANY.cc,v 1.1 2001/11/08 16:08:01 gcosmo Exp $
// GEANT4 tag $Name: geant4-07-01 $
// GEANT4 tag $Name: geant4-08-00 $
//
// By I. Hrivnacova, 22.10.01
+1 -1
View File
@@ -22,7 +22,7 @@
//
//
// $Id: G3toG4MakeSolid.cc,v 1.9 2001/07/16 15:38:21 gcosmo Exp $
// GEANT4 tag $Name: geant4-07-01 $
// GEANT4 tag $Name: geant4-08-00 $
//
// modified by I.Hrivnacova, V.Berejnoi 27 Sep 99
+1 -1
View File
@@ -22,7 +22,7 @@
//
//
// $Id: G3toG4RotationMatrix.cc,v 1.3 2001/07/11 09:59:00 gunter Exp $
// GEANT4 tag $Name: geant4-07-01 $
// GEANT4 tag $Name: geant4-08-00 $
#include "G3toG4RotationMatrix.hh"
+1 -1
View File
@@ -22,7 +22,7 @@
//
//
// $Id: G4BuildGeom.cc,v 1.16 2003/06/16 16:50:55 gunter Exp $
// GEANT4 tag $Name: geant4-07-01 $
// GEANT4 tag $Name: geant4-08-00 $
//
// modified by I. Hrivnacova, 13.10.99
+1 -1
View File
@@ -22,7 +22,7 @@
//
//
// $Id: G4ggclos.cc,v 1.7 2001/07/11 09:59:00 gunter Exp $
// GEANT4 tag $Name: geant4-07-01 $
// GEANT4 tag $Name: geant4-08-00 $
#include "G3toG4.hh"
#include "G3VolTable.hh"
+1 -1
View File
@@ -22,7 +22,7 @@
//
//
// $Id: G4gsatt.cc,v 1.12 2003/04/03 11:30:54 gcosmo Exp $
// GEANT4 tag $Name: geant4-07-01 $
// GEANT4 tag $Name: geant4-08-00 $
#include "globals.hh"
#include "G3toG4.hh"
+1 -1
View File
@@ -22,7 +22,7 @@
//
//
// $Id: G4gsbool.cc,v 1.1 2001/11/08 16:08:01 gcosmo Exp $
// GEANT4 tag $Name: geant4-07-01 $
// GEANT4 tag $Name: geant4-08-00 $
//
// by I.Hrivnacova, 13.10.01
+1 -1
View File
@@ -22,7 +22,7 @@
//
//
// $Id: G4gsdet.cc,v 1.4 2001/07/11 09:59:00 gunter Exp $
// GEANT4 tag $Name: geant4-07-01 $
// GEANT4 tag $Name: geant4-08-00 $
#include "globals.hh"
#include "G3toG4.hh"
+1 -1
View File
@@ -22,7 +22,7 @@
//
//
// $Id: G4gsdeta.cc,v 1.5 2001/07/11 09:59:00 gunter Exp $
// GEANT4 tag $Name: geant4-07-01 $
// GEANT4 tag $Name: geant4-08-00 $
//
//
// modified by I.Hrivnacova, 6 Oct 99
+1 -1
View File
@@ -22,7 +22,7 @@
//
//
// $Id: G4gsdetd.cc,v 1.7 2003/04/03 11:30:54 gcosmo Exp $
// GEANT4 tag $Name: geant4-07-01 $
// GEANT4 tag $Name: geant4-08-00 $
#include "G3toG4.hh"
#include "G3DetTable.hh"
+1 -1
View File
@@ -22,7 +22,7 @@
//
//
// $Id: G4gsdeth.cc,v 1.7 2003/04/03 11:30:54 gcosmo Exp $
// GEANT4 tag $Name: geant4-07-01 $
// GEANT4 tag $Name: geant4-08-00 $
#include "G3toG4.hh"
#include "G3DetTable.hh"
+1 -1
View File
@@ -22,7 +22,7 @@
//
//
// $Id: G4gsdetu.cc,v 1.5 2003/04/03 11:30:55 gcosmo Exp $
// GEANT4 tag $Name: geant4-07-01 $
// GEANT4 tag $Name: geant4-08-00 $
#include "G3toG4.hh"
+1 -1
View File
@@ -22,7 +22,7 @@
//
//
// $Id: G4gsdetv.cc,v 1.9 2003/04/03 11:30:55 gcosmo Exp $
// GEANT4 tag $Name: geant4-07-01 $
// GEANT4 tag $Name: geant4-08-00 $
#include "G4ios.hh"
#include "G3toG4.hh"
+1 -1
View File
@@ -22,7 +22,7 @@
//
//
// $Id: G4gsdk.cc,v 1.6 2003/04/03 11:30:55 gcosmo Exp $
// GEANT4 tag $Name: geant4-07-01 $
// GEANT4 tag $Name: geant4-08-00 $
#include "G4Decay.hh"
#include "G3toG4.hh"
+1 -1
View File
@@ -22,7 +22,7 @@
//
//
// $Id: G4gsdvn.cc,v 1.9 2003/04/03 11:30:55 gcosmo Exp $
// GEANT4 tag $Name: geant4-07-01 $
// GEANT4 tag $Name: geant4-08-00 $
//
// by I.Hrivnacova, V.Berejnoi, 29 Oct 99
+1 -1
View File
@@ -22,7 +22,7 @@
//
//
// $Id: G4gsdvn2.cc,v 1.7 2001/07/11 09:59:01 gunter Exp $
// GEANT4 tag $Name: geant4-07-01 $
// GEANT4 tag $Name: geant4-08-00 $
//
// by I.Hrivnacova, V.Berejnoi, 29 Oct 99
+1 -1
View File
@@ -22,7 +22,7 @@
//
//
// $Id: G4gsdvt.cc,v 1.6 2001/07/11 09:59:01 gunter Exp $
// GEANT4 tag $Name: geant4-07-01 $
// GEANT4 tag $Name: geant4-08-00 $
//
// by I.Hrivnacova, V.Berejnoi, 29 Oct 99
+1 -1
View File
@@ -22,7 +22,7 @@
//
//
// $Id: G4gsdvt2.cc,v 1.6 2001/07/11 09:59:01 gunter Exp $
// GEANT4 tag $Name: geant4-07-01 $
// GEANT4 tag $Name: geant4-08-00 $
//
// by I.Hrivnacova, V.Berejnoi, 29 Oct 99
+1 -1
View File
@@ -22,7 +22,7 @@
//
//
// $Id: G4gsdvx.cc,v 1.4 2001/07/11 09:59:01 gunter Exp $
// GEANT4 tag $Name: geant4-07-01 $
// GEANT4 tag $Name: geant4-08-00 $
//
// by I.Hrivnacova, V.Berejnoi, 27 Sep 99
+1 -1
View File
@@ -22,7 +22,7 @@
//
//
// $Id: G4gsmate.cc,v 1.11 2005/06/27 15:28:30 gunter Exp $
// GEANT4 tag $Name: geant4-07-01 $
// GEANT4 tag $Name: geant4-08-00 $
//
// by I.Hrivnacova, 27 Sep 99
+2 -3
View File
@@ -21,14 +21,13 @@
// ********************************************************************
//
//
// $Id: G4gsmixt.cc,v 1.11 2004/12/07 08:33:38 gcosmo Exp $
// GEANT4 tag $Name: geant4-07-01 $
// $Id: G4gsmixt.cc,v 1.12 2005/11/14 18:21:22 gcosmo Exp $
// GEANT4 tag $Name: geant4-08-00 $
//
// by I.Hrivnacova, 27 Sep 99
#include "globals.hh"
#include <iomanip>
#include <strstream>
#include <iomanip>
#include "G3toG4.hh"
+1 -1
View File
@@ -22,7 +22,7 @@
//
//
// $Id: G4gspart.cc,v 1.6 2003/04/03 11:30:56 gcosmo Exp $
// GEANT4 tag $Name: geant4-07-01 $
// GEANT4 tag $Name: geant4-08-00 $
//
#include "G4ProcessManager.hh"
#include "G3toG4.hh"
+1 -1
View File
@@ -22,7 +22,7 @@
//
//
// $Id: G4gspos.cc,v 1.12 2001/07/11 09:59:02 gunter Exp $
// GEANT4 tag $Name: geant4-07-01 $
// GEANT4 tag $Name: geant4-08-00 $
//
// by I.Hrivnacova, 13.10.99
+1 -1
View File
@@ -22,7 +22,7 @@
//
//
// $Id: G4gsposp.cc,v 1.15 2002/10/23 17:21:18 gcosmo Exp $
// GEANT4 tag $Name: geant4-07-01 $
// GEANT4 tag $Name: geant4-08-00 $
//
// by I.Hrivnacova, 13.10.99
+1 -1
View File
@@ -22,7 +22,7 @@
//
//
// $Id: G4gsrotm.cc,v 1.11 2004/12/07 08:33:38 gcosmo Exp $
// GEANT4 tag $Name: geant4-07-01 $
// GEANT4 tag $Name: geant4-08-00 $
//
#include "G3toG4.hh"
#include "G3RotTable.hh"
+1 -1
View File
@@ -22,7 +22,7 @@
//
//
// $Id: G4gstmed.cc,v 1.6 2003/04/03 11:30:56 gcosmo Exp $
// GEANT4 tag $Name: geant4-07-01 $
// GEANT4 tag $Name: geant4-08-00 $
//
// The last G4int argument of G4gstmed(..) is used for sending
// info whether the Geant3 tracking medium parameters should
+1 -1
View File
@@ -22,7 +22,7 @@
//
//
// $Id: G4gstpar.cc,v 1.7 2003/04/03 11:30:56 gcosmo Exp $
// GEANT4 tag $Name: geant4-07-01 $
// GEANT4 tag $Name: geant4-08-00 $
//
#include "G3toG4.hh"
#include "G3VolTable.hh"
+1 -1
View File
@@ -22,7 +22,7 @@
//
//
// $Id: G4gsvolu.cc,v 1.9 2003/06/16 16:50:57 gunter Exp $
// GEANT4 tag $Name: geant4-07-01 $
// GEANT4 tag $Name: geant4-08-00 $
//
// by I.Hrivnacova, 13.10.99
+1 -1
View File
@@ -22,7 +22,7 @@
//
//
// $Id: clparse.cc,v 1.17 2004/12/07 08:33:38 gcosmo Exp $
// GEANT4 tag $Name: geant4-07-01 $
// GEANT4 tag $Name: geant4-08-00 $
//
// modified by I.Hrivnacova
// added G3SensVol
+1 -1
View File
@@ -22,7 +22,7 @@
*
*
* $Id: g3routines.F,v 1.4 2001/07/11 09:59:02 gunter Exp $
* GEANT4 tag $Name: geant4-07-01 $
* GEANT4 tag $Name: geant4-08-00 $
*
#define CALL_GEANT
+1 -1
View File
@@ -6,7 +6,7 @@
* and all its terms.
*
* $Id: g3test.F.main,v 1.2 1999/12/05 17:50:16 gcosmo Exp $
* GEANT4 tag $Name: geant4-07-01 $
* GEANT4 tag $Name: geant4-08-00 $
*
*
* g3test
+1 -1
View File
@@ -22,7 +22,7 @@
*
*
* $Id: g3tog4.F,v 1.4 2001/07/11 09:59:02 gunter Exp $
* GEANT4 tag $Name: geant4-07-01 $
* GEANT4 tag $Name: geant4-08-00 $
*
*
* G3toG4
+1 -1
View File
@@ -6,7 +6,7 @@
// and all its terms.
//
// $Id: g4geom.cc.main,v 1.2 1999/12/05 17:50:17 gcosmo Exp $
// GEANT4 tag $Name: geant4-07-01 $
// GEANT4 tag $Name: geant4-08-00 $
//
// g4geom
//
+1 -1
View File
@@ -22,7 +22,7 @@
*
*
* $Id: jshape.F,v 1.3 2001/07/11 09:59:03 gunter Exp $
* GEANT4 tag $Name: geant4-07-01 $
* GEANT4 tag $Name: geant4-08-00 $
*
*
*-- Author : Jouko Vuoskoski, CERN, Jouko.Vuoskoski@cern.ch
+1 -1
View File
@@ -22,7 +22,7 @@
*
*
* $Id: mztog4.F,v 1.3 2001/07/11 09:59:03 gunter Exp $
* GEANT4 tag $Name: geant4-07-01 $
* GEANT4 tag $Name: geant4-08-00 $
*
subroutine mztog4
************************************************************************
+1 -1
View File
@@ -22,7 +22,7 @@
*
*
* $Id: rztog4.F,v 1.3 2001/07/11 09:59:03 gunter Exp $
* GEANT4 tag $Name: geant4-07-01 $
* GEANT4 tag $Name: geant4-08-00 $
*
program rztog4
************************************************************************
+1 -1
View File
@@ -22,7 +22,7 @@
*
*
* $Id: tog4.F,v 1.4 2001/07/11 09:59:03 gunter Exp $
* GEANT4 tag $Name: geant4-07-01 $
* GEANT4 tag $Name: geant4-08-00 $
*
subroutine tog4
************************************************************************