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
@@ -65,7 +65,7 @@ class G4BetaMinusDecayChannel : public G4NuclearDecayChannel
G4double theDaughterExcitation=0.0,
G4double theFFN=1.0,
G4bool theBetaSimple = false,
RandGeneral* theRandEnergy = NULL):
CLHEP::RandGeneral* theRandEnergy = 0):
G4NuclearDecayChannel (BetaMinus, Verbose, theParentNucleus, theBR,
theFFN,
theBetaSimple,
@@ -69,7 +69,7 @@ class G4BetaPlusDecayChannel : public G4NuclearDecayChannel
G4double theDaughterExcitation=0.0,
G4double theFFN=0.0,
G4bool theBetaSimple = false,
RandGeneral* theRandEnergy = NULL) :
CLHEP::RandGeneral* theRandEnergy = 0) :
G4NuclearDecayChannel (BetaPlus,
Verbose,
theParentNucleus,
@@ -32,7 +32,8 @@
#include "G4GeneralPhaseSpaceDecay.hh"
#include "G4RadioactiveDecayMode.hh"
#include "CLHEP/Random/RandGeneral.h"
#include <CLHEP/Random/RandGeneral.h>
////////////////////////////////////////////////////////////////////////////////
//
class G4NuclearDecayChannel : public G4GeneralPhaseSpaceDecay
@@ -68,7 +69,7 @@ public: // with description
G4NuclearDecayChannel (const G4RadioactiveDecayMode &theMode, G4int Verbose,
const G4ParticleDefinition *theParentNucleus,
G4double theBR, G4double theFFN,
G4bool betaS, RandGeneral* randBeta,
G4bool betaS, CLHEP::RandGeneral* randBeta,
G4double theQtransition, G4int A, G4int Z,
G4double theDaughterExcitation,
const G4String theDaughterName1,
@@ -131,7 +132,7 @@ protected:
G4double Qtransition;
G4double FermiFN;
G4bool BetaSimple;
RandGeneral* RandomEnergy;
CLHEP::RandGeneral* RandomEnergy;
};
#endif