Import Geant4 11.0.0.beta source tree
This commit is contained in:
@@ -59,46 +59,40 @@ class G4Material;
|
||||
|
||||
class G4hParametrisedLossModel : public G4VLowEnergyModel
|
||||
{
|
||||
|
||||
public:
|
||||
|
||||
G4hParametrisedLossModel(const G4String& name) ;
|
||||
explicit G4hParametrisedLossModel(const G4String& name) ;
|
||||
|
||||
~G4hParametrisedLossModel() ;
|
||||
|
||||
G4double TheValue(const G4DynamicParticle* particle,
|
||||
const G4Material* material);
|
||||
const G4Material* material) override;
|
||||
|
||||
G4double TheValue(const G4ParticleDefinition* aParticle,
|
||||
const G4Material* material,
|
||||
G4double kineticEnergy);
|
||||
G4double kineticEnergy) override;
|
||||
|
||||
G4double HighEnergyLimit(const G4ParticleDefinition* aParticle,
|
||||
const G4Material* material) const;
|
||||
const G4Material* material) const override;
|
||||
|
||||
G4double LowEnergyLimit(const G4ParticleDefinition* aParticle,
|
||||
const G4Material* material) const;
|
||||
const G4Material* material) const override;
|
||||
|
||||
G4double HighEnergyLimit(const G4ParticleDefinition* aParticle) const;
|
||||
G4double HighEnergyLimit(const G4ParticleDefinition* aParticle) const override;
|
||||
|
||||
G4double LowEnergyLimit(const G4ParticleDefinition* aParticle) const;
|
||||
G4double LowEnergyLimit(const G4ParticleDefinition* aParticle) const override;
|
||||
|
||||
G4bool IsInCharge(const G4DynamicParticle* particle,
|
||||
const G4Material* material) const;
|
||||
const G4Material* material) const override;
|
||||
|
||||
G4bool IsInCharge(const G4ParticleDefinition* aParticle,
|
||||
const G4Material* material) const;
|
||||
const G4Material* material) const override;
|
||||
|
||||
G4String ModelName() const {return modelName;};
|
||||
|
||||
protected:
|
||||
G4hParametrisedLossModel(G4hParametrisedLossModel &) = delete;
|
||||
G4hParametrisedLossModel & operator=(const G4hParametrisedLossModel &right) = delete;
|
||||
|
||||
private:
|
||||
|
||||
// hide assignment operator
|
||||
G4hParametrisedLossModel(G4hParametrisedLossModel &);
|
||||
G4hParametrisedLossModel & operator=(const G4hParametrisedLossModel &right);
|
||||
|
||||
void InitializeMe();
|
||||
|
||||
G4double StoppingPower(const G4Material* material,
|
||||
@@ -112,17 +106,14 @@ private:
|
||||
|
||||
// Pointer to the parametrisation class
|
||||
G4VhElectronicStoppingPower* eStopingPowerTable;
|
||||
G4String modelName;
|
||||
|
||||
G4double theZieglerFactor; // Factor to convert the Stopping Power
|
||||
// unit [ev/(10^15 atoms/cm^2]
|
||||
// into the Geant4 dE/dx unit
|
||||
G4String modelName;
|
||||
|
||||
G4double lowEnergyLimit;
|
||||
G4double highEnergyLimit;
|
||||
|
||||
G4double expStopPower125; // Experimental Stopping power at 125keV
|
||||
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user