File indexing completed on 2025-02-23 09:20:46
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 G4AdjointPhysicsList_h
0048 #define G4AdjointPhysicsList_h 1
0049 #include "G4VUserPhysicsList.hh"
0050 #include "G4eIonisation.hh"
0051 #include "G4hIonisation.hh"
0052 #include "globals.hh"
0053 class G4AdjointPhysicsMessenger;
0054
0055
0056
0057 class G4AdjointPhysicsList : public G4VUserPhysicsList
0058 {
0059 public:
0060 G4AdjointPhysicsList();
0061 virtual ~G4AdjointPhysicsList();
0062 void SetLossFluctuationFlag(bool aBool);
0063 inline void SetUseIonisation(bool aBool) { fUse_eionisation = aBool; }
0064 inline void SetUseProtonIonisation(bool aBool) { fUse_pionisation = aBool; }
0065 inline void SetUseBrem(bool aBool) { fUse_brem = aBool; }
0066 inline void SetUseCompton(bool aBool) { fUse_compton = aBool; }
0067 inline void SetUseMS(bool aBool) { fUse_ms = aBool; }
0068 inline void SetUsePEEffect(bool aBool) { fUse_peeffect = aBool; }
0069 inline void SetUseGammaConversion(bool aBool) { fUse_gamma_conversion = aBool; }
0070 inline void SetUseEgainFluctuation(bool aBool) { fUse_egain_fluctuation = aBool; }
0071 inline void SetEminAdjModels(G4double aVal) { fEmin_adj_models = aVal; }
0072 inline void SetEmaxAdjModels(G4double aVal) { fEmax_adj_models = aVal; }
0073
0074 protected:
0075
0076 virtual void ConstructParticle();
0077 virtual void ConstructProcess();
0078 virtual void SetCuts();
0079
0080
0081 void ConstructBosons();
0082 void ConstructLeptons();
0083 void ConstructMesons();
0084 void ConstructBaryons();
0085 void ConstructAdjointParticles();
0086
0087
0088 void ConstructGeneral();
0089 void ConstructEM();
0090 G4eIonisation* fEminusIonisation;
0091 G4hIonisation* fPIonisation;
0092
0093 private:
0094 G4AdjointPhysicsMessenger* fPhysicsMessenger;
0095 G4bool fUse_forced_interaction;
0096 G4bool fUse_eionisation;
0097 G4bool fUse_pionisation;
0098 G4bool fUse_brem;
0099 G4bool fUse_compton;
0100 G4bool fUse_ms;
0101 G4bool fUse_egain_fluctuation;
0102 G4bool fUse_peeffect;
0103 G4bool fUse_gamma_conversion;
0104 G4double fEmin_adj_models;
0105 G4double fEmax_adj_models;
0106 G4double fCS_biasing_factor_compton;
0107 G4double fCS_biasing_factor_brem;
0108 G4double fCS_biasing_factor_ionisation;
0109 G4double fCS_biasing_factor_PEeffect;
0110 };
0111
0112
0113
0114 #endif