File indexing completed on 2025-01-31 09:22:04
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021
0022
0023
0024
0025
0026
0027
0028
0029
0030
0031
0032
0033
0034
0035
0036
0037
0038
0039
0040
0041
0042
0043
0044
0045
0046
0047 #ifndef G4RDLOWENERGYPHOTOELECTRIC_HH
0048 #define G4RDLOWENERGYPHOTOELECTRIC_HH 1
0049
0050 #include "globals.hh"
0051 #include "G4VDiscreteProcess.hh"
0052 #include "G4RDAtomicDeexcitation.hh"
0053
0054 class G4Track;
0055 class G4Step;
0056 class G4ParticleDefinition;
0057 class G4VParticleChange;
0058 class G4RDVEMDataSet;
0059 class G4RDVCrossSectionHandler;
0060 class G4RDVRangeTest;
0061 class G4RDVPhotoElectricAngularDistribution;
0062
0063 class G4LowEnergyPhotoElectric : public G4VDiscreteProcess {
0064
0065 public:
0066
0067 G4LowEnergyPhotoElectric(const G4String& processName ="LowEnPhotoElec");
0068
0069 ~G4LowEnergyPhotoElectric();
0070
0071 G4bool IsApplicable(const G4ParticleDefinition&);
0072
0073 void BuildPhysicsTable(const G4ParticleDefinition& photon);
0074
0075 G4VParticleChange* PostStepDoIt(const G4Track& aTrack, const G4Step& aStep);
0076
0077 void SetCutForLowEnSecPhotons(G4double);
0078
0079 void SetCutForLowEnSecElectrons(G4double);
0080
0081 void ActivateAuger(G4bool);
0082
0083 void SetAngularGenerator(G4RDVPhotoElectricAngularDistribution* distribution);
0084
0085 void SetAngularGenerator(const G4String& name);
0086
0087
0088
0089 G4double DumpMeanFreePath(const G4Track& aTrack,
0090 G4double previousStepSize,
0091 G4ForceCondition* condition)
0092 { return GetMeanFreePath(aTrack, previousStepSize, condition); }
0093
0094 protected:
0095
0096 G4double GetMeanFreePath(const G4Track& aTrack,
0097 G4double previousStepSize,
0098 G4ForceCondition* condition);
0099
0100 private:
0101
0102
0103 G4LowEnergyPhotoElectric& operator=(const G4LowEnergyPhotoElectric& right);
0104 G4LowEnergyPhotoElectric(const G4LowEnergyPhotoElectric& );
0105
0106 G4double lowEnergyLimit;
0107 G4double highEnergyLimit;
0108
0109 G4RDVEMDataSet* meanFreePathTable;
0110
0111 G4RDVCrossSectionHandler* crossSectionHandler;
0112 G4RDVCrossSectionHandler* shellCrossSectionHandler;
0113
0114 G4RDVRangeTest* rangeTest;
0115
0116 const G4double intrinsicLowEnergyLimit;
0117 const G4double intrinsicHighEnergyLimit;
0118
0119 G4double cutForLowEnergySecondaryPhotons;
0120 G4double cutForLowEnergySecondaryElectrons;
0121
0122 G4RDAtomicDeexcitation deexcitationManager;
0123
0124 G4RDVPhotoElectricAngularDistribution* ElectronAngularGenerator;
0125 G4String generatorName;
0126 };
0127
0128 #endif
0129
0130
0131