Import Geant4 9.5.0 source tree
This commit is contained in:
@@ -23,10 +23,11 @@
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
// $Id: G4LivermoreIonisationModel.hh,v 1.3 2009/10/23 09:28:37 pandola Exp $
|
||||
// GEANT4 tag $Name: geant4-09-03 $
|
||||
// $Id: G4LivermoreIonisationModel.hh,v 1.3 2009-10-23 09:28:37 pandola Exp $
|
||||
// GEANT4 tag $Name: not supported by cvs2svn $
|
||||
//
|
||||
// Author: Luciano Pandola
|
||||
// on base of G4LowEnergyIonisation developed by A.Forti and V.Ivanchenko
|
||||
//
|
||||
// History:
|
||||
// -----------
|
||||
@@ -34,6 +35,8 @@
|
||||
// to EM model. Physics is unchanged.
|
||||
// 23 Oct 2009 L. Pandola remove un-necessary methods to manage atomic
|
||||
// deexcitation (done by G4VEmModel)
|
||||
// 01 Jun 2011 V Ivanchenko general cleanup - all old deexcitation code removed
|
||||
// 04 Jul 2011 L Pandola removed unused private member
|
||||
//
|
||||
// -------------------------------------------------------------------
|
||||
//
|
||||
@@ -45,20 +48,13 @@
|
||||
#ifndef G4LIVERMOREIONISATIONMODEL_HH
|
||||
#define G4LIVERMOREIONISATIONMODEL_HH 1
|
||||
|
||||
#include "globals.hh"
|
||||
#include "G4VEmModel.hh"
|
||||
#include "G4DataVector.hh"
|
||||
#include "G4ParticleChangeForLoss.hh"
|
||||
#include "G4eIonisationCrossSectionHandler.hh"
|
||||
#include "G4VEnergySpectrum.hh"
|
||||
#include "G4AtomicTransitionManager.hh"
|
||||
#include "G4AtomicDeexcitation.hh"
|
||||
#include "globals.hh"
|
||||
|
||||
class G4ParticleDefinition;
|
||||
class G4DynamicParticle;
|
||||
class G4MaterialCutsCouple;
|
||||
class G4Material;
|
||||
class G4ShellVacancy;
|
||||
class G4eIonisationCrossSectionHandler;
|
||||
class G4VEnergySpectrum;
|
||||
class G4ParticleChangeForLoss;
|
||||
class G4AtomicTransitionManager;
|
||||
|
||||
class G4LivermoreIonisationModel : public G4VEmModel
|
||||
{
|
||||
@@ -66,7 +62,7 @@ class G4LivermoreIonisationModel : public G4VEmModel
|
||||
public:
|
||||
|
||||
G4LivermoreIonisationModel(const G4ParticleDefinition* p=0,
|
||||
const G4String& processName = "LowEnergyIoni");
|
||||
const G4String& processName = "LowEnergyIoni");
|
||||
|
||||
virtual ~G4LivermoreIonisationModel();
|
||||
|
||||
@@ -90,22 +86,12 @@ public:
|
||||
const G4ParticleDefinition*,
|
||||
G4double kineticEnergy,
|
||||
G4double cutEnergy);
|
||||
|
||||
|
||||
virtual void SampleDeexcitationAlongStep(const G4Material*,
|
||||
const G4Track&,
|
||||
G4double& eloss);
|
||||
|
||||
// min cut in kinetic energy allowed by the model
|
||||
virtual G4double MinEnergyCut(const G4ParticleDefinition*,
|
||||
const G4MaterialCutsCouple*);
|
||||
|
||||
void SetVerboseLevel(G4int vl) {verboseLevel = vl;};
|
||||
G4int GetVerboseLevel(){return verboseLevel;};
|
||||
|
||||
void ActivateAuger(G4bool);
|
||||
|
||||
protected:
|
||||
|
||||
G4ParticleChangeForLoss* fParticleChange;
|
||||
|
||||
private:
|
||||
@@ -113,12 +99,9 @@ private:
|
||||
G4LivermoreIonisationModel & operator=(const G4LivermoreIonisationModel &right);
|
||||
G4LivermoreIonisationModel(const G4LivermoreIonisationModel&);
|
||||
|
||||
void InitialiseFluorescence();
|
||||
|
||||
//Intrinsic energy limits of the model: cannot be extended by the parent process
|
||||
G4double fIntrinsicLowEnergyLimit;
|
||||
G4double fIntrinsicHighEnergyLimit;
|
||||
G4int fNBinEnergyLoss;
|
||||
|
||||
G4bool isInitialised;
|
||||
|
||||
@@ -126,11 +109,8 @@ private:
|
||||
|
||||
G4eIonisationCrossSectionHandler* crossSectionHandler;
|
||||
G4VEnergySpectrum* energySpectrum;
|
||||
G4ShellVacancy* shellVacancy;
|
||||
|
||||
G4AtomicDeexcitation deexcitationManager;
|
||||
const G4AtomicTransitionManager* transitionManager;
|
||||
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user