Import Geant4 10.3.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-12-09 12:35:28 +01:00
parent 4ec577e5c4
commit a3452e42ac
3514 changed files with 210500 additions and 89628 deletions
@@ -23,11 +23,14 @@
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
/// \file channeling/src/ExExChParticleUserInfo.cc
/// \brief Implementation of the ExExChParticleUserInfo class
//
#include "ExExChParticleUserInfo.hh"
ExExChParticleUserInfo::ExExChParticleUserInfo(){
bHasBeenUnderCoherentEffect = 0;
fHasBeenUnderCoherentEffect = 0;
fNucleiDensity = 1.0;
fNucleiDensityPreviousStep = 1.0;
@@ -53,13 +56,13 @@ ExExChParticleUserInfo::~ExExChParticleUserInfo(){
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
void ExExChParticleUserInfo::SetCoherentEffect(G4int flag){
bHasBeenUnderCoherentEffect = flag;
fHasBeenUnderCoherentEffect = flag;
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
G4int ExExChParticleUserInfo::HasBeenUnderCoherentEffect(){
return bHasBeenUnderCoherentEffect;
return fHasBeenUnderCoherentEffect;
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......