Import Geant4 9.2.0 source tree
This commit is contained in:
@@ -24,8 +24,8 @@
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id: G4IonisParamMat.hh,v 1.10 2007/09/27 14:05:47 vnivanch Exp $
|
||||
// GEANT4 tag $Name: geant4-09-01 $
|
||||
// $Id: G4IonisParamMat.hh,v 1.12 2008/07/08 10:34:56 vnivanch Exp $
|
||||
// GEANT4 tag $Name: geant4-09-02 $
|
||||
//
|
||||
|
||||
// class description
|
||||
@@ -40,6 +40,7 @@
|
||||
// 09-03-01: copy constructor and assignement operator in public (mma)
|
||||
// 28-10-02: add setMeanExcitationEnergy (V.Ivanchenko)
|
||||
// 27-09-07: add computation of parameters for ions (V.Ivanchenko)
|
||||
// 04-03-08: add fBirks constant (mma)
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... ....oooOO0OOooo....
|
||||
|
||||
@@ -93,7 +94,15 @@ public:
|
||||
G4double GetZeffective() const {return fZeff;};
|
||||
G4double GetFermiEnergy() const {return fFermiEnergy;};
|
||||
G4double GetLFactor() const {return fLfactor;};
|
||||
|
||||
// parameters for Birks attenuation:
|
||||
void SetBirksConstant(G4double value) {fBirks = value;};
|
||||
G4double GetBirksConstant() const {return fBirks;};
|
||||
|
||||
// parameters for average energy per ion
|
||||
void SetMeanEnergyPerIonPair(G4double value) {fMeanEnergyPerIon = value;};
|
||||
G4double GetMeanEnergyPerIonPair() const {return fMeanEnergyPerIon;};
|
||||
|
||||
public: // without description
|
||||
|
||||
G4IonisParamMat(const G4IonisParamMat&);
|
||||
@@ -154,6 +163,11 @@ private:
|
||||
G4double fZeff;
|
||||
G4double fFermiEnergy;
|
||||
G4double fLfactor;
|
||||
|
||||
// parameter for Birks attenuation
|
||||
G4double fBirks;
|
||||
// average energy per ion pair
|
||||
G4double fMeanEnergyPerIon;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user