Import Geant4 11.0.0.beta source tree

This commit is contained in:
Gabriele Cosmo
2021-06-25 16:12:29 +02:00
parent c968e26a39
commit 6399a014b6
4200 changed files with 207479 additions and 237366 deletions
@@ -37,16 +37,16 @@
#include "G4Exp.hh"
// --------------------------------------------------------------------
G4PhysicsLogVector::G4PhysicsLogVector()
: G4PhysicsVector()
G4PhysicsLogVector::G4PhysicsLogVector(G4bool spline)
: G4PhysicsVector(spline)
{
type = T_G4PhysicsLogVector;
}
// --------------------------------------------------------------------
G4PhysicsLogVector::G4PhysicsLogVector(G4double theEmin, G4double theEmax,
std::size_t theNbin)
: G4PhysicsVector()
std::size_t theNbin, G4bool spline)
: G4PhysicsVector(spline)
{
numberOfNodes = theNbin + 1;
if(theNbin < 2 || theEmin == theEmax)