Import Geant4 11.0.0.beta source tree
This commit is contained in:
@@ -71,7 +71,7 @@
|
||||
#define G4LowEPComptonModel_h 1
|
||||
|
||||
#include "G4VEmModel.hh"
|
||||
#include "G4LPhysicsFreeVector.hh"
|
||||
#include "G4PhysicsFreeVector.hh"
|
||||
|
||||
class G4ParticleChangeForGamma;
|
||||
class G4VAtomDeexcitation;
|
||||
@@ -83,56 +83,47 @@ class G4LowEPComptonModel : public G4VEmModel
|
||||
|
||||
public:
|
||||
|
||||
G4LowEPComptonModel(const G4ParticleDefinition* p = 0,
|
||||
explicit G4LowEPComptonModel(const G4ParticleDefinition* p = nullptr,
|
||||
const G4String& nam = "LowEPComptonModel");
|
||||
|
||||
virtual ~G4LowEPComptonModel();
|
||||
virtual ~G4LowEPComptonModel();
|
||||
|
||||
virtual void Initialise(const G4ParticleDefinition*, const G4DataVector&);
|
||||
void Initialise(const G4ParticleDefinition*, const G4DataVector&) override;
|
||||
void InitialiseLocal(const G4ParticleDefinition*,
|
||||
G4VEmModel* masterModel) override;
|
||||
|
||||
virtual void InitialiseLocal(const G4ParticleDefinition*,
|
||||
G4VEmModel* masterModel);
|
||||
void InitialiseForElement(const G4ParticleDefinition*, G4int Z) override;
|
||||
|
||||
virtual void InitialiseForElement(const G4ParticleDefinition*, G4int Z);
|
||||
G4double ComputeCrossSectionPerAtom( const G4ParticleDefinition*,
|
||||
G4double kinEnergy,
|
||||
G4double Z,
|
||||
G4double A=0,
|
||||
G4double cut=0,
|
||||
G4double emax=DBL_MAX ) override;
|
||||
|
||||
virtual G4double ComputeCrossSectionPerAtom( const G4ParticleDefinition*,
|
||||
G4double kinEnergy,
|
||||
G4double Z,
|
||||
G4double A=0,
|
||||
G4double cut=0,
|
||||
G4double emax=DBL_MAX );
|
||||
void SampleSecondaries(std::vector<G4DynamicParticle*>*,
|
||||
const G4MaterialCutsCouple*,
|
||||
const G4DynamicParticle*,
|
||||
G4double tmin,
|
||||
G4double maxEnergy) override;
|
||||
|
||||
virtual void SampleSecondaries(std::vector<G4DynamicParticle*>*,
|
||||
const G4MaterialCutsCouple*,
|
||||
const G4DynamicParticle*,
|
||||
G4double tmin,
|
||||
G4double maxEnergy);
|
||||
G4LowEPComptonModel & operator=(const G4LowEPComptonModel &right) = delete;
|
||||
G4LowEPComptonModel(const G4LowEPComptonModel&) = delete;
|
||||
|
||||
private:
|
||||
|
||||
void ReadData(size_t Z, const char* path = 0);
|
||||
|
||||
G4double ComputeScatteringFunction(G4double x, G4int Z);
|
||||
|
||||
G4LowEPComptonModel & operator=(const G4LowEPComptonModel &right);
|
||||
G4LowEPComptonModel(const G4LowEPComptonModel&);
|
||||
|
||||
G4bool isInitialised;
|
||||
G4int verboseLevel;
|
||||
|
||||
//G4double lowestEnergy;
|
||||
|
||||
G4ParticleChangeForGamma* fParticleChange;
|
||||
G4VAtomDeexcitation* fAtomDeexcitation;
|
||||
|
||||
static G4ShellData* shellData;
|
||||
static G4DopplerProfile* profileData;
|
||||
|
||||
static G4int maxZ;
|
||||
static G4LPhysicsFreeVector* data[100];
|
||||
|
||||
static const G4int maxZ = 99;
|
||||
static G4PhysicsFreeVector* data[100];
|
||||
static const G4double ScatFuncFitParam[101][9];
|
||||
|
||||
|
||||
G4int verboseLevel;
|
||||
G4bool isInitialised;
|
||||
};
|
||||
|
||||
//****************************************************************************
|
||||
|
||||
Reference in New Issue
Block a user