// 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.4 1999/12/16 18:11:08 maire Exp $ // GEANT4 tag $Name: geant4-03-00 $ // // class description // // The class contains few (physical) quantities related to the Ionisation // process, for the Element defined by its atomic number Z // //....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: // with description G4IonisParamElm(G4double Z); ~G4IonisParamElm(); // retrieval methods G4double GetZ() const {return fZ;}; // atomic number Z G4double GetZ3() const {return fZ3;}; // pow (Z,1/3) G4double GetZZ3() const {return fZZ3;}; // pow (Z(Z+1),1/3) G4double GetlogZ3() const {return flogZ3;}; // log(Z)/3 G4double GetTau0() const {return fTau0;}; // 0.1*pow(Z,1/3)*MeV/proton_mass_c2 G4double GetTaul() const {return fTaul;}; // 2*MeV/proton mass G4double GetAlow() const {return fAlow;}; G4double GetBlow() const {return fBlow;}; G4double GetClow() const {return fClow;}; // parameters for the low energy ion.loss G4double GetMeanExcitationEnergy() const {return fMeanExcitationEnergy;}; // 16*pow(Z,0.9)*eV G4double* GetShellCorrectionVector() const {return fShellCorrectionVector;}; // shell correction coefficients public: // without description 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