File indexing completed on 2026-09-17 08:32:31
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 #ifndef EmStandardPhysicsTrackingManager_h
0039 #define EmStandardPhysicsTrackingManager_h 1
0040
0041 #include "G4VTrackingManager.hh"
0042 #include "globals.hh"
0043
0044 class G4eMultipleScattering;
0045 class G4CoulombScattering;
0046 class G4eIonisation;
0047 class G4eBremsstrahlung;
0048 class G4eplusAnnihilation;
0049
0050 class G4ComptonScattering;
0051 class G4GammaConversion;
0052 class G4PhotoElectricEffect;
0053 class G4RayleighScattering;
0054
0055 class EmStandardPhysicsTrackingManager : public G4VTrackingManager
0056 {
0057 public:
0058 EmStandardPhysicsTrackingManager();
0059 ~EmStandardPhysicsTrackingManager();
0060
0061 void BuildPhysicsTable(const G4ParticleDefinition&) override;
0062
0063 void PreparePhysicsTable(const G4ParticleDefinition&) override;
0064
0065 void HandOverOneTrack(G4Track* aTrack) override;
0066
0067 private:
0068 void TrackElectron(G4Track* aTrack);
0069 void TrackPositron(G4Track* aTrack);
0070 void TrackGamma(G4Track* aTrack);
0071
0072 struct
0073 {
0074 G4eMultipleScattering* msc;
0075 G4eIonisation* ioni;
0076 G4eBremsstrahlung* brems;
0077 G4CoulombScattering* ss;
0078 } fElectronProcs;
0079
0080 struct
0081 {
0082 G4eMultipleScattering* msc;
0083 G4eIonisation* ioni;
0084 G4eBremsstrahlung* brems;
0085 G4eplusAnnihilation* annihilation;
0086 G4CoulombScattering* ss;
0087 } fPositronProcs;
0088
0089 struct
0090 {
0091 G4PhotoElectricEffect* pe;
0092 G4ComptonScattering* compton;
0093 G4GammaConversion* conversion;
0094 G4RayleighScattering* rayleigh;
0095 } fGammaProcs;
0096
0097 static EmStandardPhysicsTrackingManager* fMasterTrackingManager;
0098 };
0099
0100 #endif