Import Geant4 10.3.0.beta source tree
This commit is contained in:
+13
-11
@@ -23,7 +23,7 @@
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
// $Id: G4mplIonisationWithDeltaModel.hh 76600 2013-11-13 08:30:02Z gcosmo $
|
||||
// $Id: G4mplIonisationWithDeltaModel.hh 97391 2016-06-02 10:08:45Z gcosmo $
|
||||
//
|
||||
// -------------------------------------------------------------------
|
||||
//
|
||||
@@ -60,17 +60,18 @@ class G4mplIonisationWithDeltaModel : public G4VEmModel, public G4VEmFluctuation
|
||||
|
||||
public:
|
||||
|
||||
G4mplIonisationWithDeltaModel(G4double mCharge,
|
||||
explicit G4mplIonisationWithDeltaModel(G4double mCharge,
|
||||
const G4String& nam = "mplIonisationWithDelta");
|
||||
|
||||
virtual ~G4mplIonisationWithDeltaModel();
|
||||
|
||||
virtual void Initialise(const G4ParticleDefinition*, const G4DataVector&);
|
||||
virtual void Initialise(const G4ParticleDefinition*,
|
||||
const G4DataVector&) override;
|
||||
|
||||
virtual G4double ComputeDEDXPerVolume(const G4Material*,
|
||||
const G4ParticleDefinition*,
|
||||
G4double kineticEnergy,
|
||||
G4double cutEnergy);
|
||||
G4double cutEnergy) override;
|
||||
|
||||
virtual G4double ComputeCrossSectionPerElectron(
|
||||
const G4ParticleDefinition*,
|
||||
@@ -83,40 +84,41 @@ public:
|
||||
G4double kineticEnergy,
|
||||
G4double Z, G4double A,
|
||||
G4double cutEnergy,
|
||||
G4double maxEnergy);
|
||||
G4double maxEnergy) override;
|
||||
|
||||
virtual void SampleSecondaries(std::vector<G4DynamicParticle*>*,
|
||||
const G4MaterialCutsCouple*,
|
||||
const G4DynamicParticle*,
|
||||
G4double tmin,
|
||||
G4double maxEnergy);
|
||||
G4double maxEnergy) override;
|
||||
|
||||
|
||||
virtual G4double SampleFluctuations(const G4MaterialCutsCouple*,
|
||||
const G4DynamicParticle*,
|
||||
G4double tmax,
|
||||
G4double length,
|
||||
G4double meanLoss);
|
||||
G4double meanLoss) override;
|
||||
|
||||
virtual G4double Dispersion(const G4Material*,
|
||||
const G4DynamicParticle*,
|
||||
G4double tmax,
|
||||
G4double length);
|
||||
G4double length) override;
|
||||
|
||||
void SetParticle(const G4ParticleDefinition* p);
|
||||
|
||||
protected:
|
||||
|
||||
virtual G4double MaxSecondaryEnergy(const G4ParticleDefinition*,
|
||||
G4double kinEnergy);
|
||||
G4double kinEnergy) override;
|
||||
|
||||
private:
|
||||
|
||||
G4double ComputeDEDXAhlen(const G4Material* material, G4double bg2, G4double cut);
|
||||
|
||||
// hide assignment operator
|
||||
G4mplIonisationWithDeltaModel & operator=(const G4mplIonisationWithDeltaModel &right);
|
||||
G4mplIonisationWithDeltaModel(const G4mplIonisationWithDeltaModel&);
|
||||
G4mplIonisationWithDeltaModel &
|
||||
operator=(const G4mplIonisationWithDeltaModel &right) = delete;
|
||||
G4mplIonisationWithDeltaModel(const G4mplIonisationWithDeltaModel&) = delete;
|
||||
|
||||
const G4ParticleDefinition* monopole;
|
||||
G4ParticleDefinition* theElectron;
|
||||
|
||||
Reference in New Issue
Block a user