80 lines
2.5 KiB
C++
80 lines
2.5 KiB
C++
// This code implementation is the intellectual property of
|
|
// the GEANT4 collaboration.
|
|
//
|
|
// By copying, distributing or modifying the Program (or any work
|
|
// based on the Program) you indicate your acceptance of this statement,
|
|
// and all its terms.
|
|
//
|
|
// $Id: G4IonisParamElm.hh,v 1.2.8.1 1999/12/07 20:49:16 gunter Exp $
|
|
// GEANT4 tag $Name: geant4-01-01 $
|
|
//
|
|
//
|
|
// ------------------- class G4IonisParamElm -------------------
|
|
//
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... ....oooOO0OOooo....
|
|
|
|
// 09-07-98, data moved from G4Element. M.Maire
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... ....oooOO0OOooo....
|
|
|
|
#ifndef G4IonisParamElm_HH
|
|
#define G4IonisParamElm_HH
|
|
|
|
#include "G4ios.hh"
|
|
#include "globals.hh"
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... ....oooOO0OOooo....
|
|
|
|
class G4IonisParamElm
|
|
{
|
|
public:
|
|
|
|
G4IonisParamElm(G4double Z);
|
|
~G4IonisParamElm();
|
|
|
|
// retrieval methods
|
|
|
|
G4double GetZ() const {return fZ;};
|
|
G4double GetZ3() const {return fZ3;};
|
|
G4double GetZZ3() const {return fZZ3;};
|
|
G4double GetlogZ3() const {return flogZ3;};
|
|
|
|
G4double GetTau0() const {return fTau0;};
|
|
G4double GetTaul() const {return fTaul;};
|
|
G4double GetAlow() const {return fAlow;};
|
|
G4double GetBlow() const {return fBlow;};
|
|
G4double GetClow() const {return fClow;};
|
|
G4double GetMeanExcitationEnergy() const {return fMeanExcitationEnergy;};
|
|
G4double* GetShellCorrectionVector() const {return fShellCorrectionVector;};
|
|
|
|
G4int operator==(const G4IonisParamElm&) const;
|
|
G4int operator!=(const G4IonisParamElm&) const;
|
|
|
|
private:
|
|
|
|
G4IonisParamElm(G4IonisParamElm&);
|
|
const G4IonisParamElm& operator=(const G4IonisParamElm&);
|
|
|
|
|
|
private:
|
|
|
|
//
|
|
// data members
|
|
//
|
|
G4double fZ; // effective Z
|
|
G4double fZ3; // pow (Z,1/3)
|
|
G4double fZZ3; // pow (Z(Z+1),1/3)
|
|
G4double flogZ3; // log(Z)/3
|
|
|
|
// ------ ionisation loss ---------------------------------
|
|
|
|
G4double fTau0 ; // 0.1*pow(Z,1/3)*MeV/proton_mass_c2
|
|
G4double fTaul ; // 2*MeV/proton mass
|
|
G4double fBetheBlochLow; // Bethe-Bloch at fTaul*particle mass
|
|
G4double fAlow,fBlow,fClow; // parameters for the low energy ion.loss
|
|
G4double fMeanExcitationEnergy; // 16*pow(Z,0.9)*eV
|
|
G4double* fShellCorrectionVector; // shell correction coefficients
|
|
};
|
|
|
|
#endif
|