Import Geant4 0.1.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-08 15:09:25 +02:00
parent b97f8d0df7
commit aaa409b6ee
2922 changed files with 55107 additions and 81674 deletions
+20 -5
View File
@@ -5,8 +5,8 @@
// based on the Program) you indicate your acceptance of this statement,
// and all its terms.
//
// $Id: G4IonisParamElm.cc,v 2.2 1998/07/12 03:00:39 urbi Exp $
// GEANT4 tag $Name: geant4-00 $
// $Id: G4IonisParamElm.cc,v 1.2 1999/04/14 12:49:01 maire Exp $
// GEANT4 tag $Name: geant4-00-01 $
//
//
// ------------ class G4IonisParamElm ------------
@@ -65,16 +65,31 @@ G4IonisParamElm::~G4IonisParamElm()
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... ....oooOO0OOooo....
G4IonisParamElm::G4IonisParamElm(G4IonisParamElm &right)
G4IonisParamElm::G4IonisParamElm(G4IonisParamElm& right)
{
*this = right;
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... ....oooOO0OOooo....
const G4IonisParamElm & G4IonisParamElm::operator=(const G4IonisParamElm &right)
const G4IonisParamElm& G4IonisParamElm::operator=(const G4IonisParamElm& right)
{
return right;
if (this != &right)
{
fZ = right.fZ;
fZ3 = right.fZ3;
fZZ3 = right.fZZ3;
flogZ3 = right.flogZ3;
fTau0 = right.fTau0;
fTaul = right.fTaul;
fBetheBlochLow = right.fBetheBlochLow;
fAlow = right.fAlow;
fBlow = right.fBlow;
fClow = right.fClow;
fMeanExcitationEnergy = right.fMeanExcitationEnergy;
fShellCorrectionVector = right.fShellCorrectionVector;
}
return *this;
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... ....oooOO0OOooo....