109 lines
3.9 KiB
C++
109 lines
3.9 KiB
C++
//
|
|
// ********************************************************************
|
|
// * License and Disclaimer *
|
|
// * *
|
|
// * The Geant4 software is copyright of the Copyright Holders of *
|
|
// * the Geant4 Collaboration. It is provided under the terms and *
|
|
// * conditions of the Geant4 Software License, included in the file *
|
|
// * LICENSE and available at http://cern.ch/geant4/license . These *
|
|
// * include a list of copyright holders. *
|
|
// * *
|
|
// * Neither the authors of this software system, nor their employing *
|
|
// * institutes,nor the agencies providing financial support for this *
|
|
// * work make any representation or warranty, express or implied, *
|
|
// * regarding this software system or assume any liability for its *
|
|
// * use. Please see the license in the file LICENSE and URL above *
|
|
// * for the full disclaimer and the limitation of liability. *
|
|
// * *
|
|
// * This code implementation is the result of the scientific and *
|
|
// * technical work of the GEANT4 collaboration. *
|
|
// * By using, copying, modifying or distributing the software (or *
|
|
// * any work based on the software) you agree to acknowledge its *
|
|
// * use in resulting scientific publications, and indicate your *
|
|
// * acceptance of all terms of the Geant4 Software license. *
|
|
// ********************************************************************
|
|
|
|
// class description
|
|
//
|
|
// The class contains few (physical) quantities related to the Ionisation
|
|
// process, for the Element defined by its atomic number Z
|
|
//
|
|
// 09.03.01: copy constructor and assignement operator in public (mma)
|
|
// 09.07.98: data moved from G4Element (mma)
|
|
|
|
#ifndef G4IonisParamElm_HH
|
|
#define G4IonisParamElm_HH
|
|
|
|
#include "G4ios.hh"
|
|
#include "globals.hh"
|
|
|
|
class G4IonisParamElm
|
|
{
|
|
public: // with description
|
|
G4IonisParamElm(G4double Z);
|
|
~G4IonisParamElm();
|
|
G4IonisParamElm& operator=(const G4IonisParamElm&) = delete;
|
|
G4IonisParamElm(G4IonisParamElm&) = delete;
|
|
|
|
// retrieval methods
|
|
|
|
// atomic number Z
|
|
G4double GetZ() const { return fZ; }
|
|
|
|
// std::pow (Z,1/3)
|
|
G4double GetZ3() const { return fZ3; }
|
|
|
|
// std::pow (Z(Z+1),1/3)
|
|
G4double GetZZ3() const { return fZZ3; }
|
|
|
|
// std::log(Z)/3
|
|
G4double GetlogZ3() const { return flogZ3; }
|
|
|
|
// 0.1*std::pow(Z,1/3)*MeV/proton_mass_c2
|
|
G4double GetTau0() const { return fTau0; };
|
|
|
|
// 2*MeV/proton mass
|
|
G4double GetTaul() const { return fTaul; }
|
|
|
|
// parameters for the low energy ion.loss
|
|
G4double GetAlow() const { return fAlow; }
|
|
G4double GetBlow() const { return fBlow; }
|
|
G4double GetClow() const { return fClow; }
|
|
|
|
// ICRU'37 report
|
|
G4double GetMeanExcitationEnergy() const { return fMeanExcitationEnergy; }
|
|
|
|
G4double GetFermiVelocity() const { return fVFermi; };
|
|
G4double GetLFactor() const { return fLFactor; };
|
|
|
|
// shell correction coefficients
|
|
G4double* GetShellCorrectionVector() const { return fShellCorrectionVector; }
|
|
|
|
G4bool operator==(const G4IonisParamElm&) const = delete;
|
|
G4bool operator!=(const G4IonisParamElm&) const = delete;
|
|
|
|
private:
|
|
//
|
|
// data members
|
|
//
|
|
G4double fZ; // effective Z
|
|
G4double fZ3; // std::pow (Z,1/3)
|
|
G4double fZZ3; // std::pow (Z(Z+1),1/3)
|
|
G4double flogZ3; // std::log(Z)/3
|
|
|
|
// ------ ionisation loss ---------------------------------
|
|
|
|
G4double fTau0; // 0.1*std::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; //
|
|
G4double* fShellCorrectionVector; // shell correction coefficients
|
|
|
|
// parameters for ion corrections computations
|
|
G4double fVFermi;
|
|
G4double fLFactor;
|
|
};
|
|
|
|
#endif
|