Import Geant4 0.1.0 source tree
This commit is contained in:
@@ -5,8 +5,8 @@
|
||||
// based on the Program) you indicate your acceptance of this statement,
|
||||
// and all its terms.
|
||||
//
|
||||
// $Id: G4IonisParamMat.cc,v 2.5 1998/10/05 14:33:14 maire Exp $
|
||||
// GEANT4 tag $Name: geant4-00 $
|
||||
// $Id: G4IonisParamMat.cc,v 1.2 1999/04/14 12:49:02 maire Exp $
|
||||
// GEANT4 tag $Name: geant4-00-01 $
|
||||
//
|
||||
//
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... ....oooOO0OOooo....
|
||||
@@ -187,9 +187,30 @@ G4IonisParamMat::G4IonisParamMat(const G4IonisParamMat &right)
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... ....oooOO0OOooo....
|
||||
|
||||
const G4IonisParamMat & G4IonisParamMat::operator=(const G4IonisParamMat &right)
|
||||
const G4IonisParamMat& G4IonisParamMat::operator=(const G4IonisParamMat& right)
|
||||
{
|
||||
return right;
|
||||
if (this != &right)
|
||||
{
|
||||
fMaterial = right.fMaterial;
|
||||
fMeanExcitationEnergy = right.fMeanExcitationEnergy;
|
||||
fLogMeanExcEnergy = right.fLogMeanExcEnergy;
|
||||
fShellCorrectionVector = right.fShellCorrectionVector;
|
||||
fTaul = right.fTaul;
|
||||
fCdensity = right.fCdensity;
|
||||
fMdensity = right.fMdensity;
|
||||
fAdensity = right.fAdensity;
|
||||
fX0density = right.fX0density;
|
||||
fX1density = right.fX1density;
|
||||
fF1fluct = right.fF1fluct;
|
||||
fF2fluct = right.fF2fluct;
|
||||
fEnergy1fluct = right.fEnergy1fluct;
|
||||
fLogEnergy1fluct = right.fLogEnergy1fluct;
|
||||
fEnergy2fluct = right.fEnergy2fluct;
|
||||
fLogEnergy2fluct = right.fLogEnergy2fluct;
|
||||
fEnergy0fluct = right.fEnergy0fluct;
|
||||
fRateionexcfluct = right.fRateionexcfluct;
|
||||
}
|
||||
return *this;
|
||||
}
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... ....oooOO0OOooo....
|
||||
|
||||
Reference in New Issue
Block a user