Import Geant4 10.7.0.beta source tree

This commit is contained in:
Gabriele Cosmo
2020-06-26 10:23:25 +02:00
parent c02c370437
commit 67ba86d073
1871 changed files with 174422 additions and 131884 deletions
@@ -33,5 +33,4 @@
typedef CLHEP::HepLorentzRotation G4LorentzRotation;
#endif // G4LorentzRotation_hh
#endif // G4LorentzRotation_hh
@@ -33,4 +33,4 @@
typedef CLHEP::HepLorentzVector G4LorentzVector;
#endif // G4LorentzVector_hh
#endif // G4LorentzVector_hh
@@ -28,9 +28,9 @@
#ifndef G4PLANE3D_HH
#define G4PLANE3D_HH
#include "globals.hh"
#include "G4Point3D.hh"
#include "G4Normal3D.hh"
#include "G4Point3D.hh"
#include "globals.hh"
#include <CLHEP/Geometry/Plane3D.h>
typedef HepGeom::Plane3D<G4double> G4Plane3D;
+25 -5
View File
@@ -25,7 +25,7 @@
//
//
//
//
//
// ----------------------------------------------------------------------
// Constants, typedefs, enums for Geometry Section
//
@@ -50,11 +50,25 @@ static const double kMinExitingNormalCosine = 1E-3;
// Radial3D = Radial axis in spherical polar
// Phi = Phi axis in cylindrical polar
// kUndefined = Not defined axis
enum EAxis {kXAxis,kYAxis,kZAxis,kRho,kRadial3D,kPhi,kUndefined};
enum EAxis
{
kXAxis,
kYAxis,
kZAxis,
kRho,
kRadial3D,
kPhi,
kUndefined
};
// G4VSolid::Inside return codes
// kSurface => within tolerance of exact surface
enum EInside {kOutside,kSurface,kInside};
enum EInside
{
kOutside,
kSurface,
kInside
};
// enum EInside {kInside=1, kSurface=2, kOutside=3};
// kNormal = (G4PVPlacement) Conventional positioning
@@ -65,11 +79,17 @@ enum EInside {kOutside,kSurface,kInside};
// kParameterised = (G4PVParameterised) General parameterised volume
// => Distance & location computed to volumes
// after setup/modification via user object
enum EVolume {kNormal,kReplica,kParameterised,kExternal};
enum EVolume
{
kNormal,
kReplica,
kParameterised,
kExternal
};
// Default max size of Navigation history
//
static const G4int kHistoryMax = 15;
static const G4int kHistoryMax = 15;
// History increase stride of Navigation history
//