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
+13 -3
View File
@@ -21,8 +21,8 @@
// ********************************************************************
//
//
// $Id: G4IonisParamElm.cc,v 1.11 2004/12/07 08:50:03 gcosmo Exp $
// GEANT4 tag $Name: geant4-07-01 $
// $Id: G4IonisParamElm.cc,v 1.13 2005/11/18 14:54:30 gcosmo Exp $
// GEANT4 tag $Name: geant4-08-00 $
//
//
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... ....oooOO0OOooo....
@@ -90,7 +90,7 @@ G4IonisParamElm::G4IonisParamElm(G4double Z)
fBlow =-3.229020*fClow/(fTau0*std::sqrt(Taum));
// Shell correction factors
fShellCorrectionVector = new G4double[3];
fShellCorrectionVector = new G4double[3]; //[3]
rate = 0.001*fMeanExcitationEnergy/eV;
G4double rate2 = rate*rate;
/*
@@ -105,6 +105,16 @@ G4IonisParamElm::G4IonisParamElm(G4double Z)
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... ....oooOO0OOooo....
// Fake default constructor - sets only member data and allocates memory
// for usage restricted to object persistency
G4IonisParamElm::G4IonisParamElm(__void__&)
: fShellCorrectionVector(0)
{
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... ....oooOO0OOooo....
G4IonisParamElm::~G4IonisParamElm()
{
if (fShellCorrectionVector) delete [] fShellCorrectionVector;